01.02.2012, 14:33
Instead of only giving code also explain them what they did wrong and why it gave the error!
You have used ("string") but using that you forgot to close the function with a ). The compiler misses the ) and that is why it gives that error: expected token ' ' but found ' '. You can either remove these "( )" in the message parameter because it's not really necessary but you can also add another ")" so it closes properly!
pawn Код:
if(!strcmp(cmdtext,"/kill",true))
{
SendClientMessage(playerid, COLOR_GREEN,"www.ZynaGaming.com");
// Do something here
return 1;
}

