21.08.2015, 23:34
I NEED PLAYER SPAWN SYSTEM IN LS INFRON THE TAXI STATION
SetPlayerInterior(playerid, 0);
SetPlayerPos(playerid, PositionX, Position Y, PositionZ);
if you have faction/groups, you must to do conditions:
If(PayerInfo[playerid][pFaction] > 0)
{
Coordonate to spawn at faction spawn....
}
else
{
SetPlayerInterior(playerid, 0);
SetPlayerPos(playerid, PositionX, Position Y, PositionZ);
}
PayerInfo[playerid][pFaction] is an example for variable which stock the faction for player.
Your variable can be called otherwise.