RATDOG/_module/nss/porttogrove.nss

13 lines
292 B
Plaintext
Raw Permalink Normal View History

// Port PC
///////////////////////////////////////////////////
void main()
{
object oPC = GetLastUsedBy(); // Get the user of the object
object oDest = GetObjectByTag("3agroveport"); // way point tag.
if(GetIsPC(oPC))
{
AssignCommand(oPC,JumpToObject(oDest));
}
}