• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[TUT] ASM ; Changing Dev & Admin Color.

Status
Not open for further replies.
Newbie Spellweaver
Joined
Jun 21, 2006
Messages
74
Reaction score
2
looking into that in my spare time lol.

But id say just go to the area where tablist is made up of, and look around a bit.

I've tried a few things, but all I came up with is when you press tab, you crash >.<
 
Experienced Elementalist
Joined
Aug 11, 2009
Messages
202
Reaction score
56
Hard for me i finished 0049EF18 line and lost :(: Help? plz , thank you nice tut 10/10

Code:
0049EF18
0049EF1C
0049EF20
0049EF24
0049EF29
Right click these and choose Binary > Fill with NOP's

then you'll get a bunch of NOP's.
Find 0049EF18 again
fill it in with
Code:
MOV EAX,DWORD PTR SS:[ESP+C]

under that fill in
Code:
JMP 005E50E3
it should look like this :
Code:
0049EF18     8B4424 0C      MOV EAX,DWORD PTR SS:[ESP+C]
0049EF1C     E9 C2611400    JMP xiao.005E50E3
0049EF21     90             NOP
0049EF23     90             NOP
0049EF24     90             NOP
0049EF25     90             NOP
0049EF26     90             NOP
0049EF27     90             NOP
0049EF28     90             NOP
0049EF29     90             NOP
0049EF2A     90             NOP
0049EF2B     90             NOP
0049EF2C     90             NOP
0049EF2D     90             NOP
and under JMP 005E50E3, fill in
Code:
JMP SHORT 0049EF2E
and then it should look like this :
Code:
0049EF18     8B4424 0C      MOV EAX,DWORD PTR SS:[ESP+C]
0049EF1C     E9 C2611400    JMP xiao.005E50E3
0049EF21     EB 0B          JMP SHORT xiao.0049EF2E
0049EF23     90             NOP
0049EF24     90             NOP
0049EF25     90             NOP
0049EF26     90             NOP
0049EF27     90             NOP
0049EF28     90             NOP
0049EF29     90             NOP
0049EF2A     90             NOP
0049EF2B     90             NOP
0049EF2C     90             NOP
0049EF2D     90             NOP
then go to 0049EF1C,
Right click and select Follow or simply click it and press enter.
(It's the follow hotkey).


Code:
0049EF18     8B4424 0C      MOV EAX,DWORD PTR SS:[ESP+C]
0049EF1C     E9 C2611400    JMP xiao.005E50E3                        <<<<< This one.
0049EF21     EB 0B          JMP SHORT xiao.0049EF2E
0049EF23     90             NOP
0049EF24     90             NOP
0049EF25     90             NOP
0049EF26     90             NOP
0049EF27     90             NOP
0049EF28     90             NOP
0049EF29     90             NOP
0049EF2A     90             NOP
0049EF2B     90             NOP
0049EF2C     90             NOP
0049EF2D     90             NOP

It will take you to the codecave.

I think you can do it from now on.
oO

Really nice tutorial! 10/10 :)
 
Skilled Illusionist
Joined
Mar 15, 2009
Messages
331
Reaction score
15
lol epic bump o_O. Anyways, I'll say good tutorial now, cuz I didn't wanna say it before, because i didn't wanna bump it :p
 
Newbie Spellweaver
Joined
Sep 14, 2009
Messages
18
Reaction score
0
Step 1. Nop The Lines
Go to line ; 0049EF18
Alt+G

I do this first part of the tut and instead of this code appearing:

Code:
0049EF18  |. 884424 08      MOV BYTE PTR SS:[ESP+8],AL
0049EF1C  |. 884424 0B      MOV BYTE PTR SS:[ESP+B],AL
0049EF20  |. 8B4424 0C      MOV EAX,DWORD PTR SS:[ESP+C]
0049EF24  |. C64424 09 80   MOV BYTE PTR SS:[ESP+9],80
0049EF29  |. C64424 0A 40   MOV BYTE PTR SS:[ESP+A],40


[/quote]

It appears me this one:

[code]

0049EF18  |.  884424 08     MOV BYTE PTR SS:[ARG.1],AL
0049EF1C  |.  884424 0B     MOV BYTE PTR SS:[ARG.1+3],AL
0049EF20  |.  8B4424 0C     MOV EAX,DWORD PTR SS:[ARG.2]
0049EF24  |.  C64424 09 80  MOV BYTE PTR SS:[ARG.1+1],80
0049EF29  |.  C64424 0A 40  MOV BYTE PTR SS:[ARG.1+2],40

What i do now......help plz.
 
Skilled Illusionist
Joined
Mar 15, 2009
Messages
331
Reaction score
15
holy crap, in my 1 week experience of asm (lol), I've never seen ARG used before :O. But other than that ARG thing, everything else looks the same. Try just following it using what you have, and if it doesn't work, then maybe use the xiao runnable.
 
Newbie Spellweaver
Joined
Jun 27, 2009
Messages
14
Reaction score
0
holy crap, in my 1 week experience of asm (lol), I've never seen ARG used before :O. But other than that ARG thing, everything else looks the same. Try just following it using what you have, and if it doesn't work, then maybe use the xiao runnable.

Ty for help but i managed to solve the problem by myself, the ARG Values only appeared cuz iwas loading the runnable INSIDE the client and not outside, when i loaded it outside it did appeared the ESP value, hope this helps a lo of people with same problem as me :tongue:.

EDIT2:This edit is only to say to forget what says above.

EDIT3: This edit is to explain why i got ARG Values instead of ESP Value when loading the runnable inside the client, the answear is that my OLLYDBG didnt had any Plugins at all! It was screwing me all up, then i downloaded another OLLYDBG that had all plugins for it(i guess), and when i loaded my runnable with it with the runnable inside the client it showed me the ESP value, all resumed --> Problem Solved.
 
Last edited:
Newbie Spellweaver
Joined
May 27, 2009
Messages
68
Reaction score
3
I do not understand that part. can someone explain me better?

Like, the colors are in hex for example: # 000000 and there otra boot thing .. could someone explain me this?





"Step 5. Coloring It
Well u all know RRGGBB? in HEX?
Like ; #FF0000 = Red
This is most like the same, only it has a Alpha Channel on it.

Line : 005E50E3 = RR
Line : 005E50E8 = GG
Line : 005E50ED = BB
Line : 005E50F2 = AA

Change the it however u like
Here is a Color Scheme Click Here
Example for Red :
Code:
005E50E3 C64424 08 FF MOV BYTE PTR SS:[ESP+8],0FF // RED
005E50E8 C64424 09 00 MOV BYTE PTR SS:[ESP+9],0 // GREEN
005E50ED C64424 0A 00 MOV BYTE PTR SS:[ESP+A],0 // BLUE
005E50F2 C64424 0B FF MOV BYTE PTR SS:[ESP+B],0FF // ALPHA"
 
Legendary Battlemage
Joined
Dec 21, 2007
Messages
645
Reaction score
85
Urmm can I ask where to get this ASM program?
 
Newbie Spellweaver
Joined
Mar 31, 2009
Messages
25
Reaction score
0
Has anyone come up with the fix for the ingame tab list fix?

Lol epic bump i'm just gonna remake a new post
 
Newbie Spellweaver
Joined
Mar 31, 2009
Messages
25
Reaction score
0
oh yeah about this how can i do it in ADMIN?

what do you mean?

and has anyone figured out the tablist? i'm about to go looking through other gunz clients lol it's the only way since no one on here will explain =\
 
Status
Not open for further replies.
Back
Top