Re: Help with client editing
I think packets can disable the first message. I don't get that message unless I send CLogin::OnAccountInfoResult.
The second one is client-sided. Changing either of the bubbles' text is possible in STREDIT, but if you want to physically remove the window, you need to find the actual address where it is Drawing the chat bubble in the client and nop that function call.
Also, if that's an address in a hex editor, that won't work in something like olly or IDA (virtual address != the offset)
What version are you on? I can try finding the addresses and mess with it if I have time if you'd like.
Re: Help with client editing
v83, I found the second message with Stredit.
I tried nopping with ollydbg but I crashed as a result
Re: Help with client editing
Quote:
Originally Posted by
las systos
v83, I found the second message with Stredit.
I tried nopping with ollydbg but I crashed as a result
what address did you nop in olly? try nopping 00604EDF, looks like thats the address call for the draw, or do you want me to nop it for u
edit: if that dont work, u can also try nopping 00604CEF
Re: Help with client editing
I tried nopping: 00604EC8 cause i found that in stredit
I just tried nopping your addresses:
00604EDF - nothing happens.
00604CEF - I crash after selecting the channel.
When I nop one address, all these addresses get nopped too, is that supposed to happen?
https://forum.ragezone.com/cache.php...%2FWgTtwsH.png
Re: Help with client editing
Quote:
Originally Posted by
las systos
I tried nopping:
00604EC8 cause i found that in stredit
I just tried nopping your addresses:
00604EDF - nothing happens.
00604CEF - I crash after selecting the channel.
When I nop one address, all these addresses get nopped too, is that supposed to happen?
https://forum.ragezone.com/cache.php...%2FWgTtwsH.png
Code:
_bstr_t::_bstr_t(&v13.baseclass_0, "Please select the World you would like to play in.");
006281D9 -> MakeBalloon
0062829F -> DrawText
4421;"Use the Tab key to toggle the menu."
00604CEF -> MakeBalloon
00604CEF -> DrawText
I'll test them out on my v83. As for your question about nops, that is when you do 'Fill with NOPS' in the checkbox. You can try it without filling with nops.
Re: Help with client editing
Don't nop the message itself, nop the call to creating the box
Re: Help with client editing
I only have the fill with nops option :o
https://forum.ragezone.com/cache.php...%2FwhFXNzv.png
https://forum.ragezone.com/cache.php...%2FFNIHC5M.png
Thanks for the addresses btw :)
edit:
testing 006281D9 nopping now
- - - Updated - - -
006281D9 nopping = crash
sunnyboy, according to Eric's message, the address for the second text bubble are for both making the bubble and setting the text.
Re: Help with client editing
Quote:
Originally Posted by
las systos
snip
Ctrl + G to the virtual address (VA/API), and it will be highlighted. Press the space bar and type 'nop'. Tick off the 'Fill with NOPS' option and click assemble.
Re: Help with client editing