ClassSelection - 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: ClassSelection (
/showthread.php?tid=639972)
ClassSelection -
Mobtiesgangsa - 26.08.2017
Hello anyone here to help me about
Код:
OnPlayerRequestClass(playerid, classid)
having issue skin wont show on player class selection here is my code
Код:
SetupPlayerForClassSelection(playerid)
{
SetPlayerPos(playerid, 2167.4988, 1410.1968, 10.9203);
SetPlayerFacingAngle(playerid, 91.5866);
SetPlayerCameraPos(playerid, 2167.4988, 1410.1968, 10.9203);
SetPlayerCameraLookAt(playerid, 2167.4988, 1410.1968, 10.9203);
}
public OnPlayerRequestClass(playerid, classid)
{
SetupPlayerForClassSelection(playerid);
return 1;
}
everything is written good but here is a proof whats happening
Вложение 10844
Re: ClassSelection -
ProBro - 26.08.2017
AddPlayerClass(skinid, 2167.4988, 1410.1968, 10.9203, 0, 0, 0);
Also Return true when all classes are added.
PHP код:
public OnPlayerRequestClass(playerid, classid)
{
SetupPlayerForClassSelection(playerid);
AddPlayerClass(skinid, 2167.4988, 1410.1968, 10.9203, 0, 0, 0);
return true;
}