diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-27 08:38:41 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-27 08:38:41 -0300 |
commit | 87918ef1f39120aef109098277044a2ed31c724d (patch) | |
tree | 647a240f8a3cfd8967d6ba0ec865eab8f898fb37 /npc/003-0-1/luca.txt | |
parent | 1c2208cb88f4ddc10a52b2a505b022d6596ce722 (diff) | |
download | serverdata-87918ef1f39120aef109098277044a2ed31c724d.tar.gz serverdata-87918ef1f39120aef109098277044a2ed31c724d.tar.bz2 serverdata-87918ef1f39120aef109098277044a2ed31c724d.tar.xz serverdata-87918ef1f39120aef109098277044a2ed31c724d.zip |
Initial Magic System redesign (WIP)
Diffstat (limited to 'npc/003-0-1/luca.txt')
-rw-r--r-- | npc/003-0-1/luca.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/npc/003-0-1/luca.txt b/npc/003-0-1/luca.txt new file mode 100644 index 000000000..bdf4cbb98 --- /dev/null +++ b/npc/003-0-1/luca.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,35,29,0 script Luca NPC_PLAYER,{ + + mesn; + mesq l("I am the Magic Warriors 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; +} |