Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Please HELP! ..
EyMnN Offline
Junior Member

Posts: 3
Threads: 2
Joined: May 2013
Reputation: 0
#1
Please HELP! ..

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
05-19-2013, 01:37 AM
Find
Tomato Cat Offline
Senior Member

Posts: 287
Threads: 2
Joined: Sep 2012
Reputation: 20
#2
RE: Please HELP! ..

Attach your script file?
05-19-2013, 05:10 AM
Find
PutraenusAlivius Offline
Posting Freak

Posts: 4,713
Threads: 75
Joined: Dec 2012
Reputation: 119
#3
RE: Please HELP! ..

Where is the script file?

"Veni, vidi, vici."
"I came, I saw, I conquered."
05-19-2013, 03:53 PM
Find
amnesiaplayer321 Offline
Junior Member

Posts: 31
Threads: 4
Joined: May 2013
Reputation: 0
#4
RE: Please HELP! ..

copy your script file so people can help.
05-21-2013, 05:47 PM
Find
Bridge Offline
Posting Freak

Posts: 1,971
Threads: 25
Joined: May 2012
Reputation: 128
#5
RE: Please HELP! ..

The error is telling you that you're trying to declare a non-overloaded function with a name that already exists. Basically:

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).
05-21-2013, 07:41 PM
Find
Tomato Cat Offline
Senior Member

Posts: 287
Threads: 2
Joined: Sep 2012
Reputation: 20
#6
RE: Please HELP! ..

Pretty much what Bridge said.
05-21-2013, 08:07 PM
Find




Users browsing this thread: 1 Guest(s)