Re: How to auto kick who is using proxy?
Deleted Userbut i cant do this =(
Scripts
How to auto kick who is using proxy?
Re: How to auto kick who is using proxy?
rcon hook work for antihack?
Yates has written
MikuAuahDark has written
Apache uwu has written
mp_maxclientsip 2 or 3
mp_maxrconfails 1 or 2
sv_usgnonly 1
banip 36.21.*.*addhook("rcon","_rcon")
function _rcon(cmds,id,ip,port)
	if ip==115.124.67.178 then
		return 0
	else
		return 1
	end
end
maybe work because im not test it
KagamineLen has written
DannyDeth has written
MikuAuahDark has written
Infinite Rain has writtenadminlist = {XXXXX}
bannedusgns = {}
addhook('join', 'join_hook')
addhook('say', 'say_hook')
function join_hook(id)
	for n, w in ipairs(bannedusgns) do
		if w == player(id, 'usgn') then
			parse('kick '.. id ..' "Becouse he is bitch!"')
		end
	end
end
function say_hook(id, text)
	for n, w in ipairs(adminlist) do
		if w == player(id, 'usgn') then
			if text:sub(1, 8) == '!banusgn' then
				table.insert(bannedusgns, player(tonumber(text:sub(10))), 'usgn')
				parse('kick '.. tonumber(text:sub(10)) ..' "Becouse he is bitch!"')
			return 1
			end
		end
	end
end
DannyDeth has written
Re: How to auto kick who is using proxy?
Infinite Rain has written
Re: How to auto kick who is using proxy?
Infinite Rain has written
Are you forgot about that?
Re: How to auto kick who is using proxy?
dizziness has written
KagamineLen has written
Parallel_Man has written
Infinite Rain has written
dizziness has written
MikuAuahDark has writtenkick=0
kickid=0		-- add this two code before hook
addhook("second","second_hook")		-- add this after join hook
function second_hook()
	if kick==1 then
		parse("kick "..kickid)
		kick=0
		kickid=0
	end
end
	if name=="Egypt" then
	kick=1
	kickid=id end			-- add this at join hook after msg
Apache uwu has written