Downloads containing xlmgrove.j2as

Downloads
Name Author Game Mode Rating
JJ2+ Only: Canyon GroveFeatured Download PurpleJazz Capture the flag 9.5 Download file

File preview

// Canyon Grove
// Created by PurpleJazz of XLM (2010-2013)
// Made for the JJNet Season 8 CTF Contest
// Additional thanks to cooba for helping with the script

/*******************************************************************/
void onLevelLoad() {
	jjPalette.gradient(115,80,230, 250,220,180, 176, 32);		//sky colors
	jjPalette.gradient(37,166,157, 7,34,32, 152, 8);		//waterfall colors

	jjSetWaterGradient(0, 128, 128, 0, 32, 32);
	jjWaterChangeSpeed = 0;
	jjSetWaterLevel(70*32, true);

	jjObjectPresets[OBJECT::FISH].behavior = HangingJazz;
	jjObjectPresets[OBJECT::FISH].energy = 5;

	jjWeapons[WEAPON::SEEKER].maximum = 25;
}

void HangingJazz(jjOBJ@ jazz) {
	jazz.behave(BEHAVIOR::FISH);
	jazz.determineCurAnim(ANIM::JAZZ, jjIsTSF? 22:25);
	jazz.yPos = jazz.yOrg + 20;
}

void onFunction0(jjPLAYER@ play) {
	play.showText("@@@@@@Canyon Grove@Created by PurpleJazz of XLM (2010-2013)@Made for the JJNet Season 8 CTF Contest@np: Unreal (Amiga) - Title Theme@@@First released CTF level in 5 years!");
}