summaryrefslogblamecommitdiff
path: root/npc/003-0-1/luca.txt
blob: 4df0d46bb539c0bde63bc14e099a74ecc0c9a356 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                                 
                                                             
                        
                              
        
 


                                               
                                                        

                                                      

                                            




                  
// TMW2 script.
// Author:
//    Saulc
//    Jesusalva
// Description:
//    Luca and Colin assigns player a class. This may end up contradicting races,
//    so expect core changes!

003-0-1,35,29,0	script	Luca	NPC_PLAYER,{
    ClassMaster(MAGIC_WARRIOR, "Magic Warriors", WIZARD_MAGE,
                SM_BASH,
                NV_TRICKDEAD);
    end;

OnInit:
    .@npcId = getnpcid(0, .name$);
    setunitdata(.@npcId, UDT_HEADTOP, NPCEyes);
    setunitdata(.@npcId, UDT_HEADMIDDLE, BromenalChest);
    setunitdata(.@npcId, UDT_HEADBOTTOM, JeansShorts);
    setunitdata(.@npcId, UDT_WEAPON, DeepBlackBoots);
    setunitdata(.@npcId, UDT_HAIRSTYLE, 21);
    setunitdata(.@npcId, UDT_HAIRCOLOR, 6);

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