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 :mellow:
Re: Need help with resources
Thanks man. I appreciate it.