SA-MP Forums Archive
Problem - 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: Problem (/showthread.php?tid=610060)



Problem - Ugaustin - 19.06.2016

does anyone know I want in dcmd to put reason too sscanf.. and I don't know how..

PHP код:
new playa,msg[80];
if(
sscanf(params"u"playa,msg))   //what do I have to put between "   " ??? 



Re: Problem - AbyssMorgan - 19.06.2016

PHP код:
if(sscanf(params"u s[80]"playa,msg)) 



Re: Problem - Ugaustin - 19.06.2016

thank you !