diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-16 10:36:23 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-16 10:36:23 -0300 |
commit | a55b7adf705adaa34d6a295ec474e889b822096a (patch) | |
tree | 19ee7083674c9cc19cbfafc5ab20f298a268ffbf /npc | |
parent | 4bb021a442a620f324a9ed39f574ba4a060f3ead (diff) | |
download | serverdata-a55b7adf705adaa34d6a295ec474e889b822096a.tar.gz serverdata-a55b7adf705adaa34d6a295ec474e889b822096a.tar.bz2 serverdata-a55b7adf705adaa34d6a295ec474e889b822096a.tar.xz serverdata-a55b7adf705adaa34d6a295ec474e889b822096a.zip |
Update news, fix broken job table
Diffstat (limited to 'npc')
-rw-r--r-- | npc/002-3/note.txt | 2 | ||||
-rw-r--r-- | npc/functions/news.txt | 23 |
2 files changed, 19 insertions, 6 deletions
diff --git a/npc/002-3/note.txt b/npc/002-3/note.txt index 5dc89b8f7..78950a2da 100644 --- a/npc/002-3/note.txt +++ b/npc/002-3/note.txt @@ -22,7 +22,7 @@ GameRules 8 | 4; break; case 2: - GameNews 8 | 4; + GameNews; break; } diff --git a/npc/functions/news.txt b/npc/functions/news.txt index 60838997c..c43d4761b 100644 --- a/npc/functions/news.txt +++ b/npc/functions/news.txt @@ -5,11 +5,24 @@ // Server news. function script GameNews { - narrator getarg(0, 0), - l("You can read the [@@news|latest news@@], or even the [@@https://tmw2.org/news|older entries@@]."), - l("Release 2.1 - Free Lunch For Those Who Work Hard!"), - l(""), - l("Shall you have any inquiry, do not hesit to [@@mailto:admin@tmw2.org|send us an email@@]##b."); + mes col("You can read the [@@news|latest news@@], or even the [@@https://tmw2.org/news|older entries@@].", 9); + next; + mes ""; + mes col("Release 2.1 - Free Lunch For Those Who Work Hard!", 9); + next; + mes ""; + mes col("Money to leave Candor is easier, as various persons there need help.", 9); + next; + mes col("Nard and Elmo changed the way they talk to newcomers, to be more clear about what they expect.", 9); + next; + mes col("Hard workers get an extra work level. This means a +1 VIT bonus is possible!", 9); + next; + mes col("Some NPCs are [@@https://transifex.com/akaras/saulc-tmw-fork|learning new languages@@].", 9); + next; + mes col("We want to thank everyone who did this release possible.", 9); + mes ""; + mes col("Shall you have any inquiry, do not hesit to [@@mailto:admin@tmw2.org|send us an email@@]##b.", 9); + next; return; } |