Initial Upload

Initial Upload
This commit is contained in:
Jaysyn904
2023-08-08 16:22:17 -04:00
parent 51a2a1286e
commit 22947ad4b6
6511 changed files with 6765205 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
void main()
{
object oSelf = OBJECT_SELF;
object oPC = GetPCSpeaker();
location lTarget = GetLocalLocation(oPC, "SOT_BEACON");
location lTarget2 = GetLocation(oPC);
ActionCastFakeSpellAtObject(SPELL_MINOR_GLOBE_OF_INVULNERABILITY, oSelf);
DelayCommand(3.0, ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_FNF_TIME_STOP), lTarget2, 5.0));
SetLocalLocation(oPC, "SOT_LASTUSED", GetLocation(oPC));
SetLocalLocation(oPC, "SOT_BEACON", GetLocation(oPC));
}