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/004-1 | |
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/004-1')
-rw-r--r-- | npc/004-1/anwar.txt | 4 | ||||
-rw-r--r-- | npc/004-1/elanore.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/npc/004-1/anwar.txt b/npc/004-1/anwar.txt index 7658d9b87..60c086b24 100644 --- a/npc/004-1/anwar.txt +++ b/npc/004-1/anwar.txt @@ -65,13 +65,13 @@ L_TryIt: // Fail chances are 100% - 12% per attempt if (rand(0,100) < 100-(.@q2*12)) { setq1 TulimsharQuest_AnwarField, 6; - mes col(l("Nothing happens."), 9); + mesc l("Nothing happens."); next; mesn; mesq l("Uh... Something should happen, right? Can you get another one?"); } else { setq1 TulimsharQuest_AnwarField, 7; - mes col(l("Evil worms crawl from earth and starts devoring the plants!"), 9); + mesc l("Evil worms crawl from earth and starts devouring the plants!"); next; mesn; mesq l("Uh... That should not happen, right? RIGHT?"); diff --git a/npc/004-1/elanore.txt b/npc/004-1/elanore.txt index 75aedefa6..7abe05e7b 100644 --- a/npc/004-1/elanore.txt +++ b/npc/004-1/elanore.txt @@ -53,7 +53,7 @@ L_Trade: // Second tier stuff if (ST_TIER == 8) { if (gettimetick(2) > QUEST_ELEVARTEMPO) { - mes col(l(".:: Second Tier Quest - Timed Out ::."), 1); + mesc l(".:: Second Tier Quest - Timed Out ::."), 1; } else { getexp 44, 0; ST_TIER=9; |