summaryrefslogblamecommitdiff
path: root/npc/012-1/lufix.txt
blob: 2957437bcc91cb99bcbf782442193a470daa5fba (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                            
                                                                                       
     

                                                        
















                                                         
// TMW2 Script
// Author:
//    Jesusalva
// Description:
//    Hunt mouboos, Summer Quest

012-1,68,74,0	script	Lufix	NPC_RAIJIN,{
    mesn;
    if (season() == SUMMER) {
        mesq l("Yay it's summer");
    } else {
        mesq l("Aww it's not summer. I love day June 21st, and the summer vacations!");
    }
    if (GHQUEST)
        GHQ_Assign(Mouboo, "Hurnscald", "1.000.000 GP");
    close;

OnInit:
    .@npcId = getnpcid(0, .name$);
    setunitdata(.@npcId, UDT_HEADTOP, CommunityShirt);
    setunitdata(.@npcId, UDT_HEADMIDDLE, JeansChaps);
    setunitdata(.@npcId, UDT_HEADBOTTOM, DeepBlackBoots);
    setunitdata(.@npcId, UDT_WEAPON, BugSlayer);
    setunitdata(.@npcId, UDT_HAIRSTYLE, 13);
    setunitdata(.@npcId, UDT_HAIRCOLOR, 7);

    .distance=4;
    .sex=G_MALE;
	end;

}