Sex* Posted February 23, 2013 Share Posted February 23, 2013 So i made a script works good in 800x600 (im using this because i own shit pc), but then i got that finished i checked in other resoulutions. And in different places..what could i expect. So i used guiGetSreenSize but i was using the script normally with 800x600 so i divided the cordinates with them but it didnt work! It messed even more up. This was before and working good on 800x600: function renderPlayerLogin ( ) dxDrawColorText("#ffffff".. messageLogin,525.0,300.0,y/550,40.0,tocolor(200,0,0,255),1.1,"default-bold","right","top",false,false,false) dxDrawImage (500.0,300.0,y/40,17,"icon/login.png",0,-120) end And after modding it with GuiGetScreenSize and dividing numbers with 800x600: function renderPlayerLogin ( ) dxDrawColorText("#ffffff".. messageLogin,y*0.656,x*0.5,y*0.687,x*15.0,tocolor(200,0,0,255),1.1,"default-bold","right","top",false,false,false) dxDrawImage (500.0,300.0,y/40,17,"icon/login.png",0,-120)--image not done yet end addEventHandler ( "onClientRender", getRootElement(), renderPlayerLogin ) ofc i added this on top of the file: x,y = guiGetScreenSize() Link to comment
Fury Posted February 23, 2013 Share Posted February 23, 2013 you are using it wrong. try to make something like that; lets say your text's sizes are 250x250 and you want to put this text middle of screen. then coordinates must be somethig like that; x/2-125, y/2-125 i hope you got the idea. good luck. Link to comment
Sex* Posted February 23, 2013 Author Share Posted February 23, 2013 Nope in the right of the screen...i want to put. Link to comment
Fury Posted February 23, 2013 Share Posted February 23, 2013 Nope in the right of the screen...i want to put. dont you have a logic? try x-125 edit: read this viewtopic.php?f=91&t=41865&p=423999#p423999 Link to comment
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