SA-MP Forums Archive
switch team help - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: switch team help (/showthread.php?tid=240399)



switch team help - tanush - 15.03.2011

how do i make if player types /st, it will show the skin selection??


Re: switch team help - blackwave - 15.03.2011

pawn Код:
if(!strcmp(cmdtext, "/st", true))
{
      SetPlayerHealth(playerid, 0);
      ForceClassSelection(playerid);
      return 1;
}
Or simply press F4 and type /kill, and on your next death, it'll go for class selection.


Re: switch team help - tanush - 15.03.2011

thanks