[Question] Disabling class selection entirley - 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: [Question] Disabling class selection entirley (
/showthread.php?tid=376149)
[Question] Disabling class selection entirley -
Maxips2 - 09.09.2012
I've been trying to disable class selection entirley but seems like it still appears, however it doesn't do anything.
I returned 0 on the OnPlayerRequestClass callback but I can still see those arrows and the spawn button.
pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
return 0;
}
Is there any way to disable it completly?
Re: [Question] Disabling class selection entirley -
clarencecuzz - 09.09.2012
pawn Код:
public OnPlayerConnect(playerid)
{
SpawnPlayer(playerid);
return 1;
}
NOTE: Untested
Re: [Question] Disabling class selection entirley -
JaKe Elite - 09.09.2012
TogglePlayerSpectating when they are on Player Request Class
Re: [Question] Disabling class selection entirley -
[MM]RoXoR[FS] - 09.09.2012
pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
SetSpawnInfo(...);
SpawnPlayer(playerid);
return 1;
}
Re: [Question] Disabling class selection entirley -
Maxips2 - 09.09.2012
Quote:
Originally Posted by Romel
TogglePlayerSpectating when they are on Player Request Class
|
Thanks much, that worked
Re: [Question] Disabling class selection entirley -
JaKe Elite - 09.09.2012
No Problem.
Note: Don't forget to turn the spectating off when they spawn.