Downloads containing xlmnewbtl02.j2as

Downloads
Name Author Game Mode Rating
JJ2+ Only: Renewed InspirationsFeatured Download Xtreme Level Makers Multiple 9.3 Download file

File preview

array<bool> playerStart(4, false);

void onLevelLoad() {
	jjWeapons[WEAPON::SEEKER].maximum = 25;
}

void onLevelBegin() {
	if (jjIsServer) jjChat("/tntdamage 1");
}

void onPlayer(jjPLAYER@ play) {
	if (jjEventGet(play.xPos/32, play.yPos/32) == AREA::JAZZSTART && play.health > 0 && !playerStart[play.localPlayerID]) {
		playerStart[play.localPlayerID] = true;
		play.timerStart(15*70);
		jjAlert("Choose your ammo.");
	}
	if (play.health == 0) playerStart[play.localPlayerID] = false;
}

void onPlayerTimerEnd(jjPLAYER@ play) {
	play.warpToID(2);
}

void onFunction0(jjPLAYER@ play) {
	play.timerStop();
}