hey guys,
i was wondering if there is a way to make a Script which detects some hackers. Most of them do the same thing, God-Mode, Cheating Weapons, invisible and Teleport. So i thought of a little Script which detects if a player is e.g. in God-Mode and if so it kills him and writes a message in the chat with the name of the player.
Something like this (simplified):
Cheers
i was wondering if there is a way to make a Script which detects some hackers. Most of them do the same thing, God-Mode, Cheating Weapons, invisible and Teleport. So i thought of a little Script which detects if a player is e.g. in God-Mode and if so it kills him and writes a message in the chat with the name of the player.
Something like this (simplified):
Code:
_check = player allowDamage false;
if (_check) then {
player setDamage 1;
_message = format["%1 is using hacks",_hackerName];
[nil, nil, rTITLETEXT, _message, "PLAIN DOWN", 0] call RE;
};
Cheers