New SprayTags...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)
+--- Thread: New SprayTags...HELP (
/showthread.php?tid=614278)
New SprayTags...HELP -
kexy96 - 06.08.2016
Код:
new SprayTags[MAX_PLAYERS][MAX_PLAYERS_TAGS][SPRAYTAG_DATA];
Код:
error 001: expected token: "]", but found "."
WHATS THE PROBLEM??
Re: New SprayTags...HELP - WhiteGhost - 06.08.2016
Why dont u
Код:
new SprayTags[MAX_PLAYERS_TAGS][SPRAYTAG_DATA];
?
Re: New SprayTags...HELP -
Sew_Sumi - 06.08.2016
Quote:
Originally Posted by kexy96
WHATS THE PROBLEM??
|
Show what code is above that piece you showed.
Re: New SprayTags...HELP -
kexy96 - 06.08.2016
Don't work
Re: New SprayTags...HELP -
kexy96 - 06.08.2016
Код:
for(new i; i < MAX_PLAYERS_TAGS; i++)//this line error...
{
new szTag[24];
format(szTag, sizeof szTag, "{F7EC6F}Free");
if(strfind(SprayTags[iPlayerID][i][_spOwned], szName, true) != -1)
{
format(szTag, sizeof(szTag), "{F7EC6F}Spray Tag #%i", i);
}
format(szDialog, sizeof(szDialog), "%s%s\n", szDialog, szTag);
}
Re: New SprayTags...HELP -
Shinja - 06.08.2016
Show some lines before it also
Re: New SprayTags...HELP -
Sew_Sumi - 06.08.2016
Just on a side note, keep consistent.
PHP код:
format(szTag, sizeof szTag, "{F7EC6F}Free");
format(szTag, sizeof(szTag), "{F7EC6F}Spray Tag #%i", i);
format(szDialog, sizeof(szDialog), "%s%s\n", szDialog, szTag);
It's likely unrelated.