Aantioch_Infernum/_module/nss/virgil_follow.nss

13 lines
329 B
Plaintext
Raw Permalink Normal View History

2023-08-08 16:22:17 -04:00
//Goes OnPerceived of a creature
void main()
{
object oPC = GetLastPerceived();
if (!GetIsPC(oPC)) return;
if (!GetLastPerceptionSeen()) return;
DelayCommand(1.0, AssignCommand(OBJECT_SELF,ActionForceFollowObject(oPC)));
DelayCommand(30.0, AssignCommand(OBJECT_SELF,ActionMoveToObject(GetObjectByTag("WP_NW_SHGUARD_01"))));
}