ES_PRC8/_module/nss/portal_sc.nss
Jaysyn904 08e84b4e71 Initial upload
Initial upload.
2023-11-14 12:09:02 -05:00

24 lines
548 B
Plaintext

void main()
{
// Move individual to new location
location lNewLocation = GetLocation(GetObjectByTag("DrakeWP"));
object oTarget;
//Since the script is called from a conversation
//determine who is moved by calling the GetPCSpeaker function
oTarget = GetLastUsedBy();
if (GetIsObjectValid(oTarget) == TRUE){
AssignCommand(oTarget,ActionJumpToLocation(lNewLocation));
}
else if (GetIsObjectValid(oTarget) == FALSE) {
SpeakString("Problem here");
}
}