PRC8/nwn/nwnprc/trunk/psionics/psi_sk_throwmbld.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
Updated AMS marker feats.  Removed arcane & divine marker feats.  Updated Dread Necromancer for epic progression. Updated weapon baseitem models.  Updated new weapons for crafting & npc equip.
 Updated prefix.  Updated release archive.
2024-02-11 14:01:05 -05:00

73 lines
2.3 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Soulknife: Throw Mindblade
//:: psi_sk_throwmbld
//::///////////////////////////////////////////////
/** @file Soulknife: Throw Mindblade
Sets Mindblade type to ranged, runs the blade
creation script and starts attacking.
Cannot be used if not already wielding a
mindblade.
@author Ornedan
@date Created - 04.04.2005
@date Modified - 01.09.2005
*/
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
#include "prc_inc_spells"
#include "psi_inc_soulkn"
void Cleanup(object oPC)
{
DeleteLocalInt(oPC, THROW_MBLD_USED);
object oWeapon = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC);
// If any thrown mindblades still remain, delete them
if(GetTag(oWeapon) == "prc_sk_mblade_th")
MyDestroyObject(oWeapon);
}
void main()
{
object oPC = OBJECT_SELF;
object oTarget = PRCGetSpellTargetObject();
if(GetLocalInt(oPC, THROW_MBLD_USED))
{// "You cannot use this feat more than once per round."
SendMessageToPCByStrRef(oPC, 16824496);
return;
}
if(GetStringLeft(GetTag(GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC)), 14) != "prc_sk_mblade_")
{// "You must have a mindblade manifested to use this feat."
SendMessageToPCByStrRef(oPC, 16824509);
return;
}
if(!spellsIsTarget(oTarget, SPELL_TARGET_STANDARDHOSTILE, oPC))
{// "Due to PvP settings, you cannot attack this target."
SendMessageToPCByStrRef(oPC, 16824410);
return;
}
// Wipe previous actions
AssignCommand(oPC, ClearAllActions());
// Create and queue equipping of the throwable blades
int nPrevShape = GetPersistantLocalInt(oPC, MBLADE_SHAPE);
SetPersistantLocalInt(oPC, MBLADE_SHAPE, MBLADE_SHAPE_RANGED);
ExecuteScript("psi_sk_manifmbld", oPC);
// Queue attacking
DelayCommand(0.2f, AssignCommand(oPC, ActionDoCommand(ActionAttack(oTarget))));
// Rather buggy atm
//DelayCommand(0.4f, AssignCommand(oPC, PerformAttackRound(oTarget, oPC, EffectVisualEffect(-1))));
// Return the old blade setting
SetPersistantLocalInt(oPC, MBLADE_SHAPE, nPrevShape);
// Set the lock on this feat
SetLocalInt(oPC, THROW_MBLD_USED, TRUE);
// Schedule unlocking and deletion of remaining throwables
DelayCommand(6.0f, Cleanup(oPC));
}