CLEO Help Hack Menu

CLEO related
Status
Not open for further replies.

ejexter

Well-known member
Joined
Feb 21, 2014
Messages
211
Reaction score
0
Somebody can give me explain how to use Render commands?  :computer_guy:
Like:

Render.DrawBorderedBox
Render.DrawText
 

Opcode.eXe

Expert
Joined
Feb 18, 2013
Messages
1,492
Reaction score
236
Location
( ͡° ͜ʖ ͡°)
It's easy? What do you not understand?

:LOOP
WAIT 0
0B69: render draw_box_pos 400 450 size 40 45 color 0xFF00FF00
JUMP @LOOP

That will draw an box for example.

If you want to draw a text you first have to create a font:

0B6D: render 0@ = create_font "UGBASE" height 10 flags 0

and then draw a text u want:

:LOOP
WAIT 0
0B6F: render font 0@ draw_text "LOOLLL IM A TEXT" pos 400 451 color 0xFF00FF00
JUMP @LOOP
 

ejexter

Well-known member
Joined
Feb 21, 2014
Messages
211
Reaction score
0
Opcode.eXe link said:
It's easy? What do you not understand?

:LOOP
WAIT 0
0B69: render draw_box_pos 400 450 size 40 45 color 0xFF00FF00
JUMP @LOOP

That will draw an box for example.

If you want to draw a text you first have to create a font:

0B6D: render 0@ = create_font "UGBASE" height 10 flags 0

and then draw a text u want:

:LOOP
WAIT 0
0B6F: render font 0@ draw_text "LOOLLL IM A TEXT" pos 400 451 color 0xFF00FF00
JUMP @LOOP
Thanks!, I don't know why this is not worked last time
 
Status
Not open for further replies.
Top