blob: 972270bcb834179353a53240c81662067875fa15 (
plain) (
tree)
|
|
// TMW2 Script
// Author:
// Jesusalva
// Description:
// Tortuga "Boss" (exceptional)
011-4,0,0,0 script #BossCtrl_011-4 NPC_HIDDEN,{
end;
// Respawn every 15 minutes
OnTimer900000:
stopnpctimer;
OnInit:
areamonster "011-4", 20, 20, getmapinfo(MAPINFO_SIZE_X, "011-4"), getmapinfo(MAPINFO_SIZE_Y, "011-4"), strmobinfo(1, Tortuga), Tortuga, 1, "#BossCtrl_011-4::OnBossDeath";
end;
OnBossDeath:
initnpctimer;
//announce_bosskill(getmap(), Tortuga);
fix_mobkill(Tortuga);
end;
}
|