Name | Author | Game Mode | Rating | |||||
---|---|---|---|---|---|---|---|---|
RabbitCity 2 Remastered | P4rr0t | Single player | N/A |
#include "MLLE-Include-1.4.asc"
const bool MLLESetupSuccessful = MLLE::Setup();
#pragma require "JC2lvl52-MLLE-Data-1.j2l"
#pragma require "A_CarrFIXday.j2t"
#pragma require "JazzCity2_Boat.j2t"
#pragma require "JC2lvl52.j2l"
/*************************************************
Created by Parrot86 - RabbitCity 2: The Secret Room Remastered
*************************************************/
void onLevelLoad() {
jjAlert("||Level Name: |Second Police Station 1 / 7");
jjAlert("||RabbitCity 2: The Secret Room Remastered - Level: |5 2");
jjAlert("");
jjAlert("");
jjTexturedBGFadePositionY = 1;
jjUseLayer8Speeds = true;
}
// 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 == 4) p.warpToID(5, true);
else if(myArea == 5) p.warpToID(4, true);
else if(myArea == 6) p.warpToID(7, true);
else if(myArea == 7) p.warpToID(6, true);
else if(myArea == 8) p.warpToID(9, true);
else if(myArea == 9) p.warpToID(8, true);
else if(myArea == 10) p.warpToID(11, true);
else if(myArea == 11) p.warpToID(10, true);
else if(myArea == 12) p.warpToID(13, true);
else if(myArea == 13) p.warpToID(12, true);
else if(myArea == 14) p.warpToID(15, true);
else if(myArea == 15) p.warpToID(14, true);
else if(myArea == 16) p.warpToID(17, true);
else if(myArea == 17) p.warpToID(16, true);
else if(myArea == 18) p.warpToID(19, true);
else if(myArea == 19) p.warpToID(18, 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, 86, 179, 86, 179)) myArea = 4;
else if(inArea(p, 255, 23, 255, 23)) myArea = 5;
else if(inArea(p, 235, 23, 235, 23)) myArea = 6;
else if(inArea(p, 106, 179, 106, 179)) myArea = 7;
else if(inArea(p, 198, 179, 198, 179)) myArea = 8;
else if(inArea(p, 567, 179, 567, 179)) myArea = 9;
else if(inArea(p, 568, 59, 568, 59)) myArea = 10;
else if(inArea(p, 197, 59, 197, 59)) myArea = 11;
else if(inArea(p, 181, 55, 181, 55)) myArea = 12;
else if(inArea(p, 262, 55, 262, 55)) myArea = 13;
else if(inArea(p, 262, 115, 262, 115)) myArea = 14;
else if(inArea(p, 181, 115, 181, 115)) myArea = 15;
else if(inArea(p, 146, 115, 146, 115)) myArea = 16;
else if(inArea(p, 297, 115, 297, 115)) myArea = 17;
else if(inArea(p, 311, 115, 311, 115)) myArea = 18;
else if(inArea(p, 132, 115, 132, 115)) myArea = 19;
else myArea = 0;
}
bool onDrawHealth(jjPLAYER@ player, jjCANVAS@ canvas) {
if(myArea == 4 || myArea == 5 || myArea == 6 || myArea == 7 || myArea == 8 || myArea == 9 || myArea == 10 || myArea == 11 || myArea == 12 || myArea == 13 || myArea == 14 || myArea == 15 || myArea == 16 || myArea == 17 || myArea == 18 || myArea == 19) {
canvas.drawString(220, 370, "Press UP to walk through!", STRING::MEDIUM, STRING::BOUNCE, 1);
}
return false;
}
void onFunction0() { if (p.timerState != TIMER::STARTED) p.timerStart(7*70, false); }
void onFunction1() { p.timerStop(); }
void onPlayerTimerEnd() {
p.kill();
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("Player:||||| AAAARRGGHHH!");
}
void onFunction2() {
p.kill();
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("Player:||||| AAAARRGGHHH!");
}
void onFunction3() {
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("|*** NOTICE: RESTRICTED AREA ***");
jjAlert("This area is under 24hour video surveillance");
jjAlert("|*** WARNING: NO GUNS ALLOWED ***");
jjAlert("");
}
void onFunction4() {
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("Player:||||| WHAT ? ! My gun was detected? What's now ?");
}
void onFunction5() {
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("Player:||||| Aaaaaaaahhhhhhh!");
}
void onFunction6() {
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("Player:||||| Ow, I lost my gun! Noo !");
}
void onFunction7() {
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("Player:||||| Uh, I am wanted ! ?");
}
void onFunction8() {
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("Player:||||| What is this?");
}
void onFunction9() {
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("Player:||||| Hmm, I don't remember that new room");
}
void onFunction10() {
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("|*** IT'S LOCKED ***");
jjAlert("|*** Control Security: UNSAFE ***");
jjAlert("");
jjAlert("Player:||||| Hmm, this door will not open");
}
void onFunction11() {
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("Player:||||| System is broken !");
}
void onFunction12() {
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("|*** NO ENTRY ***");
jjAlert("");
jjAlert("Player:||||| Hmm");
}
void onFunction13() {
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("|||*** NOTICE: ELEVATOR IS OUT OF ORDER ***");
jjAlert("");
jjAlert("Player:||||| Hmm... this elevator is out of order ?");
}
void onFunction14() {
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("Player:||||| Nothing here...");
}
void onFunction15() {
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("|*** IT'S LOCKED - RED ACCESS CARD REQUIRED ***");
jjAlert("");
jjAlert("Player:||||| Dang! It's closed");
}
void onFunction16() {
p.showText("@@@@@@@@#YOU FOUND A SECRET AREA!", STRING::MEDIUM);
}
void onFunction17() {
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("Player:||||| What does H means? Ooops, it's heliport");
}
void onFunction18() {
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("");
jjAlert("Player:||||| Oh, SWAT's alive ? !");
}
void onDrawLayer4(jjPLAYER@ p, jjCANVAS@ canvas) {
canvas.drawString(75*32, 26*32-18, "|Control Security",STRING::MEDIUM);
}
void onDrawLayer5(jjPLAYER@ p, jjCANVAS@ canvas) {
canvas.drawString(75*32+8, 28*32-18, "|SCANNING...",STRING::MEDIUM);
canvas.drawString(75*32-3, 29*32-18, "||FIREARM DETECTED",STRING::SMALL);
canvas.drawString(34*32+8, 56*32-18, "|Player Wanted",STRING::MEDIUM);
canvas.drawString(33*32-9, 59*32-18, "|Jazz",STRING::SMALL);
canvas.drawString(37*32-9, 59*32-18, "||Spaz",STRING::SMALL);
canvas.drawString(41*32-9, 59*32-18, "||||Lori",STRING::SMALL);
canvas.drawString(128*32-9, 9*32-18, "||||Second Police Station",STRING::MEDIUM);
canvas.drawString(139*32+10, 9*32-15, "|Exit",STRING::SMALL);
}
Jazz2Online © 1999-INFINITY (Site Credits). We have a Privacy Policy. Jazz Jackrabbit, Jazz Jackrabbit 2, Jazz Jackrabbit Advance and all related trademarks and media are ™ and © Epic Games. Lori Jackrabbit is © Dean Dodrill. J2O development powered by Loops of Fury and Chemical Beats.
Eat your lima beans, Johnny.