diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2013-02-11 23:37:27 -0800 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2013-02-12 23:05:14 +0100 |
commit | af1a429e042f2707aa569960530ead125226d2cb (patch) | |
tree | 77c2d4e7fc3fc5d94e0781d5b35207255169699f /world | |
parent | af7e22cef5a619e21cc45ea80bb9e82d117ace4c (diff) | |
download | serverdata-af1a429e042f2707aa569960530ead125226d2cb.tar.gz serverdata-af1a429e042f2707aa569960530ead125226d2cb.tar.bz2 serverdata-af1a429e042f2707aa569960530ead125226d2cb.tar.xz serverdata-af1a429e042f2707aa569960530ead125226d2cb.zip |
o11c's review of the inner mine
Diffstat (limited to 'world')
-rw-r--r-- | world/map/npc/002-4/chest.txt | 2 | ||||
-rw-r--r-- | world/map/npc/002-4/miners.txt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/world/map/npc/002-4/chest.txt b/world/map/npc/002-4/chest.txt index e9efe1c0..c2fec840 100644 --- a/world/map/npc/002-4/chest.txt +++ b/world/map/npc/002-4/chest.txt @@ -17,7 +17,7 @@ "No.", L_Close; L_Yes: - if(countitem("TreasureKey") < 3) + if (countitem("TreasureKey") < 3) goto L_Not_Enough; getinventorylist; if (@inventorylist_count == 100 && countitem("TreasureKey") > 3) diff --git a/world/map/npc/002-4/miners.txt b/world/map/npc/002-4/miners.txt index e66d19de..401a7bbc 100644 --- a/world/map/npc/002-4/miners.txt +++ b/world/map/npc/002-4/miners.txt @@ -36,10 +36,10 @@ L_Sema_Yes: goto L_Close; L_Sema_Happy: - if (countitem ("Iten") < 1) + if (countitem("Iten") < 1) goto L_Sema_Not_Happy; getinventorylist; - if (@inventorylist_count - (countitem ("Iten") == 1) > 99) + if (@inventorylist_count - (countitem("Iten") == 1) > 99) goto L_Sema_TooMany; delitem "Iten", 1; getitem "DesertShirt", 1; |