how to make chat continue in 2nd line
#5

You could do something like this instead:
Code:
if (strlen(string) > 100)
{
    new message[100];

    format(message, sizeof(message), "%.100s", string);
    SendClientMessage(playerid, -1, message);
    format(message, sizeof(message), "...%s", string[100]);
    SendClientMessage(playerid, -1, message);
}
else SendClientMessage(playerid, -1, string);
Reply


Messages In This Thread
how to make chat continue in 2nd line - by DGRP - 05.02.2017, 06:38
Re: how to make chat continue in 2nd line - by SyS - 05.02.2017, 07:01
Re: how to make chat continue in 2nd line - by DGRP - 05.02.2017, 07:15
Re: how to make chat continue in 2nd line - by SyS - 05.02.2017, 07:28
Re: how to make chat continue in 2nd line - by GoldenLion - 05.02.2017, 07:44

Forum Jump:


Users browsing this thread: 1 Guest(s)