summaryrefslogblamecommitdiff
path: root/npc/003-0-1/colin.txt
blob: db031848b3e95d4a9e07843da7532bed2a456b86 (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,58,29,0	script	Colin	NPC_PLAYER,{
    ClassMaster(WIZARD_MAGE, "Wizard Mages", MAGIC_WARRIOR,
                MG_FIREBALL,
                AL_DP);
//                MG_COLDBOLT);

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

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