REO-EE/_module/nss/cbt_char_inc.nss
Jaysyn904 f82740bbbd Initial commit
Initial commit
2024-02-22 13:22:03 -05:00

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;
}