Jump to content

Remove italic orange text from gm's


Go to solution Solved by Denis,

Recommended Posts

  • Premium

 

I can not recompil the launcher at moment, but I know that we can disable the gm function on the gmae because with my 2089m i've do it, here's the dif:

This difference file is created by The Interactive Disassembler
game_r2089
000E87FF: 05 00

 

It fixable from clientside.

 

If you can't recompile the launcher, the logic put this functions in "WHISPER_TYPE_GM" as you can see in PytyhonManager :

        case CPythonChat::WHISPER_TYPE_GM:
            pChatLine->Instance.SetColor(D3DXCOLOR(1.0f, 0.632f, 0.0f, 1.0f));

 

So you have to go in input_main.cpp and delete (the only functions about GM chat in serverside)

            if (ch->IsGM())
                bType = (bType & 0xF0) | WHISPER_TYPE_GM;

 

like Denis said, and, it's logic, if this functions isn't declared in the game, the client can't use it. (Expert in C++, feel free to correct me if you're think i'm wrong".

 

So, if it doesn't work, it's strange, but if you want, you can delete "gamemastermark" from whisperdialog.py and uiwhisper.py

  • Love 1
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.