AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   Color chat,sometimes won't show colors[SOLVED] (https://forums.alliedmods.net/showthread.php?t=86780)

xbatista 03-02-2009 12:46

Color chat,sometimes won't show colors[SOLVED]
 
I don't why it won't show colors sometimes :/ Whats the trick? :|

PHP Code:

stock client_printcolor(const id, const input[], any:...)
{
    new 
msg[191], players[32], count 1;
    
vformat(msg,190,input,3);
    
replace_all(msg,190,"/g","^4");// green txt
    
replace_all(msg,190,"/y","^1");// orange txt
    
replace_all(msg,190,"/ctr","^3");// team txt
    
replace_all(msg,190,"/w","^2");// white txt
    
if (idplayers[0] = id; else get_players(players,count,"ch");
    for (new 
i=0;i<count;i++)
        if (
is_user_connected(players[i]))
        {
            
message_begin(MSG_ONE_UNRELIABLESayTxT_players[i]);
            
write_byte(players[i]);
            
write_string(msg);
            
message_end();
        }



Owyn 03-02-2009 13:10

Re: Color chat,sometimes won't show colors
 
maybe becouse you use more than one color at once? like team txt + white txt

xbatista 03-02-2009 13:12

Re: Color chat,sometimes won't show colors
 
Problem solved by myself.
It obviously "/y xxxx"
If starting writing something in color chat for the first you must type one of those 4 symbols.


All times are GMT -4. The time now is 16:59.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.