26.09.2012, 15:17
thats for radom spawns
the map should done with mta or SAMP editor
the map should done with mta or SAMP editor
pawn Код:
new randspawns[3][] =
{
{X,Y,Z}//yours cords here
//and you can do here what ever you want
}
// As example
public OnPlayerSpawn(playerid)
{
new random = random(randspawns);
SetPlayerPos(playerid,randspawns[0][radom],randspawns[1][random],randspawns[2][random]);
return 1;
}