11 lines
390 B
Plaintext
11 lines
390 B
Plaintext
void main()
|
|
{
|
|
object oPC = GetLastUsedBy();
|
|
location lTarget = GetLocation(oPC);
|
|
object oTarget = GetWaypointByTag("AmonsShip");
|
|
effect eEffect1 = EffectVisualEffect(VFX_IMP_AURA_HOLY);
|
|
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect1, lTarget);
|
|
ActionDoCommand(PlaySound("as_mg_telepout1"));
|
|
DelayCommand(1.0, AssignCommand(oPC, JumpToObject(oTarget)));
|
|
}
|