diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-21 17:50:33 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-06-11 17:50:33 -0300 |
commit | 88eefdab967e08886f4307fe2f5bd7e8a00241fc (patch) | |
tree | ed54d2bd03db1422534997a8886dc1c0d0bafa09 | |
parent | 8f561ed808a5f44e4f74f0b09167d6ab0cb5d3da (diff) | |
download | serverdata-88eefdab967e08886f4307fe2f5bd7e8a00241fc.tar.gz serverdata-88eefdab967e08886f4307fe2f5bd7e8a00241fc.tar.bz2 serverdata-88eefdab967e08886f4307fe2f5bd7e8a00241fc.tar.xz serverdata-88eefdab967e08886f4307fe2f5bd7e8a00241fc.zip |
Hurnscald Liberation Day: Make the boss have 100k HP.
This is to compensate the GM intervention during the official event.
-rw-r--r-- | npc/012-1/guards.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/012-1/guards.txt b/npc/012-1/guards.txt index 6875fbb85..9a469a2cc 100644 --- a/npc/012-1/guards.txt +++ b/npc/012-1/guards.txt @@ -372,7 +372,10 @@ OnTimer240000: bg_monster($@FK_Team2, "012-1", 65, 71, "Monster Lieutenant", NightScorpion, "Hurnsguard::OnXtreem"); } else if (.CYCLES == 3) { mapannounce("012-1", "Monster Admiral appears! Kill it to liberate Hurns!", bc_map); - bg_monster($@FK_Team2, "012-1", 65, 71, "Monster Admiral", GiantMutatedBat, "Hurnsguard::OnVictory"); + .@boss=bg_monster($@FK_Team2, "012-1", 65, 71, "Monster Admiral", GiantMutatedBat, "Hurnsguard::OnVictory"); + // Give huge amounts of health to the boss (Default: 43310) + setunitdata(.@boss, UDT_MAXHP, 100000); + setunitdata(.@boss, UDT_HP, 100000); } // One monster per user alive |