1
2
3
4
5
6
2
3
4
5
6
addhook("flagtake","flagNoTake")
function flagNoTake(team,x,y)
	if team == 2 then
	 return 1
	end
end
It works fine to stop the T's with this code:
1
2
3
4
5
6
2
3
4
5
6
addhook("flagtake","flagNoTake")
function flagNoTake(team,x,y)
	if team == 1 then
	 return 1
	end
end
flagtake hook issue?
1 
Offline
Apache uwu