Help. - 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. (
/showthread.php?tid=241607)
Help. -
Talha dar - 18.03.2011
D:\GTA SA\samp\GMS\Myserver2\gamemodes\gang2.pwn(1593) : error 001: expected token: ")", but found "{"
Someone knows what my problem is?
I don't see anything.
Re: Help. -
Roomeo - 18.03.2011
Show us the line 1593
Re: Help. -
Talha dar - 18.03.2011
Okay. Wait..
Re: Help. -
hadzx - 18.03.2011
postline 1593
Re: Help. -
Talha dar - 18.03.2011
/imageshack/img818/8328/46324957.png
Re: Help. -
Roomeo - 18.03.2011
Copy And Past It here
Re: Help. -
HyperZ - 18.03.2011
postline 1593 not images.
Re: Help. -
actiwe - 18.03.2011
There is missing one ) in the end, check it.
Re: Help. -
Talha dar - 18.03.2011
PHP код:
1589 SendClientMessage(playerid, COLOR_PURPLE,"Rule No8.Don't do Team Kill.");
1590 return 1;
1591 }
1592 if(strcmp("/credits", cmdtext, true, 7)
1593 {
1594 SendClientMessage(playerid, COLOR_YELLOW," Scripters: Tdar and Party_dude ");
1595 SendClientMessage(playerid, COLOR_PURPLE," Special thanks to Tom_Fox for testing.");
1596 return 1;
1597 }
Re: Help. -
HyperZ - 18.03.2011
pawn Код:
if (strcmp("/credits", cmdtext, true, 10) == 0)
{
SendClientMessage(playerid, COLOR_YELLOW," Scripters: Tdar and Party_dude ");
SendClientMessage(playerid, COLOR_PURPLE," Special thanks to Tom_Fox for testing.");
return 1;
}