10.04.2012, 22:50
Eu achei um tуpico de ban temporario o link esta abaixo:
https://sampforum.blast.hk/showthread.php?tid=313021
Mas nгo й bem como eu queria o comando, caso possam me ajudar a adptar o codigo abaixo com as funзхes eu agradeзo,
Codigo:
Funзхes:
https://sampforum.blast.hk/showthread.php?tid=313021
Mas nгo й bem como eu queria o comando, caso possam me ajudar a adptar o codigo abaixo com as funзхes eu agradeзo,
Codigo:
pawn Код:
if(strcmp(cmd, "/ban", true) == 0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /ban [id] [motivo]");
return true;
}
giveplayerid = ReturnUser(tmp);
if (PlayerInfo[playerid][pAdmin] >= 4)
{
if(admtrampando[playerid] < 1)
{
SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/jogar)");
return true;
}
if(IsPlayerConnected(giveplayerid))
{
if(giveplayerid != INVALID_PLAYER_ID)
{
if(PlayerInfo[giveplayerid][pAdmin] >= 1340)
{
SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo pode banir um Admin Dono !");
return true;
}
GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[100];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /ban [id] [motivo]");
return true;
}
getdate(year, month, day);
if(admtrampando[playerid] == 1 && admhide[playerid] == 1)
{
format(string, sizeof(string), "AdmCmd: %s foi banido pelo Sistema(Modo Cia), Motivo: %s (%d-%d-%d)", giveplayer,(result),day,month,year);
BanLog(string);
format(string, sizeof(string), "AdmCmd: %s foi banido pelo Sistema, Motivo: %s", giveplayer,(result));
SendClientMessageToAll(COLOR_LIGHTRED, string);
}
else
{
format(string, sizeof(string), "AdmCmd: %s foi banido por %s, Motivo: %s (%d-%d-%d)", giveplayer, sendername, (result),day,month,year);
BanLog(string);
format(string, sizeof(string), "AdmCmd: %s foi banido por %s, Motivo: %s", giveplayer, sendername, (result));
SendClientMessageToAll(COLOR_LIGHTRED, string);
}
SendClientMessage(giveplayerid, COLOR_WHITE, "|________________[ Instruзхes para revisгo de Ban ]________________|");
SendClientMessage(giveplayerid, COLOR_YELLOW2, "Tire uma SS da tela apertando F8 imediatamente apуs ser banido");
SendClientMessage(giveplayerid, COLOR_YELLOW2, "E acesse o nosso forum: www.brasiluniversallife.forumeiro.info");
SendClientMessage(giveplayerid, COLOR_LIGHTRED, "Atenзгo: Vocк sу serб desbanido caso for inocente");
PlayerInfo[giveplayerid][pBan] = 1;
SBan(giveplayerid, result, PlayerName(playerid));
return true;
}
}
}
else
{
SendClientMessage(playerid, COLOR_GRAD1, " Esse nгo й um jogador ativo.");
}
}
return true;
}
pawn Код:
stock BanirTemp(pid, motivo[] = "S/M", dias)
{
new N[50], d,m,a; GetPlayerName(pid, N, 24); getdate(a,m,d);
strcat(N,".BAN");
#if defined _dini_included
dini_Create(N);
dini_IntSet(N, "Dias", d+dias);
dini_Set(N, "Motivo", motivo);
#endif
Kick(pid);
return 1;
}
// Adicione no comeзo do OnPlayerConnect
public OnPlayerConnect(playerid)
{
new N[50], d,m,a; GetPlayerName(playerid, N, 24); getdate(a, m, d);
strcat(N,".BAN");
#if defined _dini_included
if(fexist(N))
{
if(dini_Int(N, "Dias") < d)
{
new str[128];
format(str, sizeof(str),"Faltam %d dias para vocк ser desbanido. ( Motivo: %s )", dini_Int(N, "aTDia"), dini_Get(N, "Motivo"));
SendClientMessage(playerid, -1, str);
Kick(playerid);
}
if(dini_Int(N, "Dias") == d)
{
fremove(N);
}
}
#endif
return 1;
}