anyway here's the code
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
26
27
28
29
30
31
32
33
34
35
36
37
38
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
addhook("menu","HelpMenu") function HelpMenu(id,title) 	if title=="!Teleport" then 		msg2(id,"©000255000!Teleport [X] [Y] -- Teleports You To ..x.. ..y.. On The Map"); end 	if title=="!Earthquake" then 		msg2(id,"©000255000!Earthquake [LENGTH] -- Make an Haiti earthquake!"); end 	if title=="!Speed" then 		msg2(id,"©000255000!Speed [Value] -- Gives You a Speed with Value-XX"); end 	if title=="!Ban" then 		msg2(id,"©000255000!Ban [ID] [REASON] -- Ban a Player"); end 	if title=="!Jump" then 		msg2(id,"©000255000!Jump [ID] -- Bring yourself to Player[ID]"); end 	if title=="!Explode" then 		msg2(id,"©000255000!Explode [DMG] -- Spawn explosion"); end 	if title=="!Bring" then 		msg2(id,"©000255000!Bring [ID] -- Bring Player[ID] to you"); end 	if title=="!Equip" then 		msg2(id,"©000255000!Equip [ID] -- Equip a Weapon"); end 	if title=="!Kick" then 		msg2(id,"©000255000!Kick [ID] [REASON] -- Kick a Player"); end 	if title=="!Help" then 		msg2(id,"©000255000!Help -- To show this help menu"); end 	if title=="!Spawnitem" then 		msg2(id,"©000255000!Spawnitem [ITM] -- Spawn an Item"); end 	if title=="!Broadcast" then 		msg2(id,"©000255000!Broadcast [MSG] -- Broadcast a message"); end 	if title=="!Setmaxhealth" then 		msg2(id,"©000255000!Setmaxhelth -- set yourself to max health"); end 	if title=="!@Say" then 		msg2(id,"©000255000@Say [MSG] -- Say a message with the repective privilege"); end 			if title=="Next" then 		menu(id,"!Help,!Spawnitem,!Broadcast,@Say"); end end function AdminHelp(id) 	menu(id,"Help Menu,!Teleport,!Earthquake,!Speed,!Ban,!Jump,!Explode,!Bring,!Equip,Next") end