13.02.2012, 12:53
For your first problem if you want someone to spawn at a hospital, you just set a var then check for it in OnPlayerSpawn.
I can't be bothered writing the command for you.
pawn Код:
new bool:gHospitalSpawn[MAX_PLAYERS];
//where you need it
gHospitalSpawn[playerid] = true;
//OnPlayerSpawn
if(gHospitalSpawn[playerid])
{
SetPlayerPos(playerid, x, y, z);//put hospital co-ords here (set interior if needed)
}