SA-MP Forums Archive
Annoying strcat issue. - 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: Annoying strcat issue. (/showthread.php?tid=277688)



Annoying strcat issue. - Antonio [G-RP] - 18.08.2011

pawn Код:
strcat(BizInfo[biz][bName], BizName[playerid]);
This line will not work. It worked before here...

pawn Код:
strcat(BizName[playerid], inputtext);
But will not transfer BizName to BizInfo..

BizInfo return an empty string with a printf.
BizName returns a full string with a printf.


Re: Annoying strcat issue. - Antonio [G-RP] - 18.08.2011

Thank you, Godfather.