Hugo_Almeidowski Posted January 24, 2019 Share Posted January 24, 2019 How can I send a multicolored message? outputChatBox("A skin do ped foi definida para: " .. model) I want the model to be from a different color then the rest of the message, how to do it? Link to comment
Moderators Patrick Posted January 24, 2019 Moderators Share Posted January 24, 2019 Set outputChatBox 6th argument to true, after it you can use html (hex) color codes. outputChatBox("#ffffffA skin do ped foi definida para: #ff0000" .. model, root, 255, 255, 255, true) Here you can find the colorcodes: https://htmlcolorcodes.com/ Link to comment
Hugo_Almeidowski Posted January 24, 2019 Author Share Posted January 24, 2019 2 minutes ago, Patrick2562 said: Set outputChatBox 6th argument to true, after it you can use html (hex) color codes. outputChatBox("#ffffffA skin do ped foi definida para: #ff0000" .. model, root, 255, 255, 255, true) Here you can find the colorcodes: https://htmlcolorcodes.com/ I just managed to do it just now haha, thanks anyways! Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now