
Originally Posted by
ilikeUallNOgay
THANK YOU ALL GUYS FOR YOUR SUPPORT

(this place is awsome)

ok one more thing
if you say
SET_TEXT_FONT (0)
how can you identify what 0 is or later in that picture how can you identify numbers such as the ones in front of the SET TEXT DROPSHADOW
OR when you say set text color (r.g.b.a)
what is r and g and b and a
other stuff :
what does
bool
float
void mean ?
and how do you guy s understand the cordinates and offsets of stuff .......... it s like almost impossible to get stuff organized like three socks
If im not mistaken that is from three-socks?? Text library.
anyway you dont need to use whats inside the function
just do something like this
PHP Code:
set_up_draw(2, 0.3f, 0.3f, 255, 255, 255, 110);
draw_text("STRING", 0.05f, 0.1f, "Text To Display");
that needs to be looped every frame for it to show.
the type just determines how it looks,
width and height pretty self explanatory generally 0.3f for each is pretty good,
the r, g, b and a are the colours of it and they range from 0 to 255
r - red, g - green, b - blue, a -alpha(how bright the colours are)
for the draw text the first thing needs to be "STRING"
second is the x coord on screen, third is y coord. they both range from 0 to 1
last is the text to display