HasBeenPickedUp

Revision as of 18:00, 11 June 2013 by imported>QQuix (Correcting my previous edit)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

A command for Oblivion Script Extender

Syntax:

(pickedUp:bool) reference.HasBeenPickedUp
(pickedUp:bool) reference.IsTaken

Returns true (1) if the calling reference is currently inactive due to having been picked up by an actor or otherwise transferred to an inventory.

NotesEdit

  • It is no use trying to use this function on dynamic references because the moment the reference is picked up, its FormID becomes invalid and, of course, using this function (or any other) on an invalid FormID will not return anything useful.
  • This function does not work on implicit references, i.e. it is required to provide a reference before the dot (notice that the function is described as reference.HasBeenPickedUp and not as [reference].HasBeenPickedUp)

See AlsoEdit