SendClientMessage
#8

The message you are trying to send is too long for SendClientMessage. You can't send more than 144 characters but you are trying to send 255.

Split it into several messages. One of these should work:

PHP код:
SendClientMessage(playerid, -1" - Comenzi Administrator - ");  
format(strsizeof(str),"Trial Admin:{FFFFFF} /o(oc), /acmds, /info, /getcar, /cc, /wslap");
SendClientMessage(playeridCOL_LIGHTBLUEstr);  
format(strsizeof(str),"Trial Admin:{FFFFFF} /a, /gethere, /spec, /specoff, /goto, /gotols, /gotolv, /gotosf");
SendClientMessage(playeridCOL_LIGHTBLUEstr);  
format(strsizeof(str),"Trial Admin:{FFFFFF} /mute, /unmute, /kick, /clearanim");  
SendClientMessage(playeridCOL_LIGHTBLUEstr); 
or

PHP код:
SendClientMessage(playerid, -1" - Comenzi Administrator - ");   
format(strsizeof(str),""#COLOR_LIGHTBLUE"Trial Admin:{FFFFFF} /o(oc), /acmds, /info, /getcar, /cc, /wslap"); 
SendClientMessage(playerid,-1str);   
format(strsizeof(str),""#COLOR_LIGHTBLUE" Trial Admin:{FFFFFF} /a, /gethere, /spec, /specoff, /goto, /gotols, /gotolv, /gotosf"); 
SendClientMessage(playerid,-1str);   
format(strsizeof(str),""#COLOR_LIGHTBLUE"Trial Admin:{FFFFFF} /mute, /unmute, /kick, /clearanim");   
SendClientMessage(playerid,-1str); 
Reply


Messages In This Thread
SendClientMessage - by Zeus666 - 15.03.2018, 20:11
Re: SendClientMessage - by iKarim - 15.03.2018, 20:14
Re: SendClientMessage - by Zeus666 - 15.03.2018, 20:15
Re: SendClientMessage - by iKarim - 15.03.2018, 20:17
Re: SendClientMessage - by Zeus666 - 15.03.2018, 20:19
Re: SendClientMessage - by iKarim - 15.03.2018, 20:20
Re: SendClientMessage - by Zeus666 - 15.03.2018, 20:25
Re: SendClientMessage - by AdamsLT - 15.03.2018, 20:34

Forum Jump:


Users browsing this thread: 1 Guest(s)