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



cmds hide - vikoo - 28.06.2016

Hi All i need help for that :- iam not see all selintmessage in cmd just see first line or 2 lines
exaple when i do /teles2 iam just see 2 lines in just not all teles

look in pwn
/teles2 4 lines in server see just 1 line


Re: cmds hide - Dayrion - 28.06.2016

Maybe the line is too long. Try to split your SendClientMessage in 2 SendClientMessage.
PHP код:
SendClientMesage(playerid, -1"There is a loooooooooooong message"); 
to
PHP код:
SendClientMesage(playerid, -1"There is a ");
SendClientMesage(playerid, -1"loooooooooooong message"); 



Re: cmds hide - vikoo - 28.06.2016

Thank you Dayrion for helping, you right dude thx alot