21.04.2011, 13:36
If you want like this then it is here.
And if you want the player spawns at random places.
Then it is also here.
On Top:-
Thanks
pawn Код:
public OnPlayerSpawn(playerid)
{
SetPlayerPos(playerid, x, y ,z);//Instead of x y z post your coordinates.
return 1;
}
Then it is also here.
On Top:-
pawn Код:
new Float:Spawns[3][4] =
{
{//Your coordinates here},
{//Your coordinates here},
{//Your coordinates here}
};
pawn Код:
public OnPlayerSpawn(playerid)
{
SetPlayerPos(playerid, Spawns[rand][0], Spawns[rand][1], Spawns[rand][2], Spawns[rand][3]);
return 1;
}
![Cheesy](images/smilies/biggrin.png)