summaryrefslogtreecommitdiff
path: root/npc/011-4/boss.txt
blob: 972270bcb834179353a53240c81662067875fa15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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;

}