summaryrefslogtreecommitdiff
path: root/world/map/npc/items
diff options
context:
space:
mode:
authorJesusaves <jesusalva@themanaworld.org>2020-04-20 21:52:32 -0300
committerGitHub <noreply@github.com>2020-04-21 00:52:32 +0000
commitbb7653be55fdc48f98f3def7497810eb31405c3b (patch)
tree1116d9fa27d641c8ce0590d28bda2002ffcbb6e9 /world/map/npc/items
parent2269b95101eb366b86d928813d5467bd5710c1ce (diff)
downloadserverdata-bb7653be55fdc48f98f3def7497810eb31405c3b.tar.gz
serverdata-bb7653be55fdc48f98f3def7497810eb31405c3b.tar.bz2
serverdata-bb7653be55fdc48f98f3def7497810eb31405c3b.tar.xz
serverdata-bb7653be55fdc48f98f3def7497810eb31405c3b.zip
Doomsday Act 4 (#554)
Restrict the Smoking Pipe to level 18 (also an easter egg) Prepare some Act 5 maps. Triggers for Doomsday Act 4 Add the Golem, one of the meaniest monsters I ever added. Special effect sequencing for Act 4. Also add a 10k experience reward to whoever is on the map by time the boss is slain. Good luck, brave players! (Recommended 3 repeats, Advsised max 6 repeats, script gives up after 20 repeats)
Diffstat (limited to 'world/map/npc/items')
-rw-r--r--world/map/npc/items/drugs.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/world/map/npc/items/drugs.txt b/world/map/npc/items/drugs.txt
new file mode 100644
index 00000000..9c724872
--- /dev/null
+++ b/world/map/npc/items/drugs.txt
@@ -0,0 +1,17 @@
+// ------------------------------------------------------------
+// Added as a joke but could be used seriously.
+// ------------------------------------------------------------
+
+function|script|DrugItem
+{
+ if (strcharinfo(0) == "kytty") goto L_kytty;
+ //message strcharinfo(0), "TMW does not endorse nor condone with the use of this item in real life, nor with its implications.";
+ goto L_Return;
+
+L_kytty:
+ message strcharinfo(0), "Stop smoking, kytty! %%e";
+ goto L_Return;
+
+L_Return:
+ return;
+}