summaryrefslogblamecommitdiff
path: root/npc/001-2-2/moon.txt
blob: cfdc8f66f1b313f18f4bef71a66d0f7fd7d989e9 (plain) (tree)




























                                             
// Evol scripts.
// Author:
//    Reid
// Description:
//    Moon, main NPC for the urchin quest.

001-2-2,33,32,0	script	Moon#001-2-2	427,{
    npctalk3 l("Hi!");
    close;

OnTimer1000:
    if (isunitwalking())
    {
        initnpctimer;
        end;
    }
    movetonextpos;
    initnpctimer;
    end;

OnInit:
    initpath "move", 41, 30,
             "dir", DOWN, 0,
             "wait", 2, 0,
             "move", 33, 32,
             "wait", 10, 0,
    initialmove;
    initnpctimer;
}