summaryrefslogblamecommitdiff
path: root/npc/functions/villagertalk.txt
blob: a37bf9b5009cb0b2f584f763e972a340d6e34781 (plain) (tree)
1
2
3
4
                  
           
          
                   



















                                                                                                                                           
// Evol functions.
// Authors:
//    Reid
//    Qwerty Dragon
// Description:
//    Tell a random sentence.
// Variables:
//    .@rand = Random number between the number of sentence choice.

function	script	villagertalk	{

    .@rand = rand(3);
    if (.@rand == 0) goodbye;
    if (.@rand == 1)
    {
        speech 4,
            l("Do you feel too weak even to do damage to this areas wishy-washy wildlife?"),
            l("Then concentrate your anger upon the trees hereabouts, you will gain experience whilst leveling your sword skill on them."),
            l("Oh, and a fruit may even fall for you if you are lucky! But stay alert to pick up your drops.");
    }
    if (.@rand == 2) npctalk3 l("It is a sunny day, don't you think?");

    return;
}