Downloads containing JC2lvl4.j2as

Downloads
Name Author Game Mode Rating
TSF with JJ2+ Only: RabbitCity 2 Remastered P4rr0t Single player N/A Download file

File preview

#include "MLLE-Include-1.4.asc"
const bool MLLESetupSuccessful = MLLE::Setup();
#pragma require "JazzCity2.j2t"
#pragma require "JC2lvl4.j2l"

/*************************************************
Created by Parrot86 - RabbitCity 2: The Secret Room Remastered
*************************************************/
void onLevelLoad() {
	jjAlert("||Level Name: |Jails - First Police Station 2/4");
	jjAlert("||RabbitCity 2: The Secret Room Remastered - Level: |4");
	jjAlert("");
	jjAlert("");
}
// Doors - Thank for zepect!
array<bool> keyPressed(256, false); //arrays holds the state of the keys
int myArea = 0;

bool inArea(jjPLAYER@ p, int x1, int y1, int x2, int y2) {
	return ((p.xPos > (x1*32)) && (p.xPos < x2*32 + 32) && (p.yPos > (y1*32)) && (p.yPos < y2*32 + 32));
}
void onKeyDown(jjPLAYER@ p, int key) {
	if(key == 0x26) { //0x26 is up arrow key (all keys at http://msdn.microsoft.com/en-us/library/dd375731(VS.85).aspx)
		if(myArea == 1) p.warpToID(1, true);
		else if(myArea == 2) p.warpToID(2, true);
	}
}

void onPlayer(jjPLAYER@ p) {
	for(int i = 0; i < 256; i++) { //loop through all the keys
		if(jjKey[i] && !keyPressed[i]) {
			onKeyDown(p, i);
			keyPressed[i] = true;
		} else if(!jjKey[i] && keyPressed[i]) keyPressed[i] = false;
	}
	if(inArea(p, 7, 33, 7, 33)) myArea = 1;
	else if(inArea(p, 63, 84, 63, 84)) myArea = 2;
	else myArea = 0;
}

bool onDrawHealth(jjPLAYER@ player, jjCANVAS@ canvas) {
	if(myArea == 1 || myArea == 2) {
		canvas.drawString(220, 370, "Press UP to walk through!", STRING::MEDIUM, STRING::BOUNCE, 1);
	}
	return false;
}

void onFunction0() {     //Not available at this message
	jjAlert("");
	jjAlert("");
	jjAlert("");
	jjAlert("");
	jjAlert("");
	p.showText("@@@@@*Control Room of video surveillance*", STRING::MEDIUM);
	jjAlert("*** IT'S UNLOCKED ***");
	jjAlert("");
	jjAlert("Player:||||| Yay!");
}
void onFunction1() {
	jjAlert("");
	jjAlert("");
	jjAlert("");
	jjAlert("");
	jjAlert("");
	jjAlert("");
	jjAlert("Player:||||| I don't go this!");
	jjAlert("Player:||||| Go back to Control Room of video surveillance");
}
void onFunction2() {
	jjAlert("");
	jjAlert("");
	jjAlert("");
	jjAlert("");
	jjAlert("");
	jjAlert("");
	jjAlert("");
	jjAlert("Player:||||| I just disable all video surveillance on PC!");
}
void onDrawLayer4(jjPLAYER@ p, jjCANVAS@ canvas) {
	canvas.drawString(212*32, 82*32-16, "|-GreenSpaz-",STRING::SMALL);
	canvas.drawString(277*32, 92*32-16, "||DANGER",STRING::MEDIUM);
	canvas.drawString(290*32+10, 91*32-16, "|OFFICE",STRING::MEDIUM);
}
void onDrawLayer5(jjPLAYER@ p, jjCANVAS@ canvas) {
	canvas.drawString(207*32, 92*32-16, "||DANGER",STRING::MEDIUM);
}