-
Enthusiast
Need help with resources
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.
-
-
Apprentice
Re: Need help with resources
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
Last edited by legendtantra; 06-06-22 at 05:17 PM.
-
Enthusiast
Re: Need help with resources
Thanks man. I appreciate it.