RoT2_PRC8/_module/nss/cb_dragon_light.nss
Jaysyn904 499aba4eb3 Initial upload
Initial upload
2023-09-25 18:13:22 -04:00

251 lines
10 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Name: lightning_efx
//:: FileName: lightning_efx
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/* This is a script that will allow you to have a cool lightning Effects
display in your mod. What it does is you place this script in a generic
trigger's OnEnter slot. When the PC enters the trigger, the script will
activate and give you a cool lightning display.
*/
//:://////////////////////////////////////////////
//:: Created By: Webmaistro MODIFIED BY TAB
//:: Created On: 1/03/2003
//:://////////////////////////////////////////////
// This part is where you setup the lightning sequence, You can add as many as
// you like, just follow the numerical order.
void next1();
void next2();
void next3();
void next4();
void next5();
void next6();
void next7();
void next8();
// This ends the lightning sequence setup ends.
void end();
// Now for the script.
void main()
{
// This just starts the lightning sequence.
DelayCommand(5.0, next1());
}
// Ok, now this is the first lightning strike.
void next1()
{
// This is the lightning visual effect.
effect eMind = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE);
// This is where you declare the tag of the target, I use an invisible object
// placeable. Each target must be a unique tag for the script to work properly.
object oTarget = GetObjectByTag("cb_dragon_1");
// This gets the location of the target.
location lLoc = GetLocation(oTarget);
// This is where the action takes place.
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eMind, GetLocation(oTarget));
// This is just a small delay before the next lightning strike and tells the
// script to go to sequence 2.
DelayCommand(1.5, next2());
}
// This is the second lightning strike.
void next2()
{
// This is the lightning visual effect.
effect eMind = EffectVisualEffect(VFX_FNF_WORD);
// This is where you declare the tag of the target, I use an invisible object
// placeable. Each target must be a unique tag for the script to work properly.
// As you can see here, I have 2 seperate targets listed, each with a unique tag
// This will give you 2 simultaneous lightning strikes. You can add as many as you
// like, just be sure each one is declared in the fashion shown a,b,c,d,etc. and
// each target has a unique tag.
object oTargeta = GetObjectByTag("cb_dragon_2");
object oTargetb = GetObjectByTag("cb_dragon_3");
// This gets the location of the target. As you can see, since I have 2 targets,
// I have to declare 2 locations. If you add more targets, just make sure you add
// the location declaration or it won't work.
location lLoca = GetLocation(oTargeta);
location lLocb = GetLocation(oTargetb);
// This is where the action takes place. You will also need to declare the
// actions for each target seperately.
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eMind, GetLocation(oTargeta));
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eMind, GetLocation(oTargetb));
// This tells the script to go to sequence 3.
DelayCommand(1.5, next3());
}
// This is the third lightning strike.
void next3()
{
// This is the lightning visual effect.
effect eMind = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE);
// This is where you declare the tag of the target, I use an invisible object
// placeable. Each target must be a unique tag for the script to work properly.
object oTarget = GetObjectByTag("cb_dragon_4");
// This gets the location of the target.
location lLoc = GetLocation(oTarget);
// This is where the action takes place.
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eMind, GetLocation(oTarget));
// This tells the script to go to sequence 4.
DelayCommand(1.5, next4());
}
// This is the fourth lightning strike.
void next4()
{
// This is the lightning visual effect.
effect eMind = EffectVisualEffect(VFX_FNF_SUMMON_MONSTER_1);
// This is where you declare the tag of the target, I use an invisible object
// placeable. Each target must be a unique tag for the script to work properly.
// As you can see here, I have 2 seperate targets listed, each with a unique tag
// This will give you 2 simultaneous lightning strikes. You can add as many as you
// like, just be sure each one is declared in the fashion shown a,b,c,d,etc. and
// each target has a unique tag.
object oTargeta = GetObjectByTag("cb_dragon_5");
object oTargetb = GetObjectByTag("cb_dragon_6");
object oTargetc = GetObjectByTag("cb_dragon_7");
// This gets the location of the target. As you can see, since I have 2 targets,
// I have to declare 2 locations. If you add more targets, just make sure you add
// the location declaration or it won't work.
location lLoca = GetLocation(oTargeta);
location lLocb = GetLocation(oTargetb);
location lLocc = GetLocation(oTargetc);
// This is where the action takes place. You will also need to declare the
// actions for each target seperately.
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eMind, GetLocation(oTargeta));
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eMind, GetLocation(oTargetb));
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eMind, GetLocation(oTargetc));
// This tells the script to go to sequence 5.
DelayCommand(1.5, next5());
}
// This is the fifth lightning strike.
void next5()
{
// This is the lightning visual effect.
effect eMind = EffectVisualEffect(VFX_IMP_LIGHTNING_M);
// This is where you declare the tag of the target, I use an invisible object
// placeable. Each target must be a unique tag for the script to work properly.
object oTarget = GetObjectByTag("cb_dragon_6");
// This gets the location of the target.
location lLoc = GetLocation(oTarget);
// This is where the action takes place.
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eMind, GetLocation(oTarget));
// This tells the script to go to sequence 6.
DelayCommand(1.5, next6());
}
// This is the sixth lightning strike.
void next6()
{
// This is the lightning visual effect.
effect eMind = EffectVisualEffect(VFX_FNF_SUMMON_MONSTER_1);
// This is where you declare the tag of the target, I use an invisible object
// placeable. Each target must be a unique tag for the script to work properly.
// As you can see here, I have 2 seperate targets listed, each with a unique tag
// This will give you 2 simultaneous lightning strikes. You can add as many as you
// like, just be sure each one is declared in the fashion shown a,b,c,d,etc. and
// each target has a unique tag.
object oTargeta = GetObjectByTag("cb_dragon_7");
object oTargetb = GetObjectByTag("cb_dragon_8");
// This gets the location of the target. As you can see, since I have 2 targets,
// I have to declare 2 locations. If you add more targets, just make sure you add
// the location declaration or it won't work.
location lLoca = GetLocation(oTargeta);
location lLocb = GetLocation(oTargetb);
// This is where the action takes place. You will also need to declare the
// actions for each target seperately.
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eMind, GetLocation(oTargeta));
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eMind, GetLocation(oTargetb));
}
// This is the seventh lightning strike.
void next7()
{
// This is the lightning visual effect.
effect eMind = EffectVisualEffect(VFX_FNF_SUMMON_MONSTER_1);
// This is where you declare the tag of the target, I use an invisible object
// placeable. Each target must be a unique tag for the script to work properly.
// As you can see here, I have 2 seperate targets listed, each with a unique tag
// This will give you 2 simultaneous lightning strikes. You can add as many as you
// like, just be sure each one is declared in the fashion shown a,b,c,d,etc. and
// each target has a unique tag.
object oTargeta = GetObjectByTag("cb_dragon_9");
object oTargetb = GetObjectByTag("cb_dragon_10");
object oTargetc = GetObjectByTag("cb_dragon_1");
// This gets the location of the target. As you can see, since I have 2 targets,
// I have to declare 2 locations. If you add more targets, just make sure you add
// the location declaration or it won't work.
location lLoca = GetLocation(oTargeta);
location lLocb = GetLocation(oTargetb);
location lLocc = GetLocation(oTargetc);
// This is where the action takes place. You will also need to declare the
// actions for each target seperately.
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eMind, GetLocation(oTargeta));
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eMind, GetLocation(oTargetb));
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eMind, GetLocation(oTargetc));
// This tells the script to go to sequence 5.
DelayCommand(1.5, next8());
}
// This is the eighth lightning strike.
void next8()
{
// This is the lightning visual effect.
effect eMind = EffectVisualEffect(VFX_IMP_LIGHTNING_M);
// This is where you declare the tag of the target, I use an invisible object
// placeable. Each target must be a unique tag for the script to work properly.
// As you can see here, I have 2 seperate targets listed, each with a unique tag
// This will give you 2 simultaneous lightning strikes. You can add as many as you
// like, just be sure each one is declared in the fashion shown a,b,c,d,etc. and
// each target has a unique tag.
object oTargeta = GetObjectByTag("cb_dragon_2");
object oTargetb = GetObjectByTag("cb_dragon_3");
object oTargetc = GetObjectByTag("cb_dragon_4");
// This gets the location of the target. As you can see, since I have 2 targets,
// I have to declare 2 locations. If you add more targets, just make sure you add
// the location declaration or it won't work.
location lLoca = GetLocation(oTargeta);
location lLocb = GetLocation(oTargetb);
location lLocc = GetLocation(oTargetc);
// This is where the action takes place. You will also need to declare the
// actions for each target seperately.
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eMind, GetLocation(oTargeta));
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eMind, GetLocation(oTargetb));
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eMind, GetLocation(oTargetc));
}