How not to let the other team equip themselves
2 replies



02.12.16 11:44:35 pm
So I want to know how I do not let the CT team equip themselves if a gun falls to the ground when the terrorist is killed.
Thank you!
Thank you!
I can make some oportunites but only me can make it.
To just not let the team ct pick up items from the ground.
Code:
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
function walkover(id)
if player(id, "team") == 2 then
return 1
else
return 0
end
end



