[Ajuda] Anti-rcon nгo autorizado - 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] Anti-rcon nгo autorizado (
/showthread.php?tid=367368)
Anti-rcon nгo autorizado -
[XPG]MarlonCS - 09.08.2012
Criei esse mini-sistema anti-rcon nгo autorizado. Veja:
pawn Код:
//OnPlayerText
if(text[0] == "/rcon login" && pnome(playerid) != DonosDoServer)
{
SendClientMessage(playerid, vermelho, "[SERVER] Vocк serб alertado aos admins por tentar logar como Rcon");
format(string, sizeof string, "[SERVER] %s tentou logar como rcon.", pnome(playerid));
for(new i; i < MAX_PLAYERS; i++) {
if(admlevel[i] > 0)SendClientMessage(i, vermelho, string);
}
}
//...
pawn Код:
//Topo do GM
new DonosDoServer[][] =
{
"MarlonCS",
"LipehBR",
"XxXBetinhoXxX"
};
Porйm, dб esse erro:
pawn Код:
error 001: expected token: "-string end-", but found "-identifier-"
Nessa linha:
pawn Код:
//...
if(text[0] == "/rcon login" && pnome(playerid) != DonosDoServer)
//...
O que poderia ser? '-'
Respuesta: Anti-rcon nгo autorizado -
[JD]BlackFire - 09.08.2012
pawn Код:
if(!strcmp(text,"/rcon login",login) && pnome(playerid) != DonosDoServer)
Respuesta: Anti-rcon nгo autorizado -
[JD]BlackFire - 09.08.2012
mas ainda й melhor usar esta callback
pawn Код:
public OnRconLoginAttempt(ip[], password[], success)
Re: Respuesta: Anti-rcon nгo autorizado -
[XPG]MarlonCS - 09.08.2012
Quote:
Originally Posted by [JD]BlackFire
mas ainda й melhor usar esta callback
pawn Код:
public OnRconLoginAttempt(ip[], password[], success)
|
Nгo conhecia, e tbm nгo sei usar.