14 lines
508 B
Plaintext
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));
|
||
|
}
|