Further file organization
Further file organization
This commit is contained in:
48
nwn/nwnprc/trunk/newspellbook/tob_jpm_empstr.nss
Normal file
48
nwn/nwnprc/trunk/newspellbook/tob_jpm_empstr.nss
Normal file
@@ -0,0 +1,48 @@
|
||||
#include "prc_sp_func"
|
||||
|
||||
void main()
|
||||
{
|
||||
int nEvent = GetRunningEvent();
|
||||
object oInitiator = OBJECT_SELF;
|
||||
object oItem;
|
||||
|
||||
// We aren't being called from any event, perform setup
|
||||
if(nEvent == FALSE)
|
||||
{
|
||||
oItem = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oInitiator);
|
||||
|
||||
// Has to be a melee weapon
|
||||
if(GetWeaponRanged(oItem))
|
||||
{
|
||||
FloatingTextStringOnCreature("You must use a melee weapon for this ability", oInitiator, FALSE);
|
||||
return;
|
||||
}
|
||||
|
||||
if(GetLocalInt(oInitiator, "JPM_Empowering_Strike_Expended"))
|
||||
{
|
||||
FloatingTextStringOnCreature("*Empowering Strike Already Expended*", oInitiator, FALSE);
|
||||
return;
|
||||
}
|
||||
|
||||
if(!TakeSwiftAction(oInitiator))
|
||||
return;
|
||||
|
||||
|
||||
if(DEBUG) DoDebug("prc_jpm_empstr: SuddenMetaEmpower: " + IntToString(GetLocalInt(oInitiator, "SuddenMetaEmpower")));
|
||||
|
||||
SetLocalInt(oInitiator, "JPM_Empowering_Strike_Expended", TRUE);
|
||||
FloatingTextStringOnCreature("* Empowering Strike Expended *", oInitiator, FALSE);
|
||||
|
||||
// The OnHit
|
||||
IPSafeAddItemProperty(oItem, ItemPropertyOnHitCastSpell(IP_CONST_ONHIT_CASTSPELL_ONHIT_UNIQUEPOWER, 1), 12.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE);
|
||||
AddEventScript(oItem, EVENT_ITEM_ONHIT, "tob_jpm_empstr", TRUE, FALSE);
|
||||
}
|
||||
else if(nEvent == EVENT_ITEM_ONHIT)
|
||||
{
|
||||
oItem = GetSpellCastItem();
|
||||
SetLocalInt(oInitiator, "SuddenMetaEmpower", TRUE);
|
||||
FloatingTextStringOnCreature("* Empowering Strike Hit *", oInitiator, FALSE);
|
||||
RemoveSpecificProperty(oItem, ITEM_PROPERTY_ONHITCASTSPELL, IP_CONST_ONHIT_CASTSPELL_ONHIT_UNIQUEPOWER, 0, 1, "", -1, DURATION_TYPE_TEMPORARY);
|
||||
RemoveEventScript(oItem, EVENT_ITEM_ONHIT, "tob_jpm_empstr", TRUE, FALSE);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user