Forum
CS2D Scripts Wallhack When Press FWallhack When Press F
9 replies 1
>Players are rage quitting.
>All players hate the server.
>Turns into an admin fun server.
Servers are made to play.
And admins are made to rule the server, kick players and more (also playing too).
But you can do this if you wan't. I'm just trying to say what could go wrong.
Admin/mod comment
Quote removed. It makes no sense. / useigor ShouldBeNew has written
Oh you mean Fog Of War?
Ohhh god, no
Btw at topic: You have the script to wallhack right? Put it to flashlight hook.
What? Speak clearly, I cant understand you
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
adminlist = {1} addhook("flashlight","pressment") function pressment(id,s,rot,x,y) 	for n,usgn in pairs(adminlist) do 		if player(id,"usgn") == usgn then 			rot = math.rad( player(id,"rot")-90 ) 			x = player(id,"x") + math.cos(rot) * 12 			y = player(id,"y") + math.sin(rot) * 12 			parse("setpos "..id.." "..x.." "..y) 			break 		elseif n == #adminlist then 			msg2(id,"\169255000000You Dont Have Permission To WallHack!!") 		end 	end end
Ah yes, some addtional code. It loads file admin_wh.txt and put it's usgn to adminlist
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
do 	for line in io.lines("admin_wh.txt") do 		local u=tonumber(line) 		if u then 			table.insert(adminlist,u) 		end 	end end
Put code above after adminlst={1} at useigor code
1