Frictional Games Forum (read-only)
Please HELP! .. - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html)
+--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html)
+---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html)
+---- Thread: Please HELP! .. (/thread-21541.html)



Please HELP! .. - EyMnN - 05-19-2013

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


RE: Please HELP! .. - Tomato Cat - 05-19-2013

Attach your script file?


RE: Please HELP! .. - PutraenusAlivius - 05-19-2013

Where is the script file?


RE: Please HELP! .. - amnesiaplayer321 - 05-21-2013

copy your script file so people can help.


RE: Please HELP! .. - Bridge - 05-21-2013

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).


RE: Please HELP! .. - Tomato Cat - 05-21-2013

Pretty much what Bridge said.