[Ajuda]Caixa de escolher a char - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda]Caixa de escolher a char (
/showthread.php?tid=303150)
[Ajuda]Caixa de escolher a char -
brunoak - 11.12.2011
Boas, eu sou novo no pawn e queria saber como se faz isto aqui, para escolher a personagem que quero.
Re: [Ajuda]Caixa de escolher a char -
Lуs - 11.12.2011
OnPlayerRequestClass
AW: [Ajuda]Caixa de escolher a char -
Enderman - 12.12.2011
pawn Код:
public OnGameModeInit()
{
for(new i = 0; i < 287; i++)
{
AddPlayerClass(i, x, y, z, 0, 0, 0, 0, 0, 0, 0);
}
return true;
}
public OnPlayerRequestClass(playerid,classid)
{
return 1;
}