Difference between revisions of "IsPlayable"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Odessa
(Created page with "{{Function |origin = NVSE |summary = Returns true if the specified object has the playable flag. Always returns false if the item can not be flagged as playable in the edito...")
 
imported>Odessa
m
Line 17: Line 17:


==See Also==
==See Also==
*[[SetIsPlayable]]
*[[IsQuestItem]]
*[[IsQuestItem]]
[[Category:Functions_(NVSE)]]
[[Category:Functions_(NVSE)]]

Revision as of 10:48, 16 July 2014

< [[::Category:Functions|Category:Functions]]

A function added by the New Vegas Script Extender.

Description

Returns true if the specified object has the playable flag. Always returns false if the item can not be flagged as playable in the editor.

Syntax

[help]
(bool) IsPlayable Item:Object

Example

if IsPlayable SomeItem
    ; The item is playable
endif

See Also