Area Cleanup. Added CEP3 Skyboxes. Beholder AI fix. NPC & Mook pass. Added QN OnHit script. Add XP for Traps system.
		
			
				
	
	
		
			12 lines
		
	
	
		
			302 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			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));
 | 
						|
    }
 | 
						|
}
 |