I need a startround script! When start the server or map then the next write: Example:
Hudtxt blabla Counter terrorist: CTSCORES
Hudtxt blabla Terrorists: TSCORES
Or zombie;survivor!
Ty in advance :d
addhook("startround","showscores") function showscores() 	parse("hudtxt 1 \"©255000000T Score:"..game("score_t").."\" 200 5") 	parse("hudtxt 2 \"©000000255CT Score:"..game("score_ct").."\" 400 5") end showscores()
addhook("startround" , "showscores")
addhook("startround" , "showscores") function showscores() parse("hudtxt 1 \"©255000000T Score:"..game("score_t").."\" 200 5") parse("hudtxt 2 \"©000000255CT Score:"..game("score_ct").."\" 400 5") end showscores()
addhook ("startround", "showscores") função showscores () if player(id,"exists") then parse ("hudtxt2 "..id.." 1 \ T Score ©255000000".. jogo (" score_t ") .." \ "200 5") parse ("hudtxt2 "..id.." 2 \ CT Score ©000000255".. jogo (" score_ct ") .." \ "400 5") end end showscores ()
addhook("startround","showscores") function showscores() 	parse("hudtxt 1 \"©255000000T Score:"..game("score_t").."\" 200 5") 	parse("hudtxt 2 \"©000000255CT Score:"..game("score_ct").."\" 400 5") end showscores()
ts = 0 cts = 0 addhook("kill","lol") function lol(id) 	if player(id,"team")==1 then ts = ts+1 end 	if player(id,"team")==2 then cts = cts+1 end 	parse("hudtxt 1 \"©255000000T Score:"..ts.."\" 200 5") 	parse("hudtxt 2 \"©000000255CT Score:"..cts.."\" 400 5") end
addhook("startround","showscores") function showscores() 	parse("hudtxt 1 \"©255000000T Score:"..game("score_t").."\" 200 5") 	parse("hudtxt 2 \"©000000255CT Score:"..game("score_ct").."\" 400 5") end showscores()