summaryrefslogtreecommitdiff
path: root/npc/items
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2012-07-04 17:05:25 +0200
committerReid <reidyaro@gmail.com>2012-07-04 17:05:25 +0200
commitf09a6f17d4436da6a5ae57b5d251110245943734 (patch)
tree873798d09310a41ccc1b4e961916c3bcfb4846bb /npc/items
parent1cdc69d028e45a2e11ee1601844bb7e2efda0bec (diff)
downloadserverdata-f09a6f17d4436da6a5ae57b5d251110245943734.tar.gz
serverdata-f09a6f17d4436da6a5ae57b5d251110245943734.tar.bz2
serverdata-f09a6f17d4436da6a5ae57b5d251110245943734.tar.xz
serverdata-f09a6f17d4436da6a5ae57b5d251110245943734.zip
Correct text color function placement,
Replaced item name by item id.
Diffstat (limited to 'npc/items')
-rw-r--r--npc/items/Croconut.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/items/Croconut.txt b/npc/items/Croconut.txt
index 94b4df45..c998227e 100644
--- a/npc/items/Croconut.txt
+++ b/npc/items/Croconut.txt
@@ -13,20 +13,20 @@
OnUse:
mesn "Narrator";
- mes col(l("Do you want to cut this @@ ?", getitemname("Croconut"), 9);
+ mes col(l("Do you want to cut this @@?", getitemname(513)), 9);
next;
menu
l("Yes."), L_Weapon,
l("No."), -;
- getitem "Croconut", 1, 1;
+ getitem 513, 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 @@?", getitemname("Croconut"), 9);
+ mes col(l("Which of your weapons do you want to use in order to cut this @@?", getitemname(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("Croconut"), 9);
+ mes col(l("You hit too hard with your fist, you lost your @@.", getitemname(513)), 9);
close;
L_TooWeakFail:
- mes col(l("Your hands are too weak, you didn't open the @@."), getitemname("Croconut"), 9);
+ mes col(l("Your hands are too weak, you didn't open the @@.", getitemname(513)), 9);
getitem "Croconut", 1, 1;
close;
L_Weak:
- mes col(l("You opened the @@, but only one side is edible."), getitemname("Croconut"), 9);
+ mes col(l("You opened the @@, but only one side is edible.", getitemname(513)), 9);
getitem "HalfCroconut", 1, 1;
close;
L_Good:
- mes col(l("You perfectly cut your @@ in two edible parts."), getitemname("Croconut"), 9);
+ mes col(l("You perfectly cut your @@ in two edible parts.", getitemname(513)), 9);
getitem "HalfCroconut", 2, 1;
close;