IsFurnitureInUse - ObjectReference
Jump to navigation
Jump to search
Member of: ObjectReference Script
Checks to see if any furniture marker on this object is in use, optionally ignoring markers that are reserved, but not currently used.
Syntax[edit | edit source]
bool Function IsFurnitureInUse(bool abIgnoreReserved = false) native
Parameters[edit | edit source]
- abIgnoreReserved: Whether to ignore reserved markers or not.
- Default: False
Return Value[edit | edit source]
If any marker on the furniture is in use. (Or reserved, if we aren't ignoring reservations)
Examples[edit | edit source]
; Is the bed in use (or someone has reserved it)?
if Bed.IsFurnitureInUse()
Debug.Trace("Bed is being used")
endIf
; Is the bed actually in use (ignoring reservations)?
if Bed.IsFurnitureInUse(true)
Debug.Trace("Bed is actually being used")
endIf