I want to know if they help me, I need that each 20 rounds will restart automatically. and if can have a Hudtxt that tell them rounds would be best, I need it, thanks to all
Forum
CS2D Scripts i need a luai need a lua
2 replies 1
I want to know if they help me, I need that each 20 rounds will restart automatically. and if can have a Hudtxt that tell them rounds would be best, I need it, thanks to all
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
rnd = 0 parse('hudtxt 0 "Round '..rnd..'" 320 64 1') addhook("startround","_startrnd") function _startrnd() 	rnd = rnd + 1 	parse('hudtxt 0 "Round '..rnd..'" 320 64 1') 	if rnd > 20 then 		parse("restart") 		rnd = 0 	end end
1