Aantioch_Infernum/_module/nss/virgil_follow.nss
Jaysyn904 22947ad4b6 Initial Upload
Initial Upload
2023-08-08 16:22:17 -04:00

13 lines
329 B
Plaintext

//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"))));
}