SA-MP Forums Archive
How can i make 2 different spawn-points? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: How can i make 2 different spawn-points? (/showthread.php?tid=383954)



How can i make 2 different spawn-points? - SAMP_Bosch - 09.10.2012

How can i make 2 different spawn-points?
1 for the GROVE_STREET
1 for the POLICE


Got this..

Quote:

public OnGameModeInit()
{
// Don't use these lines if it's a filterscript
SetGameModeText("Blank Script");
AddPlayerClass(105,2497.2693,-1676.9578,13.3398,23.6501,0,0,0,0,0,0); //Grove Street Gang Member (0)
AddPlayerClass(280,1544.0514,-1675.7766,13.5577,98.0974,0,0,0,0,0,0); //Police Officer (1)
return 1;
}

Quote:

public OnPlayerRequestClass(playerid, classid)
{
SetPlayerTeamFromClass(playerid, classid);
SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
return 1;
}




Re: How can i make 2 different spawn-points? - gtakillerIV - 09.10.2012

Why make two topics??

https://sampforum.blast.hk/showthread.php?tid=383936

Anyways:

Here:

PHP код:
public OnPlayerSpawn(playerid)
{
    if(
GetPlayerTeam(playerid) == GROVE_STREET)
    {
        
SetPlayerPos(playeridX,Y,Z); //Replace X Y Z with your spawn coordinates.
    
}
    else if(
GetPlayerTeam(playerid) == POLICE)
    {
        
SetPlayerPos(playeridX,Y,Z); //Replace X Y Z with your spawn coordinates.
    
}
    return 
1;