01.10.2011, 20:41
Solution you need to indent your code correct to avoid that error. So like this:
It's about using the tabs correct. Goodluck
pawn Код:
CMD:hi(playerid, params[])
{
SendClientMessage(playerid, 0xFFFFFFFF, "Hello this is a test");
return 1;
}
// Example above is wrong.
CMD:hi(playerid, params[])
{
SendClientMessage(playerid, 0xFFFFFFFF, "Hello this is a test");
return 1;
}
// Example above is correct.