CLEO Help Help

CLEO related
Status
Not open for further replies.

ThermaL

Expert
Joined
Oct 23, 2013
Messages
1,593
Reaction score
3
Code:
{$VERSION 3.1.0027}
{$CLEO .cs}

thread 'CHAT'

if 
8AF7: get_samp_base_to 29@
then 
0A93: end_custom_thread
end
repeat 
wait 400
until 0AFA: is_samp_structures_available

:CHAT_01
wait 0
if
0AB0: key_pressed 123
else_jump @CHAT_01
0AF8: samp add_message_to_chat "Guy: I'm stupid" color 0xFFFFFF
jump @CHAT_01
How do I make "Guy" red and "I'm stupid" white ?
 

Opcode.eXe

Expert
Joined
Feb 18, 2013
Messages
1,498
Reaction score
242
Location
( ͡° ͜ʖ ͡°)
1.) Visit http://www.colorpicker.com/

Select the color RED.

On the top u will see something like this: # FF0000
Now {FF0000} is red.

Select the color WHITE.
On the top u will see something like this: # FFFFFF
Now {FFFFFF} is white.

Then paste the color code into your CLEO:
0AF8: samp add_message_to_chat "{FF0000}Guy: {FFFFFF} I'm stupid" color 0xFFFFFF
 
Status
Not open for further replies.
Top