Log In
Sign Up
Go Gold
Home
Forum
Mail
Downloads
Game Search
Macro Editor
Notes
Membership
#Manaetic_Behemoth.pl - Quest File
General Info
Quest File
sub EVENT_SPAWN { #no aggro timer, respawn untargetable. #added this because of the reports of MB going active and despawning on his own. quest::settimer(9,1200); #leash timer quest::settimer(4,1); } sub EVENT_DEATH_COMPLETE { #signal to Giwin to give flags. quest::signalwith(206038,1,1); # NPC: Giwin_Mirakon } sub EVENT_TIMER { if($timer == 9) { #if targetable version has been up 20 minutes depop him. #resest spawn timer on untargetable to respawn it in 5 seconds quest::updatespawntimer(42135,5000); quest::depop(); } if($timer == 8) { #failed. shorten respawn timer to 24 hours. quest::updatespawntimer(42135,86400000); quest::depop(); } if($timer == 4 && ($x < 1010 || $x > 1240)) { #leash $npc->GMMove(1125,0,12.5,0); #signal to giwin about being out of room quest::signalwith(206038,2,1); # NPC: Giwin_Mirakon } } sub EVENT_AGGRO { #fail timer quest::settimer(8,1200); quest::stoptimer(9); }
Source: 17 Jan 2022
Quest Source: 28 May 2022