PRC8/nwn/nwnprc/trunk/scripts/wol_t_blackrzr.nss
Jaysyn904 d87fe14826 Further file organization
Further file organization
2023-08-23 22:11:00 -04:00

20 lines
469 B
Plaintext

//::///////////////////////////////////////////////
//:: Name Blackrazor test script
//:: FileName wol_t_blackrazor
//:://////////////////////////////////////////////
/*
Base attack bonus +3
*/
#include "prc_inc_template"
void main()
{
object oPC = OBJECT_SELF;
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_CONTINUE);
if(4 > GetBaseAttackBonus(oPC))
{
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
}
}