Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
77 lines
2.1 KiB
Plaintext
77 lines
2.1 KiB
Plaintext
|
|
//::///////////////////////////////////////////////
|
|
//:: Gate
|
|
//:: NW_S0_Gate.nss
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
//:: Summons a Balor to fight for the caster.
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Preston Watamaniuk
|
|
//:: Created On: April 12, 2001
|
|
//:://////////////////////////////////////////////
|
|
void CreateBalor();
|
|
#include "x2_inc_spellhook"
|
|
|
|
void main()
|
|
{
|
|
|
|
/*
|
|
Spellcast Hook Code
|
|
Added 2003-06-20 by Georg
|
|
If you want to make changes to all spells,
|
|
check x2_inc_spellhook.nss to find out more
|
|
|
|
*/
|
|
|
|
if (!X2PreSpellCastCode())
|
|
{
|
|
// If code within the PreSpellCastHook (i.e. UMD) reports FALSE, do not run this spell
|
|
return;
|
|
}
|
|
|
|
// End of Spell Cast Hook
|
|
|
|
|
|
//Declare major variables
|
|
int nMetaMagic = GetMetaMagicFeat();
|
|
int nCasterLevel = GetCasterLevel(OBJECT_SELF);
|
|
int nDuration = GetCasterLevel(OBJECT_SELF);
|
|
effect eSummon;
|
|
effect eVis = EffectVisualEffect(VFX_FNF_SUMMON_GATE);
|
|
//Make metamagic extend check
|
|
if (nMetaMagic == METAMAGIC_EXTEND)
|
|
{
|
|
nDuration = nDuration *2; //Duration is +100%
|
|
}
|
|
//Summon the Balor and apply the VFX impact
|
|
//ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eVis, GetSpellTargetLocation());
|
|
location lSpellTargetLOC = GetSpellTargetLocation();
|
|
|
|
if(GetHasSpellEffect(SPELL_PROTECTION_FROM_EVIL) ||
|
|
GetHasSpellEffect(SPELL_MAGIC_CIRCLE_AGAINST_EVIL) ||
|
|
GetHasSpellEffect(SPELL_HOLY_AURA))
|
|
{
|
|
eSummon = EffectSummonCreature("NW_S_BALOR",VFX_FNF_SUMMON_GATE,3.0);
|
|
float fSeconds = RoundsToSeconds(nDuration);
|
|
DelayCommand(3.0, ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, eSummon, lSpellTargetLOC, fSeconds));
|
|
|
|
}
|
|
else
|
|
{
|
|
|
|
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eVis, lSpellTargetLOC);
|
|
DelayCommand(3.0, CreateBalor());
|
|
}
|
|
}
|
|
|
|
void CreateBalor()
|
|
{
|
|
object oObject=CreateObject(OBJECT_TYPE_CREATURE, "jw_evilsumbal", GetSpellTargetLocation());
|
|
AssignCommand(oObject, ActionSpeakString("Fool . . ."));
|
|
AssignCommand(oObject, PlayVoiceChat(VOICE_CHAT_TAUNT));
|
|
}
|
|
|
|
|
|
|
|
|