summaryrefslogblamecommitdiff
path: root/npc/018-2-1/dustman.txt
blob: fe0c962578b83bbce4dc345801fd5d2da126f988 (plain) (tree)
1
2
3
4
5
6
7
8
9
10







                                                      

                                               












                                                                                                                                
















                                                                                                                                            





                
// TMW2/LoF scripts.
// Authors:
//    TMW-LoF Team
//    Jesusalva
// Description:
//    Void NPC

018-2-1,22,29,0	script	Colonel DUSTMAN	NPC_CRUSADER,{
    .@q=getq(LoFQuest_COD);
    if (.@q == 0 && BaseLevel > 50) goto L_COD;
    mesn;
    mesq l("My man went down and still haven't returned.");
    next;
    mesn;
    mesq l("I'm worried with them. Anyway, you need a special scroll to get to the Heroes Cave...");
    next;
    mesn;
    mesq l("Otherwise, well, I'm not sure what will happen. You'll probably be either thrown at the wolves or something. Duh.");
    next;
    mesn;
    mesq l("Take care, adventurer!");
    close;

L_COD:
    mesn;
    mesq l("Hey, do you know the ##BCall Of Dusty##b event?");
    next;
    mesn;
    mesq l("Just @@ ago, thiefs stole Pihro & Pyndragon weapons.", FuzzyTime(1542570030));
    next;
    mesn;
    mesq l("Pyndragon said he'll do a @@ to however reduces them to dust. Interested?", getitemlink(Dustynator)); // BottledDust, Dustynator
    next;
    if (askyesno() == ASK_YES) {
        mes "";
        mesn;
        mesq l("Too bad, because that wasn't implemented yet!");
    }
    close;

OnInit:
    .sex=G_MALE;
    .distance=5;
    end;
}