EOSERV Forum > Client Editing > changing main color text location?
Page: << 1 >>
changing main color text location?
Author Message
Post #201327 changing main color text location?

the color text for login and such is 000000 does anyone know where it is located? I want to change to ffffff but there is so many 000000 that it would take me all day to find.

7 years, 25 weeks ago
Post #201484 Re: changing main color text location?

Fun fact: All of EO's clients text drawing is done via the GDI API ExtTextOutA onto simple device contexts. This means the colour of all drawn text is always set by a call to the SetTextColor API. It's super easy to find these calls rather than the colour value as the calls are static addresses and very very predictable.

UPDATE!

There are various ways to do this but obviously I'd just make an addon.. So, here it is:

  1. EOTextColour.eaf into your addons folder.
  2. EOTextColour.ini into your config folder.
  3. Make sure you already have the EOAPIHook addon installed.
  4. Edit the INI file to adjust colours to your desire. For example:

; Make all black text white
0x000000=0xFFFFFF

; Make all white text black
0xFFFFFF=0x000000

The default client colour values are included in the INI file as comments to help you out =]


---
http://sordie.co.uk
http://twitter.com/@SordieEO
7 years, 24 weeks ago
Post #202005 Re: changing main color text location?

But what if our friend MatthewS wanted to only change one place, welp. Hacking is the friend thanks Sordie

---
I not hacker

“Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its
whole life believing that it is stupid.” - Albert Einstein : Really Great Quote Ramy!
7 years, 17 weeks ago
Post #202027 Re: changing main color text location?

You like to bump old topics =D. Well, if enough people request single bits of text it is very trivial for me to add it to this addon.



---
http://sordie.co.uk
http://twitter.com/@SordieEO
7 years, 17 weeks ago
Page: << 1 >>

EOSERV Forum > Client Editing > changing main color text location?