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.
		
			
				
	
	
		
			80 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
/*:://////////////////////////////////////////////
 | 
						|
//:: Spell Name Antiplant Shell : On Enter
 | 
						|
//:: Spell FileName PHS_S_AntiPlntSA
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
//:: Spell Effects Applied / Notes
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
    It is a mobile barrier, with a special AOE.
 | 
						|
 | 
						|
    Basically, if the caster is doing an ACTION_TYPE_MOVE_TO_POINT and someone
 | 
						|
    activates the OnEnter script, that creature makes the barrier collapse.
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
//:: Created By: Jasperre
 | 
						|
//::////////////////////////////////////////////*/
 | 
						|
 | 
						|
#include "PHS_INC_SPELLS"
 | 
						|
 | 
						|
// Moves back oTarget from oCaster, fDistance.
 | 
						|
void DoMoveBack(object oCaster, object oTarget, float fDistance, int iOriginalCommandable);
 | 
						|
 | 
						|
void main()
 | 
						|
{
 | 
						|
    // Declare major variables
 | 
						|
    object oCaster = GetAreaOfEffectCreator();
 | 
						|
    object oTarget = GetEnteringObject();
 | 
						|
 | 
						|
    // Stop if they are not an alive thing, or is plot, or is a DM
 | 
						|
    if(GetIsDM(oTarget) || GetPlotFlag(oTarget) || oTarget == oCaster) return;
 | 
						|
 | 
						|
    // If we are starting still, do not hedge back
 | 
						|
    if(GetLocalInt(oCaster, PHS_MOVING_BARRIER_START)) return;
 | 
						|
 | 
						|
    // Races:
 | 
						|
    //    plants
 | 
						|
    // But not:
 | 
						|
    //    anything else
 | 
						|
    if(!PHS_GetIsPlant(oTarget)) return;
 | 
						|
 | 
						|
    // Check if we are moving, and therefore cannot force it agsint soemthing
 | 
						|
    // that would be affected!
 | 
						|
    vector vVector = GetPosition(oCaster);
 | 
						|
    object oArea = GetArea(oCaster);
 | 
						|
    DelayCommand(0.1, PHS_MobileAOECheck(oCaster, PHS_SPELL_ANTIPLANT_SHELL, vVector, oArea));
 | 
						|
 | 
						|
    // The target is allowed a Spell resistance and immunity check to force
 | 
						|
    // thier way through the barrier
 | 
						|
    if(PHS_SpellResistanceCheck(oCaster, oTarget)) return;
 | 
						|
 | 
						|
    // Make sure they are not immune to spells
 | 
						|
    if(PHS_TotalSpellImmunity(oTarget)) return;
 | 
						|
 | 
						|
    // Distance we need to move them back is going to be 4M away, so out of the
 | 
						|
    // AOE.
 | 
						|
 | 
						|
    // Therefore, this is 4 - Current Distance.
 | 
						|
    float fDistance =  4.0 - GetDistanceBetween(oCaster, oTarget);
 | 
						|
 | 
						|
    // Debug stuff, obviously we'll need to move them at least 1 meter away.
 | 
						|
    if(fDistance < 1.0)
 | 
						|
    {
 | 
						|
        fDistance = 1.0;
 | 
						|
    }
 | 
						|
 | 
						|
    // Move the enterer back from the caster.
 | 
						|
    DoMoveBack(oCaster, oTarget, fDistance, GetCommandable(oTarget));
 | 
						|
}
 | 
						|
 | 
						|
// Moves back oTarget from oCaster, fDistance.
 | 
						|
void DoMoveBack(object oCaster, object oTarget, float fDistance, int iOriginalCommandable)
 | 
						|
{
 | 
						|
    // Get new location, fDistance, behind them.
 | 
						|
    location lMoveTo = PHS_GetLocationBehind(oCaster, oTarget, fDistance);
 | 
						|
 | 
						|
    // Move the target back to that point
 | 
						|
    SetCommandable(TRUE, oTarget);
 | 
						|
    // Assign commands
 | 
						|
    AssignCommand(oTarget, JumpToLocation(lMoveTo));
 | 
						|
    // Set to original commandability.
 | 
						|
    SetCommandable(iOriginalCommandable);
 | 
						|
}
 |