Clear out experimental .35 files

Clear out experimental .35 files
This commit is contained in:
Jaysyn904
2024-02-11 13:04:14 -05:00
parent 2112b92e24
commit 618cd42b82
22356 changed files with 0 additions and 1248956 deletions

View File

@@ -1,34 +0,0 @@
#include "prc_sp_func"
#include "prc_alterations"
void main()
{
object oPC = OBJECT_SELF;
int nSpellID = GetLocalInt(oPC, "EF_SPELL_CURRENT");
string sArray = GetLocalString(oPC, "EF_SPELL_CURRENT");
int nUses = sArray == "" ? GetHasSpell(nSpellID, oPC) :
persistant_array_get_int(oPC, sArray, nSpellID);
if(!nUses)
{
FloatingTextStringOnCreature("You have no more uses of the chosen spell", oPC, FALSE);
return;
}
// expend spell use
if(sArray == "")
{
DecrementRemainingSpellUses(oPC, nSpellID);
}
else
{
nUses--;
persistant_array_set_int(oPC, sArray, nSpellID, nUses);
}
int nLevel = GetLocalInt(oPC, "EF_SPELL_CURRENT_LVL");
effect eHeal = EffectHeal(nLevel);
ApplyEffectToObject(DURATION_TYPE_INSTANT, eHeal, oPC);
}