kewiiNNN Posted October 15, 2015 Share Posted October 15, 2015 How to change Dollars to Euro? Link to comment
Noki Posted October 15, 2015 Share Posted October 15, 2015 You can always fetch data from something like this, using a PHP script on your server. Just use fetchRemote accompanied by a PHP script to get the live conversion rate. Link to comment
MIKI785 Posted October 15, 2015 Share Posted October 15, 2015 I doubt he meqnt this, id say he wants to change the sign in HUD, either make your own HUD or maybe if its a texture then change it using shaders, but im not sure if it is a texture. Link to comment
PlayAkoya Posted October 31, 2015 Share Posted October 31, 2015 Here it should be after you choose: https://community.multitheftauto.com/in ... ls&id=7401 Link to comment
sanyisasha Posted November 1, 2015 Share Posted November 1, 2015 Use a simple operator. Like this: local mymoney = 300 -- In dollar local newmoney = mymoney*0.86 -- 1$ is 0.86 € outputChatBox("$"..mymoney.." is €"..newmoney) --output: $300 is €258 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