diff options
Diffstat (limited to 'npc/003-0-1/colin.txt')
-rw-r--r-- | npc/003-0-1/colin.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/npc/003-0-1/colin.txt b/npc/003-0-1/colin.txt new file mode 100644 index 000000000..f06fd07da --- /dev/null +++ b/npc/003-0-1/colin.txt @@ -0,0 +1,27 @@ +// 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,{ + + mesn; + mesq l("I am the Wizard Mages master."); + close; + +OnInit: + .@npcId = getnpcid(0, .name$); + setunitdata(.@npcId, UDT_HEADTOP, NPCEyes); + setunitdata(.@npcId, UDT_HEADMIDDLE, ForestArmor); + setunitdata(.@npcId, UDT_HEADBOTTOM, JeansShorts); + setunitdata(.@npcId, UDT_WEAPON, DeepBlackBoots); + setunitdata(.@npcId, UDT_HAIRSTYLE, 14); + setunitdata(.@npcId, UDT_HAIRCOLOR, 13); + + .sex = G_MALE; + .distance = 5; + end; +} |