diff options
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; |