is it possible to disable certain bots spawnpoints???
Moderator: Moderators
is it possible to disable certain bots spawnpoints???
this would be a really cool feature
van Wassem entertainment© - entertainment on a degreement never imagined
Yup simply set the following variable
[spawnpos].disablespawn = 1
Identification of the spawnpos may turn out to be expedient, as the targetname has to be alliesspawn or axisspawn. You can however set an additional key in the editor (.e.g. $tag) and check all spawnpoints for this key.
Example:
[spawnpos].disablespawn = 1
Identification of the spawnpos may turn out to be expedient, as the targetname has to be alliesspawn or axisspawn. You can however set an additional key in the editor (.e.g. $tag) and check all spawnpoints for this key.
Example:
Code: Select all
for(local.i = 1; local.i <= $alliesspawn.size; local.i++)
{
if($alliesspawn[local.i].tag == "tobedisabled")
$alliesspawn[local.i].disablespawn = 1
}
