SA-MP Forums Archive
Player spawn 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: Player spawn help (/showthread.php?tid=83293)



Player spawn help - superboer15 - 24.06.2009

Removed


Re: Player spawn help - Vince - 24.06.2009

pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
  switch(class)
  {
    case 0: { GameTextForPlayer(playerid, "Class 0", 2000, 1); }
    case 1: { GameTextForPlayer(playerid, "Class 1", 2000, 1); }
    default: { GameTextForPlayer(playerid, "Default", 2000, 1); }
  }
  return 1;
}