summaryrefslogtreecommitdiff
path: root/npc/025-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-01-08 16:05:54 -0300
committerJesusaves <cpntb1@ymail.com>2021-01-08 16:05:54 -0300
commit2e92487a835c2fdf0d499abdd31f2e74b342db02 (patch)
treebdc6487ec7c5d0af404044db2cefbc9bf2479b73 /npc/025-1
parentf0e8cd98e77072038d3923dc25f086b2f95d9d10 (diff)
downloadserverdata-2e92487a835c2fdf0d499abdd31f2e74b342db02.tar.gz
serverdata-2e92487a835c2fdf0d499abdd31f2e74b342db02.tar.bz2
serverdata-2e92487a835c2fdf0d499abdd31f2e74b342db02.tar.xz
serverdata-2e92487a835c2fdf0d499abdd31f2e74b342db02.zip
Salohcin initial version
Diffstat (limited to 'npc/025-1')
-rw-r--r--npc/025-1/salohcin.txt31
1 files changed, 31 insertions, 0 deletions
diff --git a/npc/025-1/salohcin.txt b/npc/025-1/salohcin.txt
new file mode 100644
index 000000000..2a331aaf4
--- /dev/null
+++ b/npc/025-1/salohcin.txt
@@ -0,0 +1,31 @@
+// TMW-2 Script
+// Author:
+// Jesusalva
+// Description:
+// Nicholas the Blacksmith, spelled backwards
+
+025-1,108,67,0 script Salohnic NPC_NICHOLAS,{
+ mesn;
+ mesq l("Hello there, I am %s and I change item options, can I help you today?", .name$);
+ mes "";
+ mesn;
+ mesq l("You'll be charged even if you fail, be warned. You can re-roll the same item once, free of charge, but it may break and there will be no refunds!");
+ next;
+ if (!SmithTweakSystem(60000, true)) {
+ mes "";
+ mesn;
+ mesq l("You can always try again another day!");
+ }
+ close;
+
+
+
+
+
+
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 5;
+ end;
+}