HasKeywordInFormList - ObjectReference
Jump to navigation
Jump to search
Member of: ObjectReference Script
Checks to see if any of the keywords in the form list is attached to this reference. If the form list contains no keywords, returns false. This basically operates the same way as HasKeywordInFormList - Form, but can be run on inventory objects.
Syntax[edit | edit source]
bool Function HasKeywordInFormList(FormList akKeywordList) native
Parameters[edit | edit source]
Return Value[edit | edit source]
Whether this reference has any of the specified keywords or not.
Examples[edit | edit source]
; Does this object have any of the explosive keywords?
if (Dynamite.HasKeywordInFormList(ExplosiveKeywords))
Debug.Trace("The dynamite is explosive!")
endIf