RATDOG/_module/nss/10abeholderp2.nss
Jaysyn904 64c913bf07 Area Cleanup. Added CEP3 Skyboxes
Area Cleanup.  Added CEP3 Skyboxes.  Beholder AI fix.  NPC & Mook pass.  Added QN OnHit script.  Add XP for Traps system.
2021-12-31 01:45:43 -05:00

12 lines
302 B
Plaintext

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