Difference between revisions of "Combat GetAttackType"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(Created page with "Called by: <dascript> // ----------------------------------------------------------------------------- // Return the type of the current attack based on the weapon in the main ha...")
 
m
Line 1: Line 1:
Called by:
+
Called by:
 +
 
 +
Parameters:
 +
 
 +
Variables:
 +
 
 +
Used for:
 
<dascript>
 
<dascript>
 
// -----------------------------------------------------------------------------
 
// -----------------------------------------------------------------------------

Revision as of 05:41, 1 August 2011

Called by:

Parameters:

Variables:

Used for:

// -----------------------------------------------------------------------------
// Return the type of the current attack based on the weapon in the main hand
// used only in command_pending...
// -----------------------------------------------------------------------------
int Combat_GetAttackType(object oAttacker, object oWeapon);
int Combat_GetAttackType(object oAttacker, object oWeapon)
{
    if (IsUsingRangedWeapon(oAttacker, oWeapon))
    {
        return ATTACK_TYPE_RANGED;
    }
    else
    {
        return ATTACK_TYPE_MELEE;
    }
}

Category: Combat_H