Updated the second entrance to Biolabs.

This commit is contained in:
Atemo 2016-05-28 20:45:36 +02:00
parent 6485dba326
commit 88635c010a

View File

@ -42,6 +42,7 @@
//= 2.0 Added missing Lab Staff#amano08 NPC. (bugreport:4319) [Gepard] //= 2.0 Added missing Lab Staff#amano08 NPC. (bugreport:4319) [Gepard]
//= 2.1 Commented out Duplicate NPCs. (bugreport:4555) //= 2.1 Commented out Duplicate NPCs. (bugreport:4555)
//= 2.2 Added missing NPC found in AEGIS files. [L0ne_W0lf] //= 2.2 Added missing NPC found in AEGIS files. [L0ne_W0lf]
//= 2.3 Updated the second entrance to Biolabs. [Capuche]
//============================================================= //=============================================================
lighthalzen,198,285,5 script Jiwon#zen5 862,{ lighthalzen,198,285,5 script Jiwon#zen5 862,{
@ -1946,40 +1947,31 @@ OnTouch:
end; end;
} }
lhz_in01,25,141,4 script Regenschirm Guard 868,{ lhz_in01,24,140,3 script Regenschirm Guard#40 4_M_LGTGUARD,{
mes "[Regenschirm Guard]"; mes "[Regenschirm Guard]";
if(isequipped(2241) && isequipped(2243)){ if (lhz_sincube > 10 && countitem(2657) > 0) {// Lab_Passport
mes "Do you wish to"; mes "Do you wish to";
mes "go underground?"; mes "go underground?";
next; next;
if(select("Yes:No")==1){ if (select("Yes","No") == 1) {
if(isequipped(2657)){
warp "lhz_dun01",150,288;
end;
}
mes "[Regenschirm Guard]"; mes "[Regenschirm Guard]";
mes "I'm sorry but I can't let"; mes "Thank you and";
mes "staff without proper autorization"; mes "have a nice day.";
mes "pass. Only staff members with"; close2;
mes "Laboratory Passports are allowed"; warp "lhz_dun01",149,285;
mes "to enter the underground."; end;
close;
} }
mes "[Regenschirm Guard]"; mes "[Regenschirm Guard]";
mes "Thank you and"; mes "Thank you and";
mes "have a nice day."; mes "have a nice day.";
close; close;
} }
mes "This area is restricted"; mes "May I help you?";
mes "to the public! Who are you"; mes "If you would like to";
mes "and how did you get in here?!"; mes "enter, you must first";
mes "Hey, I need backup right away!"; mes "have a Laboratory Permit.";
close2; mes "Thank you for your cooperation.";
warp "lhz_in01",34,224; close;
end;
} }