diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-02 12:41:13 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-02 12:41:13 -0300 |
commit | c8cfdf0c64f67e00f627efc39894a9a8666b2f58 (patch) | |
tree | 4bf5a4df8285d20c34aef38facc628c948a3465d /npc/000-2-3 | |
parent | 435ace0cb46b9e636c423d3eaf07d9ebf419a7f8 (diff) | |
download | serverdata-jesusalva/mesc.tar.gz serverdata-jesusalva/mesc.tar.bz2 serverdata-jesusalva/mesc.tar.xz serverdata-jesusalva/mesc.zip |
mesc() is a function to optimize mes(col(l())), saving parenthesis.jesusalva/mesc
mesc() is a short for mes(col()). It should make coding colored code easier.
The default color value is "9", same from narrator, but this default value
is not used anymore.
I assume mes* functions are legacy for this project, so fell free to reject
the patch.
Diffstat (limited to 'npc/000-2-3')
-rw-r--r-- | npc/000-2-3/box.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/000-2-3/box.txt b/npc/000-2-3/box.txt index 15ac23ce..30ea0a72 100644 --- a/npc/000-2-3/box.txt +++ b/npc/000-2-3/box.txt @@ -22,9 +22,9 @@ .@q = getq(ShipQuests_Nard); mesn "Narrator"; - mes col(l("Some Bandanas and Sailor Hats are inside this box."), 9); + mesc(l("Some Bandanas and Sailor Hats are inside this box."), 9); next; - mes col(l("What do you wish to do?"), 9); + mesc(l("What do you wish to do?"), 9); next; menu @@ -45,7 +45,7 @@ L_NoQuest: mes ""; mesn "Narrator"; - mes col(l("Nard looks surprised and stops you."), 9); + mesc(l("Nard looks surprised and stops you."), 9); next; setcamnpc "Nard"; |