BlockActivation - RefCollectionAlias
Revision as of 10:24, 3 December 2015 by imported>Plplecuyer (Created page with "Category:Scripting Category:Papyrus '''Member of:''' RefCollectionAlias Script Calls BlockActivation on all the references in t...")
Member of: RefCollectionAlias Script
Calls BlockActivation on all the references in the collection
SyntaxEdit
Function BlockActivation(bool abBlocked = true, bool abHideActivateText = false)
ParametersEdit
- abBlocked: Whether to block activation or not
- Default: True
- abHideActivateText: Whether to hide the activate text on the refs
- Default: False
Return ValueEdit
None.
ExamplesEdit
; Block activation on all the locked doors
LockedDoorsCollection.BlockActivation()
; Block activation on all the puzzle parts, and hide their activate text
LockedDoorsCollection.BlockActivation(abHideActivateText = true)