blob: c43d4761bacf163d66ab73f6a57712bfb95767ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// TMW-2 script.
// Authors:
// Jesusalva
// Description:
// Server news.
function script GameNews {
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;
}
|