RE: I cant find the unexpected token! Help please :)
////////////////////////////
// Run when entering map
void OnEnter()
{
AddEntityCollideCallback("Player", "script_slam", "func_slam", true, 1);
}
void func_slam(string &in asParent, string &in asChild, int alState)
{
SetSwingDoorClosed("Door_1", true, true);
PlaySoundAtEntity("", "react_breath_slow.snt", "Player", 0, false);
PlaySoundAtEntity("", "react_scare", "Player", 0, false);
PlaySoundAtEntity("", "close_door.snt", "Player", 0, false);
GiveSanityDamage(50.0f, true);
}
void OnStart()
{
AddUseItemCallback("","crowbar_1", "cdoor", "FUNCTION", true);
AddEntityCollideCallback("Player", "doorslam2", "func_slam", true, 1);
}
void FUNCTION(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("cdoor", false, true);
PlaySoundAtEntity("", "unlock_door", "door1", 0, false);
RemoveItem("crowbar_1");
}
void func_slam(string &in asParent, string &in asChild, int alState)
{
SetSwingDoorClosed("slamdoor2", true, true);
PlaySoundAtEntity("", "react_breath_slow.snt", "Player", 0, false);
PlaySoundAtEntity("", "react_scare", "Player", 0, false);
PlaySoundAtEntity("", "close_door.snt", "Player", 0, false);
GiveSanityDamage(50.0f, true);
}
////////////////////////////
// Run when leaving map
void OnLeave()
{
}
//___________________________
Just copy and paste all of that... You had an extra set of
"{
}"
Also... Your tabbing is very spaced and confusing. Try to keep it a little tidy so you can find issues easier =]
By the way triadtimes... I love your signature. haha
(This post was last modified: 12-06-2011, 10:01 PM by Statyk.)
|