I already haven pawns but
SOURCE : DNC Latest Release - Update 2.
SOMETIMES I spawn here :
http://i.imgur.com/RZReils.jpg
or here
http://i.imgur.com/GUH4NuL.png
even in the Air :
http://i.imgur.com/vKgql2e.jpg
Happened in Colorado map and in my map.
Printable View
I already haven pawns but
SOURCE : DNC Latest Release - Update 2.
SOMETIMES I spawn here :
http://i.imgur.com/RZReils.jpg
or here
http://i.imgur.com/GUH4NuL.png
even in the Air :
http://i.imgur.com/vKgql2e.jpg
Happened in Colorado map and in my map.
Please give more details... Which Source are you using?
Try this.
Yes, look: DNC source have random spawns... and if you use that you will spawn at the spawnpoints and not under the map :)
I'm sorry. I don't understand... I'm using DNC but I spawn sometimes under the map.
Just do the tutorial.. it fixed my issue too
I did that but still spawning under of the map sometimes.
IDK, maybe is this :
if(loadout.GameMapId == 0 || loadout.GameMapId != ginfo_.mapId || loadout.Alive == 3)
{
GetSpawnPositionNewPlayer(loadout.GamePos, pos, dir);
pos->x += u_GetRandom(10, 120);
pos->z += u_GetRandom(10, 120);
return;
}
?
"10,120"
Replace
[CODE]
pos->x += u_GetRandom(10, 120);
pos->z += u_GetRandom(10, 120);
[/CODE
with
Code:
Code:pos->x += u_GetRandom(-_glm_SpawnRadius, _glm_SpawnRadius);
pos->z += u_GetRandom(-_glm_SpawnRadius, _glm_SpawnRadius);