Difference between revisions of "GetCombatState - Actor"
Jump to navigation
Jump to search
imported>Jlundin (Created page with 'Category:Scripting Category:Papyrus '''Member of:''' Actor Script Gets the actor's current combat state. == Syntax == <source lang="papyrus"> int Function GetCombat…') |
imported>Xander9009 (Added an example using the player.) |
||
Line 25: | Line 25: | ||
Debug.Trace("Careful! That filthy pirate is looking around...") | Debug.Trace("Careful! That filthy pirate is looking around...") | ||
endIf | endIf | ||
</source> | |||
<source lang="papyrus"> | |||
;Is the player in combat? | |||
If ( Game.GetPlayer().GetCombatState() == 0 ) ;State is 0, so player is peaceful | |||
Debug.Notification("Player is not in combat") | |||
Else ;State is not 0, so player is not peaceful | |||
Debug.Notification("Player is in combat") | |||
EndIf | |||
</source> | </source> | ||
== See Also == | == See Also == | ||
*[[Actor Script]] | *[[Actor Script]] |
Revision as of 11:05, 3 November 2013
Member of: Actor Script
Gets the actor's current combat state.
Syntax
int Function GetCombatState() native
Parameters
None.
Return Value
The actor's current combat state, which is one of the following values:
- 0: Not in combat
- 1: In combat
- 2: Searching
Examples
; Is the pirate searching?
if (FilthyPirate.GetCombatState() == 2) ; 2 is "search"
Debug.Trace("Careful! That filthy pirate is looking around...")
endIf
;Is the player in combat?
If ( Game.GetPlayer().GetCombatState() == 0 ) ;State is 0, so player is peaceful
Debug.Notification("Player is not in combat")
Else ;State is not 0, so player is not peaceful
Debug.Notification("Player is in combat")
EndIf