Updated Release Archive

Updated Release Archive.  Fixed Mage-killer prereqs.  Removed old LETO & ConvoCC related files.  Added organized spell scroll store.  Fixed Gloura spellbook. Various TLK fixes.  Reorganized Repo.  Removed invalid user folders. Added DocGen back in.
This commit is contained in:
Jaysyn904
2023-08-22 10:00:21 -04:00
parent 3acda03f30
commit 5914ed2ab5
22853 changed files with 57524 additions and 47307 deletions

View File

@@ -0,0 +1,41 @@
/*:://////////////////////////////////////////////
//:: Spell Name Delayed Blast Fireball: On Enter
//:: Spell FileName PHS_S_DelayedBFA
//:://////////////////////////////////////////////
//:: Spell Effects Applied / Notes
//:://////////////////////////////////////////////
Uses the Bioware AOE.
This, if moved nearby to, will auto-explode.
The caster can of course choose the duration - be it 1 heartbeat (or instant)
to 5 heartbeats (or 5 rounds).
The heartbeat script and OnEnter scripts do the stuff.
OnEnter: Sets a local variable to activate the blast next hearbeat.
//:://////////////////////////////////////////////
//:: Created By: Jasperre
//::////////////////////////////////////////////*/
#include "PHS_INC_SPELLS"
void main()
{
// Check AOE status
if(!PHS_CheckAOECreator()) return;
// If we haven't set "We've been entered" set it if the target is not
// in PvP lands.
if(!GetLocalInt(OBJECT_SELF, "PHS_DELAYED_BLAST_FIREBALL_ENTERED"))
{
// Declare major variables
object oTarget = GetEnteringObject();
object oCreator = GetAreaOfEffectCreator();
if(!GetIsReactionTypeFriendly(oTarget, oCreator))
{
SetLocalInt(OBJECT_SELF, "PHS_DELAYED_BLAST_FIREBALL_ENTERED", TRUE);
}
}
}