Initial upload.

Adding base PRC 4.19a files to repository.
This commit is contained in:
Jaysyn904
2022-10-07 13:51:24 -04:00
parent 646eb01834
commit 1662218bb4
22441 changed files with 1274376 additions and 0 deletions

32
trunk/smp/phs_s_ragec.nss Normal file
View File

@@ -0,0 +1,32 @@
/*:://////////////////////////////////////////////
//:: Spell Name Rage: AOE Heartbeat
//:: Spell FileName PHS_S_RageC
//:://////////////////////////////////////////////
//:: Spell Effects Applied / Notes
//:://////////////////////////////////////////////
AOE heartbeat.
The AOE doesn't do anything except for check the validity of its creator,
and the correct variables.
1 If the variable doesn't exsist, then it will first delete all the people
in the array and then remove itself.
2 If the creator isn't valid, it will remove all effects from the spell
created by invalid creators and then delete itself.
//:://////////////////////////////////////////////
//:: Created By: Jasperre
//::////////////////////////////////////////////*/
#include "PHS_INC_CONCENTR"
void main()
{
// Get creator and us
object oSelf = OBJECT_SELF;
object oCaster = GetAreaOfEffectCreator(oSelf);
int nSpell = PHS_SPELL_RAGE;
// Do the function
PHS_ConcentrationAOEHeartbeat(oSelf, oCaster, nSpell);
}