Hello, i add color for 252
from
Code:1)Go to address & Assemble the following
004A17B2 - JNZ [Code cave address]
2)Assemble the following
CMP ECX,[Grade in hexadecimal]
JNZ SHORT [New Grade Address] //You need to jump at the next CMP ECX,[Grade in hexadecimal]
MOV ESI,DWORD PTR SS:[EBP+10]
TEST ESI,ESI
MOV EDX,DWORD PTR SS:[EBP+C]
MOV BYTE PTR SS:[EBP+8],FF //The R
MOV BYTE PTR SS:[EBP+9],80 //The G
MOV BYTE PTR SS:[EBP+A],40 //The B
MOV BYTE PTR SS:[EBP+B],FF //The A
MOV EAX,DWORD PTR SS:[EBP+8]
MOV DWORD PTR DS:[EDX],EAX
MOV AL,1
POP ESI
POP EBP
RETN
- NOTE: Repeat the above code till (n-1) grades u need
3)For the last grade it should be like this
CMP ECX,[Grade in hexadecimal]
JNZ 004A17F3 //You are jumping back to Administrator Grade
MOV ESI,DWORD PTR SS:[EBP+10]
TEST ESI,ESI
MOV EDX,DWORD PTR SS:[EBP+C]
MOV BYTE PTR SS:[EBP+8],FF //The R
MOV BYTE PTR SS:[EBP+9],80 //The G
MOV BYTE PTR SS:[EBP+A],40 //The B
MOV BYTE PTR SS:[EBP+B],FF //The A
MOV EAX,DWORD PTR SS:[EBP+8]
MOV DWORD PTR DS:[EDX],EAX
MOV AL,1
POP ESI
POP EBP
RETN
Well, tab list color don't work, help please.

