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!

Need help with resources

Newbie Spellweaver
Joined
Apr 21, 2022
Messages
47
Reaction score
3
Guys, if you don't mind me asking. I'm trying to add some things on my clientRes. Especially with resources and stuff. How do i get the value of those resources by the way. for example :
icon_wpn_19th_sword2h.bmp,3128,3051751473
MON_Ancient_Vasabhum.dds,42064,16013715

how do i find the ,3128,3051751473 and 42064,16013715.
 
Newbie Spellweaver
Joined
Aug 5, 2014
Messages
19
Reaction score
0
Hi Bradix0805, this csv works like this:

icon_wpn_19th_sword2h.bmp,3128,3051751473
<icon_name>,<icon_size_in_bytes>,<aggregate_size_in_bytes>

For exampled if you want to add a simple icon with a size of 2KB (2048 Bytes), just add this at end of file:

icon_wpn_19th_sword2h.bmp,3128,3051751473
simple_icon.bmp,2048,3051753521 <- Added row

And you have to edit the first line of csv like this:

## Original first row
1,1028,3051751473

## Explained first row
<start_row>,<last_row>,<total_size_in_bytes> (same as last row aggregate size)

Go back to the example, the first line should be like this:

1,1029,3051753521

Don't hate me for my english :mellow:
 
Last edited:
Upvote 0
Back
Top