diff options
author | Reid <reidyaro@gmail.com> | 2012-06-10 16:49:56 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2012-06-10 16:49:56 +0200 |
commit | 8f60b1b47771ec925aaea6a2d3ddccf1dbbd7a6c (patch) | |
tree | 53f388e9317801a97106d9c978385831b3b102f0 /npc | |
parent | d2180ae5edd07e043c4e8f1bc978cbea914dffc3 (diff) | |
download | serverdata-8f60b1b47771ec925aaea6a2d3ddccf1dbbd7a6c.tar.gz serverdata-8f60b1b47771ec925aaea6a2d3ddccf1dbbd7a6c.tar.bz2 serverdata-8f60b1b47771ec925aaea6a2d3ddccf1dbbd7a6c.tar.xz serverdata-8f60b1b47771ec925aaea6a2d3ddccf1dbbd7a6c.zip |
Remplace item ID by item name on croconut item function.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/items/Croconut.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/items/Croconut.txt b/npc/items/Croconut.txt index 9362e028..f12848f1 100644 --- a/npc/items/Croconut.txt +++ b/npc/items/Croconut.txt @@ -20,7 +20,7 @@ OnUse: l("Yes."), L_Weapon, l("No."), -; - getitem 513, 1, 1; + getitem "Croconut", 1, 1; close; L_Weapon: @@ -50,19 +50,19 @@ L_TooWeakLost: L_TooWeakFail: mes col(l("Your hands are too weak, you didn't open the Croconut."), 9); - getitem 513, 1, 1; + getitem "Croconut", 1, 1; close; L_Weak: mes col(l("You opened the Croconut, but only one side is edible."), 9); - getitem 512, 1, 1; + getitem "HalfCroconut", 1, 1; close; L_Good: - mes col(l("You perfectly cut your Croconut in two edible parts."), 9); + mes col(l("You perfectly cut your Croconut in two edible parts."), 9); - getitem 512, 2, 1; - close; + getitem "HalfCroconut", 2, 1; + close; }
\ No newline at end of file |