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/012-1/jack.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/012-1/jack.txt')
-rw-r--r-- | npc/012-1/jack.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/012-1/jack.txt b/npc/012-1/jack.txt index 549669b20..c1bb45e5b 100644 --- a/npc/012-1/jack.txt +++ b/npc/012-1/jack.txt @@ -102,12 +102,12 @@ L_Loop: if (@menu == 2) close; - mes col(l("Jack bends the log over his knee."), 9); + mesc l("Jack bends the log over his knee."); delitem RawLog, 1; .@success=rand(6,26)-.@k; // You will never need more than 20 logs nor less than 5 logs if (.@success == 1) { - mes col(l("The wood bends a little, but doesn't breaks."), 9); + mesc l("The wood bends a little, but doesn't breaks."); getexp 295, 100; // 10% of max exp setq2 HurscaldQuest_ForestBow, 99; next; @@ -115,7 +115,7 @@ L_Loop: mesq lg("That's the right wood, my son. Here, I'll wrap it so you don't accidentaly lose it. Good luck with your quest!"); close; } else { - mes col(l("However, the log breaks with a loud crack."), 9); + mesc l("However, the log breaks with a loud crack."); Zeny=Zeny+10; getexp 5, 1; setq2 HurscaldQuest_ForestBow, .@k+1; |