diff options
author | Reid <reidyaro@gmail.com> | 2012-07-04 17:10:20 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2012-07-04 17:10:20 +0200 |
commit | f0af63f60b3d051a889edde391354e7174f9c078 (patch) | |
tree | b9165aa4ea3c6bcd2799ac58d80ed0c396ec5df1 /npc/items | |
parent | dc90cf6408a0a85a110423261a172552e5c37a73 (diff) | |
download | clientdata-f0af63f60b3d051a889edde391354e7174f9c078.tar.gz clientdata-f0af63f60b3d051a889edde391354e7174f9c078.tar.bz2 clientdata-f0af63f60b3d051a889edde391354e7174f9c078.tar.xz clientdata-f0af63f60b3d051a889edde391354e7174f9c078.zip |
Replace getitemname by getitemlink on Croconut.txt .
Diffstat (limited to 'npc/items')
-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 c998227e..fe53ae9e 100644 --- a/npc/items/Croconut.txt +++ b/npc/items/Croconut.txt @@ -13,7 +13,7 @@ OnUse: mesn "Narrator"; - mes col(l("Do you want to cut this @@?", getitemname(513)), 9); + mes col(l("Do you want to cut this @@?", getitemlink(513)), 9); next; menu @@ -26,7 +26,7 @@ OnUse: L_Weapon: mes ""; mesn "Narrator"; - mes col(l("Which of your weapons do you want to use in order to cut this @@?", getitemname(513)), 9); + mes col(l("Which of your weapons do you want to use in order to cut this @@?", getitemlink(513)), 9); next; menu @@ -43,24 +43,24 @@ L_TooWeak: if ( (@q == 3) || (@q == 4) || (@q == 5) ) goto L_Weak; L_TooWeakLost: - mes col(l("You hit too hard with your fist, you lost your @@.", getitemname(513)), 9); + mes col(l("You hit too hard with your fist, you lost your @@.", getitemlink(513)), 9); close; L_TooWeakFail: - mes col(l("Your hands are too weak, you didn't open the @@.", getitemname(513)), 9); + mes col(l("Your hands are too weak, you didn't open the @@.", getitemlink(513)), 9); getitem "Croconut", 1, 1; close; L_Weak: - mes col(l("You opened the @@, but only one side is edible.", getitemname(513)), 9); + mes col(l("You opened the @@, but only one side is edible.", getitemlink(513)), 9); getitem "HalfCroconut", 1, 1; close; L_Good: - mes col(l("You perfectly cut your @@ in two edible parts.", getitemname(513)), 9); + mes col(l("You perfectly cut your @@ in two edible parts.", getitemlink(513)), 9); getitem "HalfCroconut", 2, 1; close; |