19 lines
710 B
Plaintext
19 lines
710 B
Plaintext
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
// Hugget fra ringen, standard virkede ikke - mere end een ting der hedder "heltenes hvile?"
|
|
object oTarget;
|
|
location lTarget;
|
|
oTarget = GetWaypointByTag("heltenes_hvile");
|
|
lTarget = GetLocation(oTarget);
|
|
if (GetAreaFromLocation(lTarget)==OBJECT_INVALID) return;
|
|
AssignCommand(oPC, ClearAllActions());
|
|
DelayCommand(3.0, AssignCommand(oPC, ActionJumpToLocation(lTarget)));
|
|
oTarget = oPC;
|
|
int nInt;
|
|
nInt = GetObjectType(oTarget);
|
|
if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_UNSUMMON), oTarget);
|
|
else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_UNSUMMON), GetLocation(oTarget));
|
|
}
|