Hello again,
He wanted to know how to change the command like:
/Admin_wall
to
/All
and has as you increase the number of caracters in the chat lobby, because sometimes when you send the /admin_wall message is incomplete and .-.
July 08 archives
Printable View
Hello again,
He wanted to know how to change the command like:
/Admin_wall
to
/All
and has as you increase the number of caracters in the chat lobby, because sometimes when you send the /admin_wall message is incomplete and .-.
July 08 archives
with ASM
yes try to search
I saw one before
also theres an other way but forgot it
hex edit with "hex workshop" search for command that you want to change and then change it o.o
then edit it with asm
You can't edit the string so it's longer.
LikeThisCommand
LikeThisSecondCommand
It won't work unless you edit it with a debugger such as OllyDbg.
It's just like doing it with an hex editor, you don't need to do any Assembly because it's a text-string, it gets PUSH'd, and you don't even need to edit that unless, like I said, you want to add a longer string.
I've tried at least one sequence, /all .-.
Please don't flame, I will just try to help ;)
Open with Hex Editor.
Search for /admin_wall
change to /all
go to the left and click on the hex that is past the code (should be highlighted i think, click the next one I believe)
Start putting in 0s till the right deletes every letter of the rest of the command with ....s
Just change the name of your command in Hex Workshop and replace the useless bytes with 00.
Done.
its from Hex Editor edit th runnable srch for it and edit
It works to do:
Download Hex Editor / Hex Workshop
Run the file in the ediotr and then use the search function (CTRL+F)
Search for /admin_wall then edit it so you will get /ALLin_wall then nop the "in_wall" not just use spaces but nop it..
Regards,
moi
PROGRAM: HEX WORKSHOP
HOW TO: CTRL+F
TYPE: TEXT STRING
VALUE: /admin_wall
HEX: 2F61 646D 696E 5F77 616C 6C
/admin_wall <......>
TO
/all <......>
Binary:
2F61646D696E5F77616C6C203CB8DEBDC3C1F63E
TO
2F616C6C203C2E2E2E2E2E2E3E00000000000000
Just upload your runnable and tell me what commands you want to change and to what. I seriously hate it when you keep asking even though you just have to search and replace.