summaryrefslogtreecommitdiff
path: root/npc/003-0-1/luca.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/003-0-1/luca.txt')
-rw-r--r--npc/003-0-1/luca.txt27
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;
+}