How can you change where the soldier looks when he spawns?

Also how to prevent soldiers from spawning on each other and not at spawnpoints
image

direction of spawns as stated in the official document ( one of the very few… )

states that the Red line is the direction.

as it goes for bots spawning on each other,

put the following inside entities.blk

spawn_on_friends{
  _override:b=yes
  _use:t="250kg_gp_bomb_projectile"
}

add_spawn_on_squadmates{
  _override:b=yes
  _use:t="250kg_gp_bomb_projectile"
}

player_respawn_base{
  _override:b=yes
  _use:t="250kg_gp_bomb_projectile"
}

it will prevent AI spawning on each other and cause unrealistic / frustrating scenarios.

2 Likes