blob: 1e10b17704abf9d6f6e7426deb80c1a8d5a40b03 (
plain) (
tree)
|
|
// TMW 2 Script
// Author:
// Jesusalva
// Micksha
// Description:
// Controls the showdown
042-11,41,57,0 script #KDoor04211a NPC_HIDDEN,4,0,{
end;
OnTouch:
.@g=getcharid(2);
if (.@g < 1) percentheal -100, -100;
if (!($KAMELOT_QUEST[.@g] & 64)) goto L_NoAccess;
warp "042-10@"+.@g, 143, 21;
end;
L_NoAccess:
dispbottom l("Can't leave right now.");
end;
}
042-11,20,28,0 script #KDoor04211b NPC_HIDDEN,0,2,{
end;
OnTouch:
.@g=getcharid(2);
if (.@g < 1) percentheal -100, -100;
if (!($KAMELOT_QUEST[.@g] & 64)) goto L_NoAccess;
mes l("Are you sure you want leave?");
mesc l("You wont be able to go back!");
next;
if (askyesno() == ASK_YES)
warp "042-0@"+.@g, 46, 25;
close;
L_NoAccess:
dispbottom l("Can't leave right now.");
end;
}
// TODO: Boss Showdown
// TODO: Spawn GMGiftBox and Treasure Chests upon end
// TODO: Arthur gives rewards to survivors and boot them out of Kamelot
|