summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-05-29 18:30:19 -0300
committerJesusaves <cpntb1@ymail.com>2019-05-29 18:30:19 -0300
commit09df93673552453ba776bbc96209672148338b33 (patch)
tree43b550e00679b8cb1b3cabfe2c0c0e91785c8165 /npc
parent6308005f438805a86ec7869c209547f4224ee8c2 (diff)
downloadserverdata-09df93673552453ba776bbc96209672148338b33.tar.gz
serverdata-09df93673552453ba776bbc96209672148338b33.tar.bz2
serverdata-09df93673552453ba776bbc96209672148338b33.tar.xz
serverdata-09df93673552453ba776bbc96209672148338b33.zip
Intense Beard NPC
Diffstat (limited to 'npc')
-rw-r--r--npc/003-8/_import.txt1
-rw-r--r--npc/003-8/intensebeard.txt44
2 files changed, 45 insertions, 0 deletions
diff --git a/npc/003-8/_import.txt b/npc/003-8/_import.txt
index a9e80497c..64d2cc862 100644
--- a/npc/003-8/_import.txt
+++ b/npc/003-8/_import.txt
@@ -1,4 +1,5 @@
// Map 003-8: Terranite Forge
// This file is generated automatically. All manually added changes will be removed when running the Converter.
"npc/003-8/_warps.txt",
+"npc/003-8/intensebeard.txt",
"npc/003-8/jhedia.txt",
diff --git a/npc/003-8/intensebeard.txt b/npc/003-8/intensebeard.txt
new file mode 100644
index 000000000..a4975dae7
--- /dev/null
+++ b/npc/003-8/intensebeard.txt
@@ -0,0 +1,44 @@
+// TMW2 Script
+// Author:
+// Jesusalva
+// Description:
+// Intense Beard is the crafting master
+
+003-8,27,42,4 script Intense Beard NPC_HUMAN_M_ARTIS,{
+ if (BaseLevel < 35)
+ goto L_SemNivel;
+ if (!countitem(RecipeBook))
+ goto L_SemLivro;
+ mesn;
+ mesq l("Hello my friend! I see you've brought your @@ with you this time!", getitemlink(RecipeBook));
+ next;
+ mesn;
+ mesc l("TODO"), 1;
+ close;
+
+L_SemNivel:
+ mesn;
+ mesq l("Please don't disturb me, I'm busy crafting my own customized power mega blaster weapon. I just keep failing to apply +100% exp gain bonus on it!");
+ close;
+
+L_SemLivro:
+ mesn;
+ mesq l("Heya, noob. Do you have a @@? No? I thought everyone gained one at birth from their parents!", getitemlink(RecipeBook));
+ next;
+ mesn;
+ mesq l("That's too bad, because I could teach you some amazing craft skills! This will need to wait another day, I guess. Oh well.");
+ next;
+ mesn;
+ mesq l("Better ask your parents for one... Failing that, maybe someone in the Alliance can gift you one.");
+ close;
+
+OnInit:
+ .sex=G_MALE;
+ .distance=5;
+ npcsit;
+ end;
+
+
+}
+
+