21.01.2013, 13:00
well, if it's just on the game session where he should spawn on antoher location you could add:
somewhere on top of the script:
somewhere on top of the script:
PHP код:
new spawncount[MAX_PLAYERS];
PHP код:
spawncount[playerid]++;
if(spawncount[playerid] == 1)
{
//CJs House
}
else if(spawncount[playerid] == 2)
{
//next spawn
}
else if(spawncount[playerid] == 3)
{
//reset spawn to CJs? spawncount[playerid] = 1;
}