a simple question - 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: a simple question (
/showthread.php?tid=470205)
a simple question -
Another1 - 16.10.2013
Hello. can i change the string name to anything i want like i have this
PHP код:
new string[64];
format(string,sizeof(string),"Your score is: %d",GetPlayerScore(playerid));
can i change it to this?
PHP код:
new samp[64];
format(samp,sizeof(samp),"Your score is: %d",GetPlayerScore(playerid));
Re: a simple question - Patrick - 16.10.2013
yes.
Respuesta: a simple question -
RafaelZam - 16.10.2013
yes, you can
like pds said, you can
you can use new score; etc
you can change the name..
Re: a simple question -
Another1 - 16.10.2013
Thank you guys =)