towel_bin
Vars | |
amount | How many towels there is in the bin (separate from the towels list because we won't instanciate 10 towels per bin in existance). |
---|---|
hidden | An item that might be hidden between some towels in the bin. |
towels | The list of already-instanciated towels, for when people put them back in it. |
Procs | |
take_towel_out | Helper proc for taking a towel out of the bin, to reduce code repetitions.
Intended to only be called by attack_hand() and attack_tk() . |
Var Details
amount
How many towels there is in the bin (separate from the towels list because we won't instanciate 10 towels per bin in existance).
hidden
An item that might be hidden between some towels in the bin.
towels
The list of already-instanciated towels, for when people put them back in it.
Proc Details
take_towel_out
Helper proc for taking a towel out of the bin, to reduce code repetitions.
Intended to only be called by attack_hand()
and attack_tk()
.
Arguments:
- user - Mob that's trying to take a towel out.
- tk - Is the user trying to do this using telekinesis? Defaults to
FALSE
.