summaryrefslogtreecommitdiff
path: root/npc/003-8/craft.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/003-8/craft.txt')
-rw-r--r--npc/003-8/craft.txt41
1 files changed, 41 insertions, 0 deletions
diff --git a/npc/003-8/craft.txt b/npc/003-8/craft.txt
new file mode 100644
index 000000000..dc4b3917b
--- /dev/null
+++ b/npc/003-8/craft.txt
@@ -0,0 +1,41 @@
+// TMW2: Moubootaur Legends scripts.
+// Author:
+// Jesusalva
+// Description:
+// Rentable Craft Bench
+
+024-14,28,27,0 script Crafting Table NPC_NO_SPRITE,{
+ do {
+ mesc l("What will you craft today?");
+ mesc l("It costs 600 GP to use."), 1;
+ if (Zeny < 600)
+ close;
+
+ if (SmithSystem(CRAFT_PLAYER)) {
+ if (Zeny < 600) {
+ mesc l("WARNING, you have been detected cheating and thus, violating Tulimshar Anti-Theft Policy."), 1;
+ mesc l("You were jailed and now need a GM to get you out of there."), 1;
+ logmes "WARNING, "+strcharinfo(0)+" found out cheating, only had "+Zeny+"/600 GP for craft table. Jailed.", LOGMES_ATCOMMAND;
+ atcommand("@jail "+strcharinfo(0));
+ // Apply a more realistic penalty
+ Zeny=0;
+ CRAFTSYS_CURRENT=0;
+ close;
+ }
+ Zeny-=600;
+ mesc l("Success!"), 3;
+ } else {
+ mesc l("That didn't work!"), 1;
+ }
+ next;
+ mesc l("Try again?");
+ } while (askyesno() == ASK_YES);
+
+ close;
+
+OnInit:
+ .distance=3;
+ end;
+}
+
+