summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-08-09 23:33:28 -0300
committerJesusaves <cpntb1@ymail.com>2018-08-09 23:33:28 -0300
commit4af79e0e276ba70148c22e2d84cbc02e778e36f2 (patch)
treeba7bf4d8f3912892c441a84087467962ad6302e0
parent0d3c2f023eeb67275dac9aa9c2d7f2dda9f269b4 (diff)
downloadserverdata-4af79e0e276ba70148c22e2d84cbc02e778e36f2.tar.gz
serverdata-4af79e0e276ba70148c22e2d84cbc02e778e36f2.tar.bz2
serverdata-4af79e0e276ba70148c22e2d84cbc02e778e36f2.tar.xz
serverdata-4af79e0e276ba70148c22e2d84cbc02e778e36f2.zip
Revert "Debug markers required", because they aren't.
The bug was caused because missing returns and wrong ends. This reverts commit f662ebc4232d427ec394d27d3c9153a625de8a4d.
-rw-r--r--npc/config/magic.txt10
-rw-r--r--npc/magic/kalmurk.txt1
-rw-r--r--npc/magic/parum.txt1
-rw-r--r--npc/magic/zarkor.txt6
4 files changed, 1 insertions, 17 deletions
diff --git a/npc/config/magic.txt b/npc/config/magic.txt
index 81d0cdbeb..e7f2c218f 100644
--- a/npc/config/magic.txt
+++ b/npc/config/magic.txt
@@ -17,21 +17,13 @@
// SkillID, EXP Points
function script GetManaExp {
- debugmes "--- Magic Subsystem: GME called";
.@sk=getarg(0);
.@pt=getarg(1);
- debugmes "--- Magic Subsystem: GME: Arguments Read";
- if (getskilllv(TMW2_SAGE))
- .@bonus=rand(0,getskilllv(TMW2_SAGE)*3/2);
- else
- .@bonus=0;
- debugmes "--- Magic Subsystem: GME: Evaluating";
+ .@bonus=rand(0,getskilllv(TMW2_SAGE)*3/2);
if (LAST_SKILL == .@sk)
end;
- debugmes "--- Magic Subsystem: GME: Recording";
LAST_SKILL=.@sk;
MAGIC_EXP=MAGIC_EXP+.@pt+.@bonus;
- debugmes "--- Magic Subsystem: GME: Complete";
return;
}
diff --git a/npc/magic/kalmurk.txt b/npc/magic/kalmurk.txt
index 57fefe100..dd9ebc062 100644
--- a/npc/magic/kalmurk.txt
+++ b/npc/magic/kalmurk.txt
@@ -53,7 +53,6 @@ OnCall:
dispbottom l("The spell fails!");
}
- debugmes "--- Magic Subsystem: KM: Ready for XP";
// Get a single mana experience point (this is NOT used by Soul Menhir)
GetManaExp(@sk, abizit()+1);
diff --git a/npc/magic/parum.txt b/npc/magic/parum.txt
index eb06e21e0..9e1cc0994 100644
--- a/npc/magic/parum.txt
+++ b/npc/magic/parum.txt
@@ -62,7 +62,6 @@ OnCall:
@parum_at=gettimetick(2);
@parum_at=@parum_at+4;
- debugmes "--- Magic Subsystem: PR: Ready for XP";
// Get a few mana experience points (this is NOT used by Soul Menhir)
GetManaExp(TMW2_PARUM, rand(1,3));
end;
diff --git a/npc/magic/zarkor.txt b/npc/magic/zarkor.txt
index 42f504dac..6c4980c33 100644
--- a/npc/magic/zarkor.txt
+++ b/npc/magic/zarkor.txt
@@ -17,7 +17,6 @@ OnFriendlyDeath:
*/
OnCall:
- debugmes "--- Magic Subsystem: ZK called";
// Other requeriments
if (countitem(ZarkorScroll) < 1) {
dispbottom l("You need @@ to cast this skill.", getitemlink(ZarkorScroll));
@@ -32,23 +31,19 @@ OnCall:
end;
}
- debugmes "--- Magic Subsystem: ZK: Ready for setup";
// Setup
@sk=TMW2_ZARKOR;
@mp=400;
@amp=75;
- debugmes "--- Magic Subsystem: ZK: Ready for check";
// Check if you have mana to cast
// MagicCheck(SkillID, Mana{, MP per level})
if (!MagicCheck(@sk, @mp, @amp))
end;
- debugmes "--- Magic Subsystem: ZK: Ready for core";
// Summon Magic
SummonMagic(@sk, CaveMaggot, 2);
- debugmes "--- Magic Subsystem: ZK: Ready for XP";
// Get a single mana experience point (this is NOT used by Mana Stone)
GetManaExp(@sk, 1);
@@ -57,7 +52,6 @@ OnCall:
@skzarkor_cooldown=gettimetick(2)+20;
*/
@zark_caveat=1;
- debugmes "--- Magic Subsystem: ZK: Complete";
end;
OnInit: