diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-20 15:26:50 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-20 15:26:50 -0300 |
commit | b88d4038a05766bc6627f23f863db81078adf7c4 (patch) | |
tree | 8ea9071fd655f179a203ca1278b8d0cf46f2352c /npc/commands/event.txt | |
parent | d890751e6fad356e92c01839aa638378e0c48967 (diff) | |
download | serverdata-b88d4038a05766bc6627f23f863db81078adf7c4.tar.gz serverdata-b88d4038a05766bc6627f23f863db81078adf7c4.tar.bz2 serverdata-b88d4038a05766bc6627f23f863db81078adf7c4.tar.xz serverdata-b88d4038a05766bc6627f23f863db81078adf7c4.zip |
Make @toevent less aggressive/picky with harmed players
Diffstat (limited to 'npc/commands/event.txt')
-rw-r--r-- | npc/commands/event.txt | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/npc/commands/event.txt b/npc/commands/event.txt index b3b556b82..c9996c67a 100644 --- a/npc/commands/event.txt +++ b/npc/commands/event.txt @@ -237,6 +237,17 @@ OnCall: end; OnCall: + if (!@toeventchk) { + @toeventval1=readparam(Hp); + @toeventval2=readparam(Sp); + @toeventchk=1; + specialeffect 310; + addtimer 4000, "@toevent::OnEffect"; + } + end; + +OnEffect: + @toeventchk=0; // Calculate if (!$@GM_EVENT && !$@MK_SCENE && $EVENT$ == "") { dispbottom l("The mana bridge is closed at the moment."); @@ -244,11 +255,11 @@ OnCall: } else if (BaseLevel < 10) { dispbottom l("You are not strong enough to survive this trip."); end; - } else if (readparam(Sp) != readparam(MaxSp)) { - dispbottom l("You need all your mana to do this trip."); + } else if (readparam(Sp) < @toeventval2) { + dispbottom l("You must not be using mana to do this trip."); end; - } else if (readparam(Hp) != readparam(MaxHp)) { - dispbottom l("You cannot be hurt to do this trip."); + } else if (readparam(Hp) < @toeventval1) { + dispbottom l("You cannot be fighting to do this trip."); end; } else if (getmapname() ~= "001-*") { dispbottom l("You are already at the Mana Plane of Existence."); |