Alangara_PRC8/_module/nss/sot_beacon.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

14 lines
508 B
Plaintext

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));
}