SA-MP Forums Archive
Quick question about 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Quick question about SendClientMessage (/showthread.php?tid=154440)



Quick question about SendClientMessage - Arman98 - 13.06.2010

How do you add a second line? when i press enter to do a new one the script gets like 4 errors
sorry i'm very new to this and also sorry if it has been questioned before but i already searched for it for about an hour


Re: Quick question about SendClientMessage - MWF2 - 13.06.2010

Do this...


SendClientMessage(playerid,0x1E90FFAA, "This would be your first line");
SendClientMessage(playerid,0x1E90FFAA, "This would be your 2nd line");
SendClientMessage(playerid,0x1E90FFAA, "This would be your 3rd line");



So if it's a command like /rules

that would work..


Re: Quick question about SendClientMessage - Arman98 - 13.06.2010

Thanks