Now, I've created a shared/global counter.
I don't know how to create so that it is for each individual.
P.S. Only CT's get that counter, since T's are all bots.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
P = {}
P.points = 20
addhook("startround","add_counter")
function add_counter(mode)
	parse('hudtxt 1 "Points: '..P.points..'" 40 40')
end
addhook("kill","for_points")
function for_points(killer,victim,weapon,x,y,killoid,assistant)
	if player(killer,"team") == 2 then
	P.points = P.points + 1
	parse('hudtxt 1 "Points: '..P.points..'" 40 40')
	end
end
Points for individual kills.
1 
Offline
GeoB99