28.06.2017, 04:00
Hi there,
I've been trying to make a range ban command where it automatically removes the last few digits from the IP and ban it, but I've been stuck at how can I remove the last few digits. I've designed a code from what I've got in my brain.
Current code:
New code design:
P.S: I've been away from SA-MP a little bit.
I've been trying to make a range ban command where it automatically removes the last few digits from the IP and ban it, but I've been stuck at how can I remove the last few digits. I've designed a code from what I've got in my brain.
Current code:
PHP код:
GetPlayerIp(player1, ip, sizeof(ip));
strdel(ip, strlen(ip)-2, strlen(ip));
format(ip, 25, "%s**", ip);
format(ip, 25, "banip %s", ip);
SendRconCommand(ip);
PHP код:
new period;
GetPlayerIp(player1, ip, sizeof ip);
for(new i; i < 15; i++)
{
if(strfind(ip, ".", true)) period += 1;
}
if(period >= 3)
{
// ??
}