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



SendClientMessage - Ahmed21 - 25.07.2016

Hello everyone, I want to send a client message to a player, in the client message string, there is quotation ( " " ), but when I put the quotations (" ") the compiler says some errors, here's my line:

PHP код:
format(stringsizeof(string), ""%s" has been unbanned from the server."name); 



Re: SendClientMessage - SickAttack - 25.07.2016

pawn Код:
format(string, sizeof(string), "\"%s\" has been unbanned from the server.", name);



Re: SendClientMessage - Ahmed21 - 25.07.2016

Quote:
Originally Posted by SickAttack
Посмотреть сообщение
pawn Код:
format(string, sizeof(string), "\"%s\" has been unbanned from the server.", name);
Thank you so much bro! +REP'd :P