30.07.2013, 16:14
This is an example code of direct spawning without pressing the "Spawn" button, hope you can adapt this into your script.
After 0 (0 is after playerid in SetSpawnInfo), you see 299. That's Claude's skin, by default to me. You can change that skin ID to any kind, and adapt this script into your script.
pawn Код:
public OnPlayerSpawn(playerid)
{
SetSpawnInfo(playerid, 0, 299, 1958.33, 1343.12, 15.36, 269.15, 26, 36, 28, 150, 0, 0 );
SpawnPlayer(playerid);
return 1;
}

