Hello, i got a help with a script, but when i tries to load my custom it just ends up with an error,
Here is the script
void MakePrisonerDisapear_1(string &in asParent, string &in asChild, int alState)
{
	SetPlayerActive(false); 
	PlaySoundAtEntity("", "leather_walk.snt", "prisoner", 0.0f, false);
	PlaySoundAtEntity("", "react_scare.snt", "Player", 0.0f, false); 
	StartPlayerLookAt("LookAtPrisoner", 5.0f, 5.0f, "");
	Addtimer("", 1.0f, "MakePrisonerDisappear_2");
}
void MakePrisonerDisappear_2(string &in asTimer);
{
	GiveSanityDamage(5, true);
	SetEntityActive("prisoner", false);
	SetPlayerActive(true); 
Do you see anything wrong with it?
Plz reply with a fix it would be awesome! 
