RATDOG/_module/nss/10abeholderp2.nss

12 lines
302 B
Plaintext
Raw Normal View History

// Port PC to 10a NW Caves
///////////////////////////////////////////////////
void main()
{
object oPC = GetLastUsedBy(); // Get the user of the object
object oDest = GetObjectByTag("10abe2"); // way point tag.
if(GetIsPC(oPC))
{
AssignCommand(oPC,JumpToObject(oDest));
}
}