summaryrefslogblamecommitdiff
path: root/npc/029-0/sakar.txt
blob: 9c8ac24a704c6a5a79f74f3e9b0a6c0d1196cf6a (plain) (tree)






























                                                            
                                                            




















                                                                                 
// TMW2 scripts.
// Author:
//    Jesusalva
// Description:
//    Fires of Steam: The Death of Andrei Sakar

//////////////////////////////////////////
// Andrei Sakar Instances

029-8,50,173,0	script	Andrei Sakar#FoS298	NPC_ANDREI,{
    mesn;
    mesq l("Do you want to return?");
    next;
    select
        l("No, thanks."),
        l("Yes, I would like to go back to the Swamps."),
        l("Yes, I would like to go back to Artis.");
    mes "";
    closeclientdialog;
    switch (@menu) {
        case 2:
            cwarp "029-7", 87, 56;
        case 3:
            cwarp "029-0", 90, 31;
    }
    close;
OnInit:
    .distance=5;
    end;
}

029-0,88,33,0	script	Andrei Sakar#FoS298	NPC_ANDREI,{
    mesn;
    mesq l("Do you want to advance?");
    next;
    select
        l("No, thanks."),
        l("Yes, I would like to explore!"),
        rif($FIRESOFSTEAM >= 8, l("Yes, I would like to go to Asphodel Moors!"));
    mes "";
    closeclientdialog;
    switch (@menu) {
        case 2:
            cwarp "029-1", 32, 91;
        case 3:
            cwarp "029-8", 51, 174;
    }
    close;
OnInit:
    .distance=5;
    end;
}