SA-MP Forums Archive
memcpy and 3dtext conflict? - 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: memcpy and 3dtext conflict? (/showthread.php?tid=176800)



memcpy and 3dtext conflict? - whitedragon - 14.09.2010

So i make new system but it not work
pawn Код:
mysql_fetch_field("NR",data);cinf[idx][cnr] = strval(data);
memcpy(cinf[idx][cnr],data, 0, 256, 256);
print(cinf[idx][cnr]]); // 123
mysql_fetch_field("plate",data);cinf[idx][cplate] = strval(data);
memcpy(cinf[idx][cplate],data, 0, 256, 256);
print(cinf[idx][cplate); // AAA
carnr[idx] = Create3DTextLabel(cinf[idx][cnr],0x008080FF,0.0, 0.0, 0.0, 50.0, -1, 1); //<- How that CAN be 1AAA???



Re: memcpy and 3dtext conflict? - Memoryz - 14.09.2010

Can you explain what doesnt work?


Re: memcpy and 3dtext conflict? - whitedragon - 14.09.2010

3Dtext not work all others seams work(checks[print] echo right thing)