summaryrefslogblamecommitdiff
path: root/npc/025-1/yuko.txt
blob: ad61472d222f86f2a8c0714d2e44569993fc98d5 (plain) (tree)










































                                                              
// TMW2 Script
// Author:
//    Jesusalva
// Yuko Cuf is YuckFou

025-1,143,59,0	script	Yuko	NPC_PLAYER,{
    mesn;
    mesq l("Cuf! Cuf!"); // --TRANSLATORS: NOT A TYPO
    next;
    mesn;
    mesq l("Can I help you somehow today?");
    next;
    closeclientdialog;
    shop .name$;
    goodbye;
    close;

OnInit:
    .@npcId = getnpcid(.name$);
    setunitdata(.@npcId, UDT_HEADTOP, FancyHat);
    setunitdata(.@npcId, UDT_HEADMIDDLE, SailorShirt);
    setunitdata(.@npcId, UDT_HEADBOTTOM, BromenalPants);
    setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins); // Boots
    setunitdata(.@npcId, UDT_HAIRSTYLE, 7);
    setunitdata(.@npcId, UDT_HAIRCOLOR, 17);

    .sex = G_MALE;
    .distance = 4;

    tradertype(NST_MARKET);
    sellitem HomunResetPotion, -1, 5;
    sellitem PurificationPotion, -1, 20;
    sellitem EmptyBox, -1, 30;
    end;

OnClock1149:
OnClock2359:
    restoreshopitem HomunResetPotion, 5;
    restoreshopitem PurificationPotion, 20;
    restoreshopitem EmptyBox, 30;
    end;
}