Posts: 101
Threads: 22
Joined: Feb 2014
Reputation:
0
Hello, when I try to compile my gamemode, I get these errors and warnings:
error 025: function heading differs from prototype
error 021: symbol already defined: "GetXYInFrontOfPlayer"
warning 203: symbol is never used: "command"
warning 203: symbol is never used: "text22"
Any ideas? Anyone can help with TeamViewer?
P.S. It's about samp 0.3z R3
Posts: 1,241
Threads: 67
Joined: Dec 2013
Quote:
Originally Posted by bobsona
Hello, when I try to compile my gamemode, I get these errors and warnings:
error 025: function heading differs from prototype
error 021: symbol already defined: "GetXYInFrontOfPlayer"
warning 203: symbol is never used: "command"
warning 203: symbol is never used: "text22"
Any ideas? Anyone can help with TeamViewer?
P.S. It's about samp 0.3z R3
|
First of all, Never post only The Errors, The pawno gives you Errors with the
lines and we can never know what is in that lines.
Код:
error 025: function heading differs from prototype
We must see the function, Propably you have it defined somewhere in the GameMode or in the includes.
Код:
error 021: symbol already defined: "GetXYInFrontOfPlayer"
The symbole GetXYInFrontOfPlayer is already defined, Use Ctrl+F to search it, Keep only one and delete the other one.
Код:
warning 203: symbol is never used: "command"
warning 203: symbol is never used: "text22"
You have defined those symbols but you are not using them, Delete both of them.
Posts: 29
Threads: 4
Joined: Jul 2014
Reputation:
0
Please post the line where you got this error
error 025: function heading differs from prototype
Posts: 29
Threads: 4
Joined: Jul 2014
Reputation:
0
Symbol is never used means that you defined it but you never used it so Use CTRL+F to find it in your script then delete it. and for the other error, try to remove that stock