28.10.2012, 17:20
If you want the players to spawn at Jefferson Motel when they connect to the server you need to put this at "OnPlayerSpawn", like this.
Or if you need it in a command, just follow what gtakillerIV said
pawn Код:
public OnPlayerSpawn(playerid)
{
SetPlayerInterior(playerid, 15);
SetPlayerPos(playerid, 2220.26, -1148.01, 1025.80);
return 1;
}