Thanks!, I don't know why this is not worked last timeOpcode.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