SA-MP Forums Archive
How to make Setup location renascent ? - 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 to make Setup location renascent ? (/showthread.php?tid=518129)



How to make Setup location renascent ? - lorenkid - 08.06.2014

How to make Setup location renascent ? and starting locations


Re: How to make Setup location renascent ? - kosa451 - 08.06.2014

Something like this?

pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
    SetSpawnInfo(playerid, 0, 0, 1958.3783, 1343.1572, 15.3746,358.6581, 0, 0, 0, 0, 0, 0);
    //SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
    //SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
    //SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);

    TogglePlayerSpectating(playerid, true);
    SetTimerEx("login_dialog", 100, 0, "i", playerid);
    return 1;
}