Need help with resources

Results 1 to 3 of 3
  1. #1
    Enthusiast Bradix0805 is offline
    MemberRank
    Apr 2022 Join Date
    37Posts

    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.


  2. #2
    Apprentice legendtantra is offline
    MemberRank
    Aug 2014 Join Date
    20Posts

    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.

  3. #3
    Enthusiast Bradix0805 is offline
    MemberRank
    Apr 2022 Join Date
    37Posts

    Re: Need help with resources

    Thanks man. I appreciate it.



Advertisement