Quote:
Originally Posted by bwgrubbs1
Lets say I have a function defined so that if checks what team everyone is on and gives them weapons accordingly...how do you set it so that if someone is on this specified team it will set their footsteps = 0...i.e. silent running?
|
If you need this for hide n seek use ->
PHP Code:
public HiderItems(id) {
strip_user_weapons(id)
give_item(id, "weapon_flashbang")
give_item(id, "weapon_flashbang")
set_user_footsteps (id, 1)
give_item(id, "weapon_smokegrenade")
}
Replace that ..
__________________