diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-16 10:16:01 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-16 10:16:01 -0300 |
commit | 4bb021a442a620f324a9ed39f574ba4a060f3ead (patch) | |
tree | 5022a3038e6b24ed7664b4aa88f83498da3a50b5 /npc/functions | |
parent | 04d3ce6e9e906529c3da753be3e6b74a1acbba99 (diff) | |
download | serverdata-4bb021a442a620f324a9ed39f574ba4a060f3ead.tar.gz serverdata-4bb021a442a620f324a9ed39f574ba4a060f3ead.tar.bz2 serverdata-4bb021a442a620f324a9ed39f574ba4a060f3ead.tar.xz serverdata-4bb021a442a620f324a9ed39f574ba4a060f3ead.zip |
Add GameNews to LaJohanne notes (untested)
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/game-rules.txt | 1 | ||||
-rw-r--r-- | npc/functions/news.txt | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/npc/functions/game-rules.txt b/npc/functions/game-rules.txt index 1bd0d3aa9..d5618e66d 100644 --- a/npc/functions/game-rules.txt +++ b/npc/functions/game-rules.txt @@ -1,3 +1,4 @@ +// TMW-2 script. // Evol scripts. // Authors: // gumi diff --git a/npc/functions/news.txt b/npc/functions/news.txt new file mode 100644 index 000000000..60838997c --- /dev/null +++ b/npc/functions/news.txt @@ -0,0 +1,15 @@ +// TMW-2 script. +// Authors: +// Jesusalva +// Description: +// 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."); + return; +} + |