summaryrefslogblamecommitdiff
path: root/npc/003-5/jeweler.txt
blob: 68169ec2bfd3539ab6ff85c6e32bde84c9803e5f (plain) (tree)
1
2
3
4
5
6
7
8
9
10

              
               
               
                           
 

                                              

          






                                                              


                                           


                    


        
// TMW2 Script
// Author:
//    Jesusalva
// Description:
//  Sells and crafts jewels

003-5,33,37,0	script	Jeweler	NPC_PLAYER_F,{
    hello;
    close;


OnInit:
    .@npcId = getnpcid(0, .name$);
    setunitdata(.@npcId, UDT_HEADTOP, NPCEyes);
    setunitdata(.@npcId, UDT_HEADMIDDLE, VneckJumper);
    setunitdata(.@npcId, UDT_HEADBOTTOM, RaidTrousers);
    setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins); // Boots
    setunitdata(.@npcId, UDT_HAIRSTYLE, 3);
    setunitdata(.@npcId, UDT_HAIRCOLOR, 8);
    npcsit;

    .sex = G_FEMALE;
    .distance = 5;
    end;

}