summaryrefslogblamecommitdiff
path: root/npc/functions/news.txt
blob: 9dc0972575458215c3ecefa95c7635af6dca1953 (plain) (tree)
1
2
3
4
5
6
7
8
9
10






                                         


                         











                                                                                                                   
                                                                                                                                      







                                                                                                           
                  















                                                                                                                       















                                                                                                                     



              


                                                                                                               
                                                                                                                   
         


           
// TMW-2 script.
// Authors:
//    Jesusalva
// Description:
//    Server news.

function	script	GameNews	{
    .@entry=getarg(0, 0);
    switch(.@entry) {
    case 0:
    case 20180408:
        mes "";
        mes col("Release 3.0 - In The Dreams", 9);
        next;
        mes "";
        mes col("There were trees blocking the path to Halinarzo? Why nobody told that to Tulimshar Council?!", 9);
        mes col("These trees were cut and travellers can once again travel to Halin.", 9);
        next;
        mes col("Estard finished arranging sufficient paperwork so adventurers can create their own guilds.", 9);
        mes col("This somehow affected the whole economy.", 9);
        next;
        mes col("Some adventurer broke what was previously thought as maximum level, and is now level 40!", 9);
        mes l("##9Was that not sufficient, this someone acquired MAGIC and is now under @@'s group.", (rand(0,1) ? "Colin" : "Luca"));
        next;
        mes col("The Magic Council finished the reform on their guest hall.", 9);
        mes col("Soren, the architect responsible for it, is very happy with the new design.", 9);
        next;
        mes col("Tulimshar Guardhouse's door was struck, but the guards managed to get it open again.", 9);
        mes col("Access is restricted to guards, as usual.", 9);
        next;
        break;
    case 20180323:
        mes "";
        mes col("Release 2.2 - There Are No Pipelines", 9);
        next;
        mes "";
        mes col("Unfortunately, Tulimshar guards are dying in the sun. Maybe you could provide them with Water?", 9);
        next;
        mes col("The NPC responsible for buying raw gemstones from other NPCs has recovered since the last siege.", 9);
        mes col("Therefore, raw gemstones prices are once again on the rise.", 9);
        next;
        mes col("Someone adventurer broke what was previously thought as maximum level, and is now level 31!", 9);
        next;
        mes col("The Magic Council lift Statues in honor of some people. But its guest hall is in reform!", 9);
        next;
        mes col("Easter will soon start!", 9);
        next;
        break;
    case 20180316:
        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);
        break;
    default:
        break;
    }

    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);
    mes col("You can also read the [@@news|server news@@], or even [@@https://tmw2.org/news|older entries@@].", 9);
    next;
    return;
}