Inurias 
 
 
		
			Junior Member 
			
			
			
 
			
	Posts: 20 
	Threads: 0 
	Joined: Jan 2012
	
 Reputation: 
2
		
	 | 
	
		
			
RE: Make player look at entity? 
			 
			
				 (02-03-2012, 07:16 PM)Datguy5 Wrote:  //////////////////////////// 
// Run when the map starts 
void OnStart() 
{ 
AddUseItemCallback("", "And", "Locked", "KeyOnDoor", true); 
SetEntityCallbackFunc("And", "OnPickup"); 
SetEntityCallbackFunc("Antidote", "OnPickup2"); 
SetEntityPlayerInteractCallback("Antidote", "Win", true); 
AddEntityCollideCallback("Player", "Message_1", "Message1", true, 1); 
AddEntityCollideCallback("Player", "End", "Message2", true, 1); 
}  
 
 
void Message1(string &in asChild, string &in asParent, int alState) 
{ 
SetMessage("Messages", "Popup1", 0); 
} 
void Message2(string &in asChild, string &in asParent, int alState) 
{ 
SetMessage("Messages", "Popup2", 0); 
} 
void OnPickup(string &in asEntity, string &in type) 
{ 
SetEntityActive("grunt_1", true); 
} 
void KeyOnDoor(string &in asItem, string &in asEntity) 
{ 
SetSwingDoorLocked("Locked", false, true); 
PlaySoundAtEntity("", "explosion_rock_large.snt", "Locked", 0, false); 
RemoveItem("And"); 
} 
void OnPickup2(string &in asEntity, string &in type) 
{ 
SetEntityActive("Master", true); 
} 
void Win(string &in asEntity) 
{ 
StartPlayerLookAt("Master", 3, 5, ""); 
AddTimer("", 1, "Message_func"); 
} 
void Message_func(string &in asTimer) 
{ 
SetMessage("Messages", "Popup3", 2); 
AddTimer("", 2, "CreditStart"); 
} 
void CreditStart(string &in asTimer) 
{ 
StartCredits("ending_daniel.ogg", true, , "Ending", 1); 
} 
//////////////////////////// 
// Run when entering map 
void OnEnter() 
{ 
} 
//////////////////////////// 
// Run when leaving map 
void OnLeave() 
{ 
} Are you kidding me? Still the same error
 StartCredits("ending_daniel.ogg", true, , "Ending", 1);
 I already told you what to do.
 
-Inurias
			  
			
			
			
		 |  
	 
 |