SendClientMessage(playerid, -1, " - Comenzi Administrator - ");
format(str, sizeof(str),"*COL_LIGHTBLUE*Trial Admin: /o(oc), /acmds, /info, /getcar, /cc, /wslap\n
"*COL_LIGHTBLUE* Trial Admin: /a, /gethere, /spec, /specoff, /goto, /gotols, /gotolv, /gotosf\n
"*COL_LIGHTBLUE* Trial Admin: /mute, /unmute, /kick, /clearanim");
SendClientMessage(playerid,-1, str);
SendClientMessage(playerid, -1, " - Comenzi Administrator - ");
format(str, sizeof(str),""COL_LIGHTBLUE"Trial Admin:{FFFFFF} /o(oc), /acmds, /info, /getcar, /cc, /wslap\n"COL_LIGHTBLUE" Trial Admin:{FFFFFF} /a, /gethere, /spec, /specoff, /goto, /gotols, /gotolv, /gotosf\n"COL_LIGHTBLUE" Trial Admin:{FFFFFF} /mute, /unmute, /kick, /clearanim");
SendClientMessage(playerid,-1, str);
Yeah I see. You didn't use the colours definition correctly, it should be used outside of the string and there's no need of asterisks.
PHP код:
|
SendClientMessage(playerid, -1, " - Comenzi Administrator - ");
format(str, sizeof(str),"Trial Admin:{FFFFFF} /o(oc), /acmds, /info, /getcar, /cc, /wslap");
SendClientMessage(playerid, COL_LIGHTBLUE, str);
format(str, sizeof(str),"Trial Admin:{FFFFFF} /a, /gethere, /spec, /specoff, /goto, /gotols, /gotolv, /gotosf");
SendClientMessage(playerid, COL_LIGHTBLUE, str);
format(str, sizeof(str),"Trial Admin:{FFFFFF} /mute, /unmute, /kick, /clearanim");
SendClientMessage(playerid, COL_LIGHTBLUE, str);
SendClientMessage(playerid, -1, " - Comenzi Administrator - ");
format(str, sizeof(str),""#COLOR_LIGHTBLUE"Trial Admin:{FFFFFF} /o(oc), /acmds, /info, /getcar, /cc, /wslap");
SendClientMessage(playerid,-1, str);
format(str, sizeof(str),""#COLOR_LIGHTBLUE" Trial Admin:{FFFFFF} /a, /gethere, /spec, /specoff, /goto, /gotols, /gotolv, /gotosf");
SendClientMessage(playerid,-1, str);
format(str, sizeof(str),""#COLOR_LIGHTBLUE"Trial Admin:{FFFFFF} /mute, /unmute, /kick, /clearanim");
SendClientMessage(playerid,-1, str);