30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
/*******************************************************************************
|
|
Script : cbt_ovr_char_inc
|
|
Name : Combat Override Attack Include
|
|
Purpose : include script for combat override system (attack functions)
|
|
Author : Quixsilver
|
|
Modified : May 30, 2010
|
|
This file is licensed under the terms of the
|
|
GNU GENERAL PUBLIC LICENSE (GPL) Version 2
|
|
*******************************************************************************/
|
|
|
|
/******************************** INCLUDES ************************************/
|
|
#include "x0_i0_position"
|
|
|
|
/******************************** CONSTANTS ***********************************/
|
|
|
|
/******************************** VARIABLES ***********************************/
|
|
|
|
/*************************** FUNCTION PROTOTYPES ******************************/
|
|
// Gets oAttacker's attack bonus with oWeapon
|
|
int GetAttackBonus(object oAttacker, object oWeapon);
|
|
|
|
/************************* FUNCTION IMPLEMENTATION ****************************/
|
|
int GetAttackBonus(object oAttacker, object oWeapon)
|
|
{
|
|
int iAB = GetBaseAttackBonus(oAttacker);
|
|
// Check for weapon skills and modifiers
|
|
|
|
return iAB;
|
|
}
|