Textdraw text - defined version - 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: Textdraw text - defined version (
/showthread.php?tid=342379)
Textdraw text - defined version -
Dripac - 13.05.2012
pawn Код:
intro[10] = TextDrawCreate(304.00, 223.0, VERSION");
I have at the top of the script #define VERSION "blabla"
Now i want to show that on the textdraw
but what i did doesn't work
Re: Textdraw text - defined version -
Jonny5 - 13.05.2012
pawn Код:
intro[10] = TextDrawCreate(304.00, 223.0, VERSION);
you had a quot
" mark on the end.
Re: Textdraw text - defined version -
ViniBorn - 13.05.2012
pawn Код:
#define VERSION "Version : 0.3e"
intro[10] = TextDrawCreate(304.00, 223.0, VERSION);
Re: Textdraw text - defined version -
Dripac - 13.05.2012
works now, thanks