in my zombie mode server when new round start all zombies start changing team to ct , how can i stop it
Forum
CS2D Scripts stop zombies team changingstop zombies team changing
2 replies 1
in my zombie mode server when new round start all zombies start changing team to ct , how can i stop it
1
2
3
4
5
6
2
3
4
5
6
addhook("team","_team") function _team(id,t) 	if player(id,"team") == 1 and t == 2 then 		return 1 	end end
1