here
Please help me guys
And oh the CREDITS
belongs to YOU! please
help me
addhook("serveraction","_serveraction") addhook("menu","_menu") addhook("startround","_startround") addhook("endround","_endround") addhook("second","_second") parse("mp_autoteambalance 0") function _serveraction(id,action) 	if action==1 then 		menu(id,"Buy Menu,Wrench|$10000,Macket|$16000") 	end end function _menu(id,title,button) 	if title=="Buy Menu" then 		if button==1 then 			if player(id,"money")>=10000 then 				parse("equip "..id.." 74") 				parse("setweapon "..id.." 74") 				parse("setmoney "..id.." "..player(id,"money")-10000) 				msg2(id,string.char(169).."000255500You have purchased the wrench.") 			else 				msg2(id,string.char(169).."255000000You do not have enough money to purchase the wrench.") 			end 		elseif button==2 then 			if player(id,"money")>=16000 then 				parse("equip "..id.." 69") 				parse("setweapon "..id.." 69") 				parse("setmoney "..id.." "..player(id,"money")-16000) 				msg2(id,string.char(169).."000255500You have purchased the macket.") 			else 				msg2(id,string.char(169).."255000000You do not have enough money to purchase the macket.") 			end 		end 	end end function _startround() 	count_down=10 end function _second() 	if count_down~=nil then 		if count_down==-1 then 			t=player(0,"team2")[math.random(0,#player(0,"team2"))] 			msg(string.char(169).."255255255"..player(t,"name").." is the first ZOMBIE@C") 			parse("maket "..t) 			count_down=nil 		else 			msg(string.char(169).."255255255"..count_down.."@C") 			count_down=count_down-1 		end 	end end function _endround() 	for _,id in ipairs(player(0,"team1")) do 		parse("makect "..id) 	end end _startround()
function _serveraction(id,action) if action==1 then if player(id,"team")==2 then menu(id,"Buy Menu,Wrench|$10000,Machete|$16000") end end end
addhook("serveraction","a") function a(id,b) 	if b == 1 and player(id,"team")==1 then 		menu(id,"Buy Menu,machete,m4a1") 	elseif b == 2 and player(id,"team")==2 then 		menu(id,"Buy Menu Ct,machete,m4a1") 	end end addhook("startround","_startroun") function _startround() count_down=10 end addhook("second","_second") function _second() if count_down~=nil then if count_down==-1 then t=player(0,"team2")[math.random(0,#player(0,"team2"))] msg(string.char(169).."255255255"..player(t,"name").." Is First Zombie Go No Die Ct!@C") parse("maket "..t) count_down=nil else msg(string.char(169).."255255255"..count_down.."@C") count_down=count_down-1 end end end addhook("endround","_endround") function _endround() if player(id,"team")==1 then parse("makect "..id) end end