There are 4 teams
Monsters
SWAT
SniperS
Guards
addhook('spawn','black') function black(id) 	if player(id,'team')==1 then 		menu(id,"T,T") 	end end addhook("menu","menus") function menus(id,t,b) 	if t=="T" then 	if b==1 then 		parse("equip "..id.." 45") 	end end addhook('spawn','black') function black(id) 	if player(id,'team')==2 then 		menu(id,"ct,T") 	end end addhook("menu","pop") function pop(id,t,b) 	if t=="ct" then 	if b==1 then 		parse("equip "..id.." 88") 	end end end end
addhook("serveraction","server") function server(id,a) 	if a==2 then 		menu(id,"blah,blah") 	end end