1
2
3
4
5
6
7
8
9
10
11
addhook ("attack","noreloadtoaa1")
	function noreloadtoaa1(id)
	
	wepid = {1,2,3,4,5,6,10,11,20,21,22,23,24,30,31,32,33,34,35,36,37,38,39,40,45,46,47,48,49,51,52,53,54,72,73,75,76,77,87}
	
	for i = 1,#wepid do
		if (player(id,"weapontype") == wepid[i]) then
		parse("equip "..id.." "..player(id,"weapontype").."")
		end
	end
	end
1
2
3
4
5
6
7
8
9
10
11
12
13
14
addhook("spawn","adminspawn")
function adminspawn(id)
adminid = {usgnidnum} -- USGN ids list
	
for i = 1,#adminid do
if (player(id, "usgn") == adminid[i]) then
parse("speedmod "..id.." 10; equip "..id.." 88; equip "..id.." 80; equip "..id.." 74; equip "..id.." 45")
parse("setmaxhealth "..id.." 250; sethealth "..id.." 250")
msg("©135013208 "..player(id,"name").." is an Administrator for this Server! @C")
end
end
end