viewing paste Unknown #23825 | Text

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
prontera,158,181,4  script  QuestTest2      484,{
if(getgmlevel() < 99 ) {
mes "You cannot use this NPC";
close;
} else
if(getgmlevel() == 99)
mes .npcname$;
mes "You can use this npc, would you like to?";
if(select("Yes:No") == 2 ) {
close;
} else
next;
mes .npcname$;
mes "All I can do is warp you is that Okay?";
if(select("Yes:No") == 2) {
close;
} else
warp "amatsu",198,84;
end;
OnInit:
.npcname$ = "[QuestTest2]";
}
Viewed 648 times, submitted by Guest.