SA-MP Forums Archive
[Ajuda] Rcon - 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] Rcon (/showthread.php?tid=153748)



[Ajuda] Rcon - Levelup - 10.06.2010

como fasso para adicionar um comandos em ?

pawn Код:
public OnRconCommand(cmd[])
{
    return 1;
}



Re: [Ajuda] Rcon - CyNiC - 10.06.2010

Nгo dб. Esse callback nгo foi feito pra isso.
Pra fazer comandos rcon use SendRconCommand.
Exemplo:
pawn Код:
if(strcmp(cmdtext,"/gmx",true)==0){
if(IsPlayerAdmin(playerid)){ SendRconCommand("gmx"); }
return 1;
}