SA-MP Forums Archive
[Help] Uknown warning - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: [Help] Uknown warning (/showthread.php?tid=106970)



[Help] Uknown warning - Dstoft21 - 07.11.2009

warning 201: redefinition of constant/macro (symbol "fInfo")

Anybody knows what this is or how to fix it??


Re: [Help] Uknown warning - MadeMan - 07.11.2009

Show the error line in your script.


Re: [Help] Uknown warning - yom - 07.11.2009

Quote:

The symbol was previously defined to a different value, or the text substitution macro that starts with the prefix name was redefined with a different substitution text.

http://www.compuphase.com/pawn/Pawn_Language_Guide.pdf


Re: [Help] Uknown warning - MenaceX^ - 07.11.2009

Quote:
Originally Posted by MadeMan
Show the error line in your script.
1. It ain't an error.
2. I never met an "Unknown Warning".



Re: [Help] Uknown warning - Dstoft21 - 07.11.2009

pawn Код:
enum fInfo
{
    fName,
    fRankName1,
    fRankName2,
    fRankName3,
    fRankName4,
    fRankName5,
    fRankName6
};

new FactionInfo[35][fInfo];
Quote:
Originally Posted by MenaceX^
Quote:
Originally Posted by MadeMan
Show the error line in your script.
1. It ain't an error.
2. I never met an "Unknown Warning".
I mean I have never seen it before... :P


Re: [Help] Uknown warning - Benne - 07.11.2009

Well, I have got this error too, still trying to find out what it means, could anyone help?


Re: [Help] Uknown warning - Butilka - 07.11.2009

That mean's you have somewhere else
Код:
enum fInfo



Re: [Help] Uknown warning - BP13 - 07.11.2009

Quote:
Originally Posted by E1edge
That mean's you have somewhere else
Код:
enum fInfo
it mean you have fInfo defined/forwarded twice in your script


Re: [Help] Uknown warning - Benne - 07.11.2009

God, forgot we had family info too, so embarrassing.
Thank you for the answers to remind us about it.