summaryrefslogblamecommitdiff
path: root/npc/000-2-0/julia.txt
blob: e37c88804a9bff25c2469ef7c2011c6db8b019ef (plain) (tree)



















































































































































































                                                                                                                                                                                                                                                                                                              
 
// Evol scripts.
// Authors:
//    Vasily_Makarov
//    4144
// Description:
//    Allow change language and some speaking
//
// 2 bits Array:
//    ShipQuests
// Variable:
//    ShipQuests_Julia
// Values:
//    0     first touch
//    1     already touched

000-2-0.gat,27,24,0,0	script	Julia	304,2,10,{

    mesn;
    mesq g(l("Hello dear!"),
           l("Hello sir!"));
    next;
    mesq l("What do you want today?");
    next;

  set @s$, l("I don't want to change my language, sorry.");

l_Menu:
    menu
        lg("I made a mistake, I would like to change my language."), l_ChooseLang,
        l("Could you explain to me where I am?"), l_WhereIam,
        l("What happened to me?"), l_What,
        l("Can I read these rules again?"), l_Rules,
        l("Nothing, sorry."), l_Close;

    mes "";
    mesn;
    mesq l("Of course! Tell me which language you speak and I will change the note on the ship board list.");

    goto l_ChooseLang;

l_First:

    callfunc "CheckClientVersion";

    mesn;
    mesq l("Hi, nice to see you!#0");
    next;
    mesq l("I'm Julia, I took care of you a few days ago, when we found you back on the sea.");
    next;
    mesq l(" I'm very happy to see that you seem okay now!");
    next;
    mesq lg("Could I ask you what your native language is? A sailor told me you're russian, but another one told me you're french... I'm a bit lost. I will register you on the ship boarding list just after that.");
    next;
    set @s$, "";
    goto l_ChooseLang;

  l_ChooseLang:
    menu
        l("I speak English") + ". (English)", -,
        l("I speak French") + ". (Français)", -,
        l("I speak Russian") + ". (Русский)", -,
        l("I speak Spanish") + ". (Español)", -,
        l("I speak Portuguese") + ". (Português)", -,
        l("I speak German") + ". (Deutsch)", -,
        l("I speak Flemish") + ". (Vloams)", -,
        l("I speak Polish") + ". (Polski)", -,

    @s$, l_NoChanges;
    set @lang, @menu-1;
    if (@lang < 0 || @lang > 7) close;
    setlang @lang;

    mes "";
    mesn;
    mesq l("Ok, Done.");
    if (@q == 1) goto l_NoRules;
    next;
    mesq l("I'm sure that you've got some questions for me, feel free to ask them, but firstly I need to tell you the rules of proper social conduct on board.");
    
    mesq l("Here they are.");
    next;

    mesn "Narrator";
    mes col(l("Julia hands you a paper with the rules written on it."), 9);
    next;
    mesq col(l("1. You won't bot, this means that you won't run any automated tasks (Also included keyboard trick). If your character moves, attacks or starts any other action, it means that you made this by yourself, and that you are in front of your keyboard, if not, it's considered botting."), 9);
    next;
    mesq col(l("2, You will not multibox, this mean that you will not have more than one active character logged in and start any other clients for attacking in group."), 9);
    next;
    mesq col(l("3, You will not exploit Bugs, that means that taking advantage of other players by weaknesses or mistakes in the client, server, or gameplay is considered as cheating."), 9);
    next;
    mesq col(l("4, You won't trashtalk, flood, spam, beg, whine or use rude language in your character name, and while chatting, at the exception that there is a present form of roleplay."), 9);
    next;
    mesq col(l("5, You won't speak any other language other than English around other players that are not part of your community. You are free to speak in French, Spanish, Mayan or even in Ewokese if you wish, if you are alone or with your community."), 9);
    next;
    mesq col(l("6, You will follow the social convention listed on the RFC1855."), 9);
    next;

    mesn;
    mesq l("Oh, and it's not written there but don't give the password of your room to anybody, I'm the only one who has the other key and I won't ask for yours, so keep it secret and try not to use the same one in any other room in future.");
    next;
    mesq l("If you wish to read this page again, there is a copy  up on the left wall.");
    next;
    mesq l("I think that I'm done, do you have a question now?");
    next;

    seta ShipQuests, ShipQuests_Julia, 1;
    goto l_Menu;

l_NoRules:
    next;
    mesq l("Do you have any other questions for me?");
    next;

    goto l_YNMenu;

l_NoChanges:
    mes "";
    mesn;
    mesq l("No problem, do you have any other questions for me?");
    next;

l_YNMenu:
    menu
        l("Yes, please!"), l_Menu,
        l("No, thanks."), l_Close;

l_WhereIam:
    mes "";
    mesn;
    mesq l("You're on a ship, we're on our way to the commercial capital of Artis.");
    next;
    mesq l("We should be there in a few days, and once we arrive, I will advertise the warrior guild of what happened, I'm sure that they can help you.");
    next;
    mesq l("But for now, you can relax on the ship, or visit the island we're docked at! Its a small island, but a good place to get some exercise and stretch your legs.");
    next;
    mesq l("Do you have any other questions for me?");
    next;

    goto l_YNMenu;

l_What:
    mes "";
    mesn;
    mesq l("We thought that you could help us understand this, all we know is that we found you back in the sea, adrift on your raft.");
    next;
    mesq lg("You were in a bad mood and you should be happy that we found you before the sea took you.");
    next;
    mesq l("Also, there was this inscription on your raft, one of the warrior guild of Esperia, the largest and biggest guild of the whole new world, does that make you remember something?");
    next;
    goto l_EsperiaMenu;

l_EsperiaMenu:
    menu
        l("Sorry but I can't tell you anything about that."), l_NoChanges,
        l("Nothing, sorry."), l_NoChanges;

l_Close:
    mes "";
    mesn;
    mesq l("Bye!");

    close;

l_Rules:
    mes "";
    mesn;
    mesq l("Of course, they are on the left wall, go get a look at them.");
    next;
    mesq l("Do you have an other question for me?");
    next;

    goto l_YNMenu;

OnTouch:
    set @q, geta(ShipQuests, ShipQuests_Julia);
    if (@q == 0) goto l_First;

    close;

}