06.07.2016, 16:20
1.He has DOSsed your forums,don't use free hosting again.
2.Put this command in your gamemode:
Use this command on the hackd if he comes in your server again,and it will show his IP,copy his ip and Track his location using his ip on (http://www.ip-tracker.org/) and report to police
3.Check your server log for rcon login attempts to see if he is using brute force attacks (rcon cracker) or not.
2.Put this command in your gamemode:
Code:
#include <zcmd> #include <sscanf2> CMD:ip(playerid, params[]) { new id, ip[16]; if(sscanf(params, "u", id)) return GameTextForPlayer(playerid, "~g~/ip~n~~w~[id]", 3000, 3); if(!IsPlayerConnected(id) || id == INVALID_PLAYER_ID) return GameTextForPlayer(playerid, "~g~Player is not connected", 3000, 3); GetPlayerIp(id, Name, sizeof(Name)); SendClientMessage(playerid, 0xFFFFFFFF, ip); return 1; }
3.Check your server log for rcon login attempts to see if he is using brute force attacks (rcon cracker) or not.