There are 3 Bosses ( loading all 3 plugins on the NPC Mod )
I do spawn on the map in precache in each plugin like this
boss_alien
PHP Code:
if(equal(mapname, "Alien") != -1)
{
y_spawn_points[0] = 138.0
y_spawn_points[1] = -263.0
y_spawn_points[2] = 36.0
}
boss_revenant
PHP Code:
if(equal(mapname, "Revenant") != -1)
{
y_spawn_points[0] = 243.0
y_spawn_points[1] = 109.0
y_spawn_points[2] = -412.0
}
boss_titan
PHP Code:
if(equal(mapname, "Titan") != -1)
{
y_spawn_points[0] = -431.0
y_spawn_points[1] = -33.0
y_spawn_points[2] = 613.0
}
And for some reason on the map Alien spawn in addition to the other 2 Bosses
Tell me, what other way is there for only one Boss to work on a specific map ( 1 plugin )