RoT2_PRC8/_module/nss/aw_hillsideport.nss

21 lines
370 B
Plaintext
Raw Permalink Normal View History

2023-09-25 18:13:22 -04:00
void main()
{
object oPC = GetLastUsedBy();
if (!GetIsPC(oPC)) return;
AssignCommand(oPC, ClearAllActions());
object oTarget;
oTarget = GetWaypointByTag("WP_FARMHOUSE");
DelayCommand(3.0, AssignCommand(oPC, ActionJumpToObject(oTarget)));
oTarget = oPC;
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_UNSUMMON), GetLocation(oTarget));
}