diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-01-23 16:52:05 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-01-23 16:52:05 +0000 |
commit | 4e98d4621f225766abb32d30ab6cea8d2739a419 (patch) | |
tree | 1ca67ca0a8465848870c91dfdf60baffc9767ba4 /npc/002-4_Desert_mines/chest.txt | |
parent | 29bb178e6ac12d8edb32b89c336d46178421bd83 (diff) | |
download | serverdata-4e98d4621f225766abb32d30ab6cea8d2739a419.tar.gz serverdata-4e98d4621f225766abb32d30ab6cea8d2739a419.tar.bz2 serverdata-4e98d4621f225766abb32d30ab6cea8d2739a419.tar.xz serverdata-4e98d4621f225766abb32d30ab6cea8d2739a419.zip |
Start converting scripts over to "ItemName"
Instead of using the item number. A few small bug fixes are also here.
Diffstat (limited to 'npc/002-4_Desert_mines/chest.txt')
-rw-r--r-- | npc/002-4_Desert_mines/chest.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/002-4_Desert_mines/chest.txt b/npc/002-4_Desert_mines/chest.txt index e76332fd..e1825d0f 100644 --- a/npc/002-4_Desert_mines/chest.txt +++ b/npc/002-4_Desert_mines/chest.txt @@ -12,13 +12,13 @@ close; L_Yes: - if(countitem(537) < 3) goto L_Not_Enough; + if(countitem("TreasureKey") < 3) goto L_Not_Enough; getinventorylist; - if (@inventorylist_count == 100 && countitem(537) > 3) goto L_TooMany; + if (@inventorylist_count == 100 && countitem("TreasureKey") > 3) goto L_TooMany; mes "[Chest]"; mes "You opened it and found a short sword!"; - delitem 537, 3; - getitem 536, 1; + delitem "TreasureKey", 3; + getitem "ShortSword", 1; set ChestQuest, ChestQuest | 1; close; |