Difference between revisions of "Combat GetAttackHand"
From Dragon Age Toolset Wiki
Mouser9169 (Talk | contribs) m |
Mouser9169 (Talk | contribs) m |
||
| Line 1: | Line 1: | ||
| − | Called by: | + | Called by: |
| + | |||
| + | Parameters: | ||
| + | |||
| + | Variables: | ||
| + | |||
| + | Used for: | ||
<dascript> | <dascript> | ||
Revision as of 04:39, 1 August 2011
Called by:
Parameters:
Variables:
Used for:
/** * @brief Determine which hand to use for an attack * * Only applicable in dual weapon style. Returns which hand to use for the next attack * * @returns 0 - main hand, 1 - offhand * * @author Georg Zoeller * **/ int Combat_GetAttackHand(object oCreature = OBJECT_SELF) { int nHand = 0; if (GetWeaponStyle(oCreature) == WEAPONSTYLE_DUAL) { nHand = GetLocalInt(oCreature, COMBAT_LAST_WEAPON); SetLocalInt(oCreature, COMBAT_LAST_WEAPON, !nHand); } return nHand; }
Category: Combat_H