diff options
Diffstat (limited to 'npc/items')
-rw-r--r-- | npc/items/croconut.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/items/croconut.txt b/npc/items/croconut.txt index 1092b051..d4f3a729 100644 --- a/npc/items/croconut.txt +++ b/npc/items/croconut.txt @@ -13,24 +13,24 @@ OnUse: mesn "Narrator"; - mes col(l("Do you want to cut this @@?", getitemlink(513)), 9); + mes col(l("Do you want to cut this @@?", getitemlink(Croconut)), 9); next; menu l("Yes."), L_Weapon, l("No."), -; - getitem 513, 1, 1; + getitem Croconut, 1, 1; close; L_Weapon: mes ""; mesn "Narrator"; - mes col(l("Which of your weapons do you want to use in order to cut this @@?", getitemlink(513)), 9); + mes col(l("Which of your weapons do you want to use in order to cut this @@?", getitemlink(Croconut)), 9); next; menu - rif(countitem(3500, 1), l(getitemname("Knife"))), L_Weak, + rif(countitem(Knife, 1), l(getitemname("Knife"))), L_Weak, l("Bare Hands"), -; L_TooWeak: |