Right, Danny made a script, and gave me a function so I could use it on mine (Everything works, except when I try to use this);
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
lvl = checkLevel(player(id,"usgn")) 	if lvl >= 3 then -- I put it in this; addhook("serveraction","wall") function wall(id,act) lvl = checkLevel(player(id,"usgn")) 	if lvl >= 3 then 		if act == 2 then 			menu(id,"Admin menu,Server settings,Spawn building,Spawn NPC,Gear,Extra") 		elseif act==3 then 			if wallhack[id] == 1 then 				msg2(id,"©181181181<Wallhack off>") 				wallhack[id] = 0 			elseif wallhack[id] == 0 then 				msg2(id,"©181181181<Wallhack on>") 				wallhack[id] = 1 			end 		end 	end 	if act==1 then 		menu(id,"Player menu,Buy menu,Drop money,More") 	end end
Any idea's?
edited 1×, last 09.11.11 05:56:30 pm