summaryrefslogtreecommitdiff
path: root/npc/034-4/intro.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-05-03 12:55:42 -0300
committerJesusaves <cpntb1@ymail.com>2022-05-03 12:55:42 -0300
commit40438533b0f26d9b768fe4a1e747495fa48bc102 (patch)
treee8620b5d7a889152daa95f572e0097270d9fd50f /npc/034-4/intro.txt
parent79f862701558c2564116c02f48432fced6ac76be (diff)
downloadserverdata-40438533b0f26d9b768fe4a1e747495fa48bc102.tar.gz
serverdata-40438533b0f26d9b768fe4a1e747495fa48bc102.tar.bz2
serverdata-40438533b0f26d9b768fe4a1e747495fa48bc102.tar.xz
serverdata-40438533b0f26d9b768fe4a1e747495fa48bc102.zip
Fix several bugs
Diffstat (limited to 'npc/034-4/intro.txt')
-rw-r--r--npc/034-4/intro.txt19
1 files changed, 17 insertions, 2 deletions
diff --git a/npc/034-4/intro.txt b/npc/034-4/intro.txt
index 4f1f7a1b5..f9fb3d93f 100644
--- a/npc/034-4/intro.txt
+++ b/npc/034-4/intro.txt
@@ -42,7 +42,7 @@ OnTimer2500:
end;
OnTimer6000:
- unittalk(.luvia, "If it isn't the so-called \"%s\"!", .pn$);
+ unittalk(.luvia, sprintf("If it isn't the so-called \"%s\"!", .pn$));
end;
OnTimer9500:
@@ -65,13 +65,14 @@ OnTimer20000:
.@pi = getmapusers(.mp$) + 1;
areamonster(.mp$, 45, 40, 54, 45, strmobinfo(1, Scar), Scar, .@pi);
unittalk(.luvia, "HAHAHahahaha!");
- unitwalk(.luvia, 50, 29);
+ unitwalk(.luvia, 51, 38);
end;
OnTimer24000:
.@pi = getmapusers(.mp$) + 1;
monster(.mp$, 37, 33, strmobinfo(1, Scar), Scar, .@pi);
monster(.mp$, 43, 52, strmobinfo(1, Scar), Scar, .@pi);
+ unitwalk(.luvia, 50, 29);
end;
OnTimer28000:
@@ -91,13 +92,18 @@ OnTimer50000:
monster(.mp$, 37, 33, strmobinfo(1, Scar), Scar, .@pi * 3 / 2);
end;
+// 1.35 minutes (should be OK?)
+
OnTimer150000:
.@pi = getmapusers(.mp$) + 1;
monster(.mp$, 50, 29, strmobinfo(1, Scar), Scar, .@pi * 3 / 2);
monster(.mp$, 43, 52, strmobinfo(1, Scar), Scar, .@pi);
monster(.mp$, 37, 33, strmobinfo(1, Scar), Scar, .@pi);
+ monster(.mp$, 43, 52, strmobinfo(1, BlackMamba), BlackMamba, 1);
end;
+// 2.5 minutes (too much?)
+
OnTimer300000:
.@pi = getmapusers(.mp$) + 1;
monster(.mp$, 50, 29, strmobinfo(1, Scar), Scar, .@pi * 3 / 2);
@@ -106,6 +112,8 @@ OnTimer300000:
monster(.mp$, 43, 52, strmobinfo(1, Terranite), Terranite, 1+(.@pi/2));
end;
+// 3 minutes is too much?
+
OnTimer480000:
.@pi = getmapusers(.mp$) + 1;
monster(.mp$, 50, 29, strmobinfo(1, Scar), Scar, 1+(.@pi/2));
@@ -116,6 +124,8 @@ OnTimer480000:
monster(.mp$, 37, 33, strmobinfo(1, AzulSkullSlime), AzulSkullSlime, .@pi);
end;
+// +2 minutes
+
OnTimer540000:
.@pi = getmapusers(.mp$) + 1;
monster(.mp$, 50, 29, strmobinfo(1, Terranite), Terranite, .@pi);
@@ -123,6 +133,11 @@ OnTimer540000:
monster(.mp$, 37, 33, strmobinfo(1, BlackMamba), BlackMamba, .@pi + 1);
end;
+// +1 minute
+
+// Bypass, or it'll take... a while
+OnTimer40000:
+ if (!$@GM_OVERRIDE) end;
OnTimer600000:
.@pi = getmapusers(.mp$) + 1;
monster(.mp$, 50, 29, strmobinfo(1, GoboBear), GoboBear, 1+(.@pi/2));