diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-31 15:48:48 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-31 15:48:48 -0300 |
commit | 6f499d71453a841fca7a243fb8f86f78377337a3 (patch) | |
tree | a0e8c3a5946088e4fc8f95070973e975ab1e43f9 /npc/boss | |
parent | 946eb13947237b399e169610edb6acf8376b2910 (diff) | |
download | serverdata-6f499d71453a841fca7a243fb8f86f78377337a3.tar.gz serverdata-6f499d71453a841fca7a243fb8f86f78377337a3.tar.bz2 serverdata-6f499d71453a841fca7a243fb8f86f78377337a3.tar.xz serverdata-6f499d71453a841fca7a243fb8f86f78377337a3.zip |
Remove bad function from MK Throne Room
Diffstat (limited to 'npc/boss')
-rw-r--r-- | npc/boss/throne.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/boss/throne.txt b/npc/boss/throne.txt index e9c82a488..d3097992b 100644 --- a/npc/boss/throne.txt +++ b/npc/boss/throne.txt @@ -26,10 +26,10 @@ OnBegin: // Spawn reinforcements .@mobId=MonsterLieutenant; .@ts$="Lieutenant"; - monster("boss", 40, 40, strmobinfo(1, .@mobId), .@mobId, 1, "#SiegeCtrl::On"+.@ts$+"Death"); - monster("boss", 50, 50, strmobinfo(1, .@mobId), .@mobId, 1, "#SiegeCtrl::On"+.@ts$+"Death"); - monster("boss", 40, 50, strmobinfo(1, .@mobId), .@mobId, 1, "#SiegeCtrl::On"+.@ts$+"Death"); - monster("boss", 50, 40, strmobinfo(1, .@mobId), .@mobId, 1, "#SiegeCtrl::On"+.@ts$+"Death"); + monster("boss", 40, 40, strmobinfo(1, .@mobId), .@mobId, 1); + monster("boss", 50, 50, strmobinfo(1, .@mobId), .@mobId, 1); + monster("boss", 40, 50, strmobinfo(1, .@mobId), .@mobId, 1); + monster("boss", 50, 40, strmobinfo(1, .@mobId), .@mobId, 1); mapannounce("boss", "Begin!", bc_map|bc_npc); initnpctimer; @@ -60,12 +60,12 @@ OnTimer120000: if (.CYCLES == 5) { .@mobId=MonsterColonel; .@ts$="Colonel"; - monster("boss", 45, 44, strmobinfo(1, .@mobId), .@mobId, 1, "#SiegeCtrl::On"+.@ts$+"Death"); + monster("boss", 45, 44, strmobinfo(1, .@mobId), .@mobId, 1); } if (.CYCLES == 15) { .@mobId=MonsterGeneral; .@ts$="General"; - monster("boss", 45, 44, strmobinfo(1, .@mobId), .@mobId, 1, "#SiegeCtrl::On"+.@ts$+"Death"); + monster("boss", 45, 44, strmobinfo(1, .@mobId), .@mobId, 1); } initnpctimer; OnTimer15000: |