summaryrefslogtreecommitdiff
path: root/npc/024-7/afking.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/024-7/afking.txt')
-rw-r--r--npc/024-7/afking.txt30
1 files changed, 30 insertions, 0 deletions
diff --git a/npc/024-7/afking.txt b/npc/024-7/afking.txt
new file mode 100644
index 000000000..9ac836967
--- /dev/null
+++ b/npc/024-7/afking.txt
@@ -0,0 +1,30 @@
+// TMW2 scripts.
+// Author:
+// TMW-BR
+// Jesusalva
+// Description:
+// AFK Cap quest (Lv 47)
+
+024-7,40,24,0 script AF King NPC_PLAYER,{
+ if (BaseLevel < 47) {
+ npctalkonce l("*AFK: I am Away From Keyboard*");
+ end;
+ }
+
+ closedialog;
+ goodbye;
+ close;
+
+OnInit:
+ .@npcId = getnpcid(.name$);
+ setunitdata(.@npcId, UDT_HEADTOP, AFKCap);
+ setunitdata(.@npcId, UDT_HEADMIDDLE, SilkRobe);
+ setunitdata(.@npcId, UDT_WEAPON, DeepBlackBoots);
+ setunitdata(.@npcId, UDT_HAIRSTYLE, 26);
+ setunitdata(.@npcId, UDT_HAIRCOLOR, 0);
+ npcsit;
+
+ .sex = G_MALE;
+ .distance = 4;
+ end;
+}