B1ack_Wh1te Posted September 18, 2017 Share Posted September 18, 2017 Hi. This memory address changes the color of money to the amount indicated in the value I wrote "0xFFFFFFFF" there, the color should be white, but it's orange. Where is the mistake? Link to comment Share on other sites More sharing options...
OrionSR Posted September 18, 2017 Share Posted September 18, 2017 (edited) I'm not sure why your modification didn't work. It seems logical on the surface. Maybe something can be learned from your code line. https://gtagmodding.com/forums/index.php?s=&showtopic=265&view=findpost&p=1222 However, according to the information surrounding the color table linked above, you are trying to change the color of green. So anything that uses color ID 1 will use your new color if you get it working. 1 - Cash/Money, Entered Car Name Text, Green Stuff Instead, since there's already a white in the address for color ID 4, you might want to change the color ID for money to 4 and leave green alone for anything else that needs it. The address for the money color ID is posted earlier on the page. 0x58F492 Edited September 18, 2017 by OrionSR B1ack_Wh1te 1 Link to comment Share on other sites More sharing options...
B1ack_Wh1te Posted September 19, 2017 Author Share Posted September 19, 2017 I'm not sure why your modification didn't work. It seems logical on the surface. Maybe something can be learned from your code line. https://gtagmodding.com/forums/index.php?s=&showtopic=265&view=findpost&p=1222 However, according to the information surrounding the color table linked above, you are trying to change the color of green. So anything that uses color ID 1 will use your new color if you get it working. 1 - Cash/Money, Entered Car Name Text, Green Stuff Instead, since there's already a white in the address for color ID 4, you might want to change the color ID for money to 4 and leave green alone for anything else that needs it. The address for the money color ID is posted earlier on the page. 0x58F492 Thank you! I looked at the article on the link and everything turned out. OrionSR 1 Link to comment Share on other sites More sharing options...