SA-MP Forums Archive
colour help - 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: colour help (/showthread.php?tid=455390)



colour help - kaos999 - 01.08.2013

pawn Код:
dcmd_stunts(playerid, cmdtext[]) {
    #pragma unused cmdtext
    SetPlayerPos(playerid, 1985.5273,-2241.5156,13.5469);
    new name[24], string[128];
    GetPlayerName(playerid, name, 24);
    format(string, 128, "%s (%d) ..::has gone to do stunts::..", name, playerid);
    SendClientMessage(playerid, COLOR_GREENS, string);
    return 1;
}
IS THERE ANYWAY POSSIBLE TO MAKE "..::kaos has gone to do stunts::.." into ..::kaos has gone to do stunts::..

THANKS IN ADVANCE


Re: colour help - kaos999 - 01.08.2013

BUMP PLEASE


Re: colour help - JimmyCh - 01.08.2013

Do not bump after 4 minutes dude.
pawn Код:
format(string, 128, "{00FFEE}%s (%d) {C9FFAB}..::has gone to do stunts::..", name, playerid);
    SendClientMessage(playerid, -1, string);



Re: colour help - kaos999 - 01.08.2013

OK THANKS AND SORRY