How To Change Chat Border, BG, Text Color on Chat

Posted by CharaKayra
how do i change the colors from it
i know there is a command for change bg and text but when i use it i cannot see the grey text

Replies (8)

Last message on 6 Feb 2022

Size43 (Administrator) on 23 Jan 2022, 15:38:37
Could you post the code you're currently using that isn't working?
CharaKayra (Topicstarter) on 27 Jan 2022, 15:51:37
im using the built in chat

Player's Draw Event
if(chat)
{
        gms_show_set_constant ("c_border", c_white )
        gms_show_set_constant ("c_text", c_white )
        gms_show_set_constant ("c_background1", c_black)
        gms_show_set_constant ("c_background2", c_black)
}
CharaKayra (Topicstarter) on 27 Jan 2022, 16:07:20
i wrote new code but now i cannot see the gray text i cant post image here
CharaKayra (Topicstarter) on 27 Jan 2022, 16:07:49
so we cant see what are we typing in
CharaKayra (Topicstarter) on 27 Jan 2022, 16:18:27
gms_chat_colors(c_white,c_black,c_gray)
Size43 (Administrator) on 6 Feb 2022, 17:44:42
The third argument of gms_chat_colors is the alpha value of the background of the chat. Try doing something like this instead:

gms_chat_colors(c_white, c_black, 1.0)
CharaKayra (Topicstarter) on 13 Jan 2022, 20:09:19
and also how can i make vs system
Size43 (Administrator) on 23 Jan 2022, 15:40:07
The included example shows how the VS mode works. You can also check out the sessions tutorial if you need more customization than the built-in VS mode offers.