diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-23 11:28:49 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-23 11:28:49 -0300 |
commit | c272dcb128037a647692a02721d02acd51d26002 (patch) | |
tree | 90a422fc5ebbaad213c300feea3c428145156c02 /npc/items/croconut.txt | |
parent | 9155fb809fa1b1bddf3718fd4ee65e5ef6b4cd54 (diff) | |
download | serverdata-c272dcb128037a647692a02721d02acd51d26002.tar.gz serverdata-c272dcb128037a647692a02721d02acd51d26002.tar.bz2 serverdata-c272dcb128037a647692a02721d02acd51d26002.tar.xz serverdata-c272dcb128037a647692a02721d02acd51d26002.zip |
mes col(l("")) is DEPRECATED, move everything to mesc l("").
mesc is harder to see, but it looks better and is less confusing regarding l()
Diffstat (limited to 'npc/items/croconut.txt')
-rw-r--r-- | npc/items/croconut.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/items/croconut.txt b/npc/items/croconut.txt index aef6b1af9..a1c4097ae 100644 --- a/npc/items/croconut.txt +++ b/npc/items/croconut.txt @@ -11,7 +11,7 @@ OnUse: mesn "Narrator"; - mes col(l("Do you want to cut this @@?", getitemlink(Croconut)), 9); + mesc l("Do you want to cut this @@?", getitemlink(Croconut)); next; menu @@ -52,23 +52,23 @@ L_TooWeak: if ( (.@q > 6) ) goto L_Good; L_TooWeakLost: - mes col(l("Ops! You destroyed your @@.", getitemlink(Croconut)), 9); + mesc l("Ops! You destroyed your @@.", getitemlink(Croconut)); close; L_TooWeakFail: - mes col(l("Well... you did not succeed in opening this @@.", getitemlink(Croconut)), 9); + mesc l("Well... you did not succeed in opening this @@.", getitemlink(Croconut)); getitem Croconut, 1; close; L_Weak: - mes col(l("You opened the @@ in two parts, but you crushed one of them.", getitemlink(Croconut)), 9); + mesc l("You opened the @@ in two parts, but you crushed one of them.", getitemlink(Croconut)); getitem HalfCroconut, 1; close; L_Good: - mes col(l("You perfectly cut your @@ into two edible parts.", getitemlink(Croconut)), 9); + mesc l("You perfectly cut your @@ into two edible parts.", getitemlink(Croconut)); getitem HalfCroconut, 2; close; |