12.05.2014, 14:05
Quiten, it's easy.
- Go In-Game where you mapped the airport,
- Go to the area where you'd like your play spawn at,
- Type /save there,
- Go to My Documents/GTA San Andreas Userfiles/SAMP/Saved positions.txt
- Click on it and it will show you coordinates like this: AddPlayerClass etc etc,
- Take the first X Y and Z and place them under your OnPlayerSpawn Like this:
pawn Код:
public OnPlayerSpawn(playerid)
{
SetPlayerPos(playerid, X,Y,Z);
return 1;
}