I already haven pawns but
SOURCE : DNC Latest Release - Update 2.
SOMETIMES I spawn here :
or here
even in the Air :
Happened in Colorado map and in my map.
I already haven pawns but
SOURCE : DNC Latest Release - Update 2.
SOMETIMES I spawn here :
or here
even in the Air :
Happened in Colorado map and in my map.
Last edited by DNC; 08-07-14 at 11:51 AM.
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);