Thank you!
Forum
CS2D Scripts How not to let the other team equip themselvesHow not to let the other team equip themselves
2 replies 1
Thank you!
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
addhook("walkover","walkover")	 function walkover(id) 	if player(id, "team") == 2 then 	return 1 else 	return 0 	end end
1