1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
addgamemode("mymod","My OWN MOD")
function mymod_gm_draw()
	-- Do nothing
end
function mymod_gm_update() --this function is importent!
	
	if getframe()==1 then ---checks if the round started
	--your code here
	end
end
function mymod_gm_playerdamage()
	
end