04.03.2012, 09:55
(
Последний раз редактировалось shitbird; 04.03.2012 в 10:07.
Причина: Edit.
)
Quote:
You must define "n".
#define n "Input here" //Without quote marks |
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 ) ;
}
Please show us the complete string. You are missing a part of it.