diff options
author | Wombat <hpwombat@yahoo.com> | 2010-10-13 14:33:00 -0400 |
---|---|---|
committer | Stefan Beller <stefanbeller@googlemail.com> | 2010-11-07 14:52:31 +0100 |
commit | 4bb4c388174c9efb583852d27a6d67f603376eb8 (patch) | |
tree | e4beff923097c773ab607ef7e1417fe27b65c161 /npc/009-2_Hurnscald/peter.txt | |
parent | 001a9d1e61b1785998b26bf30b8c5d103a3c2a65 (diff) | |
download | serverdata-4bb4c388174c9efb583852d27a6d67f603376eb8.tar.gz serverdata-4bb4c388174c9efb583852d27a6d67f603376eb8.tar.bz2 serverdata-4bb4c388174c9efb583852d27a6d67f603376eb8.tar.xz serverdata-4bb4c388174c9efb583852d27a6d67f603376eb8.zip |
Bandit Quest and fixes to peter, mikhail
Bandit quest changes, fixes to peter and mikhail, 011-6 mobs
Diffstat (limited to 'npc/009-2_Hurnscald/peter.txt')
-rw-r--r-- | npc/009-2_Hurnscald/peter.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/009-2_Hurnscald/peter.txt b/npc/009-2_Hurnscald/peter.txt index 85e31dc9..995bfc31 100644 --- a/npc/009-2_Hurnscald/peter.txt +++ b/npc/009-2_Hurnscald/peter.txt @@ -30,26 +30,28 @@ L_Peter_Chain_Mail: close; L_Peter_Light_Plate: - if (zeny < 20000) goto L_Peter_NotEnough_Zeny; + if (zeny < 50000) goto L_Peter_NotEnough_Zeny; if (countitem("IngotIron") < 10) goto L_Peter_NotEnough_Ingot; if (countitem("Coal") < 20) goto L_Peter_NotEnough_Coal; getinventorylist; if (@inventorylist_count == 100) goto L_Peter_TooMany; set zeny, zeny - 50000; delitem "IngotIron", 10; + delitem "Coal", 20; getitem "LightPlatemail", 1; mes "[Peter]"; mes "\"Here you go!\""; close; L_Peter_Warlord_Plate: - if (zeny < 20000) goto L_Peter_NotEnough_Zeny; + if (zeny < 100000) goto L_Peter_NotEnough_Zeny; if (countitem("IngotIron") < 15) goto L_Peter_NotEnough_Ingot; if (countitem("Coal") < 30) goto L_Peter_NotEnough_Coal; getinventorylist; if (@inventorylist_count == 100) goto L_Peter_TooMany; set zeny, zeny - 100000; delitem "IngotIron", 15; + delitem "Coal", 30; getitem "WarlordPlate", 1; mes "[Peter]"; mes "\"Here you go!\""; |