GetCombatStyle - ActorBase
Revision as of 07:26, 4 June 2012 by imported>Sagitarius22 (→See Also)
SKSE Member of: ActorBase Script
Get the combat style of this actor. (This function requires SKSE)
Syntax
Form Function GetCombatStyle() native
Parameters
None
Return Value
Returns the ActorBase's combat style
Notes
- SKSE does not provide CombatStyle properties as of yet, you may need to use formlists
Examples
FormList Property OneHandList Auto
ActorBase pActorBase = Game.GetPlayer().GetActorBase()
if OneHandList.HasForm(pActorBase.GetCombatStyle())
Debug.MessageBox("Woaw, player, you're really good with one hand")
endif
FormList Property CombatStyleList Auto
Int Property Onehand = 0 Auto
Int Property TwoHands = 1 Auto
; etc
ActorBase pActorBase = Game.GetPlayer().GetActorBase()
if pActorBase.GetCombatStyle() == (CombatStyleList.GetAt(OneHand) as CombatStyle)
; player's combat style is one hand
elseif pActorBase.GetCombatStyle() == (CombatStyleList.GetAt(TwoHands) as CombatStyle)
; etc...