Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

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