blob: 54580c6b182076e41b362a61972ba81a80e572ec (
plain) (
tree)
|
|
new_3-1.gat,35,30,0 script Guard 110,{
mes "[Guard]";
mes "Snakes are entering the city, please help us killing them";
mes "Bring me a proof that you killed at least 50 snakes and you'll be rewarded!";
next;
goto check;
check:
if(countitem(540) >= 50) goto have;
mes "[Guard]";
mes "Please hurry and kill some snakes";
close;
have:
mes "[Guard]";
mes "Thank you very much!!";
delitem 540,50;
next;
mes "[Guard]";
mes "Here it is your reward:";
mes "an headband and a fresh beer";
getitem 543,1;
getitem 539,1;
close;
}
|