summaryrefslogtreecommitdiff
path: root/npc/event1.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/event1.txt')
-rw-r--r--npc/event1.txt23
1 files changed, 23 insertions, 0 deletions
diff --git a/npc/event1.txt b/npc/event1.txt
new file mode 100644
index 00000000..54580c6b
--- /dev/null
+++ b/npc/event1.txt
@@ -0,0 +1,23 @@
+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;
+}