• 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.

Modify height of ready_counter.img

Initiate Mage
Joined
Apr 5, 2014
Messages
1
Reaction score
0
Hello, how could I change the height of the counter within the client? Since it does not allow to see the angles well and it looks ugly where it is located.

victhorinox123 - Modify height of ready_counter.img - RaGEZONE Forums
 
Junior Spellweaver
Joined
Dec 20, 2004
Messages
143
Reaction score
63
you need edit img file and change offset of the all images inside



Hello, how could I change the height of the counter within the client? Since it does not allow to see the angles well and it looks ugly where it is located.

victhorinox123 - Modify height of ready_counter.img - RaGEZONE Forums

need change header on all images inside

Example Img Header

DStream.ReadInt32();
DStream.ReadInt32(); //FileCount
CaseType = DStream.ReadByte();
Unk1 = DStream.ReadByte();
Unk2 = DStream.ReadByte();
Unk3 = DStream.ReadByte();
width = DStream.ReadInt32();
heigth = DStream.ReadInt32();
xCenter = DStream.ReadInt32(); << That byte you need change is width position
yCenter = DStream.ReadInt32(); << That byte you need change is heigth position
UnkB1 = DStream.ReadByte();
UnkB2 = DStream.ReadByte();
UnkB3 = DStream.ReadByte();
UnkB4 = DStream.ReadByte();
Unk4 = DStream.ReadInt32();
Unk5 = DStream.ReadInt32();
Unk6 = DStream.ReadInt32();
DataLeng = DStream.ReadInt32();
 
Back
Top