[Text Tutorial] [Client] Change glow color
1. Decompile your client with rabcdasm.
Open cmd.exe or make a .bat file with the following code:
2. Locate Player.class.asasm.
3. Open Player.class.asasm and goto line 6997 (If you never modified this file before).
4. Change the integer, get a color hex value and change it to a decimal, like 0000FF becomes 255.
5. Recompile your client with the following cmd.exe/batch command:
Result:

Open cmd.exe or make a .bat file with the following code:
Code:
swfdecompress CLIENTNAME.swf abcexport CLIENTNAME.swf rabcdasm CLIENTNAME-1.abc
2. Locate Player.class.asasm.
Code:
CLIENTNAME-1/com/company/assembleegameclient/objects/
3. Open Player.class.asasm and goto line 6997 (If you never modified this file before).
Code:
pushint 16711680
4. Change the integer, get a color hex value and change it to a decimal, like 0000FF becomes 255.
Code:
pushint 255
5. Recompile your client with the following cmd.exe/batch command:
Code:
rabcasm CLIENTNAME-1\CLIENTNAME-1.main.asasm abcreplace client.swf 1 CLIENTNAME-1\CLIENTNAME-1.main.abc
Result:




