Drop - ObjectReference

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: ObjectReference Script

Drops this object from the container that it is in.

Syntax[edit | edit source]

Function Drop(bool abSilent = false) native

Parameters[edit | edit source]

  • abSilent: If true, will not display an on-screen "X dropped" message if the container is the player.
    • Default: False

Return Value[edit | edit source]

None.

Examples[edit | edit source]

; Drops us from the container we are in
Drop()


; Silently drops us from the container we are in
Drop(true)

See Also[edit | edit source]