Frictional Games Forum (read-only)

Full Version: Please HELP! ..
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
PLEASE HELP ME! I CREATED AMNESIA CS AND ALL WORKS, BUT BUMP FATAL ERROR : A FUNCTION WITH THE SAME NAME AND PARAMETERS ALREADY EXIST..

please help
[/size][/font]Huh
Attach your script file?
Where is the script file?
copy your script file so people can help.
The error is telling you that you're trying to declare a non-overloaded function with a name that already exists. Basically:

Code:
void funcName (int x) {
//stuff
}

// Later

void funcName (int x) {
//stuff
}

Which is illegal. Doesn't the error message tell you which function it is? Just do a search (ctrl + f) and rename the other function (if it's actually necessary).
Pretty much what Bridge said.