Description:
GUILabel().Text color not updating/reseting after text change.
Reproducible:
Always.
How to reproduce:
Code: [Select]
After this, change the GUILabel().Text value:
Code: [Select] or
Code: [Select] Even putting a color or not, the text color will not change or will not change correctly.
I realized the test using a client-side /execc.
GUILabel().Text color not updating/reseting after text change.
Reproducible:
Always.
How to reproduce:
Label <- GUILabel();
Label.TextColour = Colour(255, 255, 255, 255);
Label.AddFlags(GUI_FLAG_TEXT_TAGS);
Label.FontFlags = GUI_FFLAG_BOLD;
Label.Text = "[#ff00ff]purple colored text";
//Example 2: "purple colored [#ff00ff]text";
After this, change the GUILabel().Text value:
Label.Text = "purple colored text";
Label.Text = "purple colored[#ffffff0] text";
I realized the test using a client-side /execc.