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



lines longer? - AlXx - 22.06.2011

For example i want /me command longer, how to do that?
Like in LARP , /me is pretty short, it cuts the end of the sentence but i want it to be longer..


Re: lines longer? - Ash. - 22.06.2011

You can't extend the chat character count. The character limit for the chat is 128 characters long.


Re: lines longer? - AlXx - 22.06.2011

oh, thanks.

I had it on 64 ^^

// But when i want more than 128 characters, i need 2 lines.. How to create 2 lines?


Re: lines longer? - =WoR=Varth - 22.06.2011

He mean the chat is cutted. Increase your string length.

EDIT: I'm a god damn slow


Re: lines longer? - Ash. - 22.06.2011

As i've just said, You can't increase the length using a single "SendClientMessage" thing. Maybe split it?


Re: lines longer? - =WoR=Varth - 22.06.2011

pawn Код:
if(string > 128)
or Idk never tried that before.


Re: lines longer? - AlXx - 22.06.2011

In LARP, it's

pawn Код:
new result[128];



Re: lines longer? - Ricop522 - 22.06.2011

if(strlen(result) > 128 ...