Joel benjamin Posted December 15, 2014 Share Posted December 15, 2014 Hey people I have created a mission and I want to make a timer and also add an image during the mission. Answer me ,silent answer me . Link to comment Share on other sites More sharing options...
JohnDoe4444 Posted December 15, 2014 Share Posted December 15, 2014 for image on screen, first load txd directory with: 0390: load_txd_dictionary 'LD_BEAT' NOTE: put txd file(s) in Models/TXD then load image file of texture file 038F: load_texture "DOWN" as 1 // Load dictionary with 0390 first OK, then here you go: 038D: draw_texture 1 position $TEMPVAR_FLOAT_1 $TEMPVAR_FLOAT_2 size [email protected] [email protected] RGBA 128 128 128 255 or 074B: draw_texture 20 position [email protected] [email protected] scale [email protected] [email protected] angle $TEMPVAR_ANGLE color_RGBA 220 220 220 [email protected] it's a lil' hard because of texture position and size whenever it's the only choice. for removing a texture: 03F0: enable_text_draw 0 and then 0391: release_textures Link to comment Share on other sites More sharing options...
Joel benjamin Posted December 16, 2014 Author Share Posted December 16, 2014 Thank u so much JohnDoe4444 1 Link to comment Share on other sites More sharing options...
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