Compiler Errors
#7

Quote:
Originally Posted by Test23
Посмотреть сообщение
You must define "n".

#define n "Input here" //Without quote marks
That will do absolutely nothing. Actually, it will only make it worse.
Post the lines that are causing your compiler to error.

The first error is because you have duplicated 'N' values.
An example would be:
pawn Код:
#include < a_samp >
main() {}
new n = something; // global value.

public OnPlayerConnect(playerid)
{
    new n = something; // non-global value, same name as the global value, will cause a collision and cause errors when compiling.
    return ( true ) ;
}
As for part two:
Please show us the complete string. You are missing a part of it.
Reply


Messages In This Thread
Compiler Errors - by eminem2008 - 03.03.2012, 18:33
Re: Compiler Errors - by Test23 - 03.03.2012, 18:56
Re: Compiler Errors - by eminem2008 - 03.03.2012, 19:06
Re: Compiler Errors - by Walsh - 03.03.2012, 20:24
Re: Compiler Errors - by Faisal_khan - 04.03.2012, 03:17
Re: Compiler Errors - by suhrab_mujeeb - 04.03.2012, 04:47
Re: Compiler Errors - by shitbird - 04.03.2012, 09:55
Re: Compiler Errors - by R0FLC0PTER - 04.03.2012, 10:02

Forum Jump:


Users browsing this thread: 3 Guest(s)