Thread: Bank was made

Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 36
  1. #21  
    Registered Member Hyperion.'s Avatar
    Join Date
    Jun 2018
    Posts
    124
    Thanks given
    0
    Thanks received
    28
    Rep Power
    26
    Best click bait title of 2018 so far.
    Attached image
    Online

    PM me for Discord link
    Attached image
    Reply With Quote  
     

  2. Thankful user:


  3. #22  
    Registered Member

    Join Date
    Oct 2017
    Posts
    649
    Thanks given
    6
    Thanks received
    119
    Rep Power
    161
    looks great
    Reply With Quote  
     

  4. Thankful user:


  5. #23  
    Donator


    Join Date
    Sep 2016
    Posts
    131
    Thanks given
    115
    Thanks received
    52
    Rep Power
    77
    This is on my list of things to do, nicely executed. Are the tabs being handled as separate containers, as one container with an additional array of items in each tab, or as one container with tab values added to each item? I was unsure what the best way to handle it would be for doing something like this. Looks great, and the only thing I think you should add is tab rearranging like OSRS has.
    If a man does not have the sauce, then he is lost. But the same man can be lost in the sauce.
    Reply With Quote  
     

  6. Thankful user:


  7. #24  
    ¯\_(ツ)_/¯


    Join Date
    Jul 2014
    Posts
    1,803
    Thanks given
    928
    Thanks received
    550
    Rep Power
    299
    Quote Originally Posted by xplicit View Post
    This is on my list of things to do, nicely executed. Are the tabs being handled as separate containers, as one container with an additional array of items in each tab, or as one container with tab values added to each item? I was unsure what the best way to handle it would be for doing something like this. Looks great, and the only thing I think you should add is tab rearranging like OSRS has.
    All individual containers, easier to keep track of.

    Tab rearranging is what? where I can drag a tab and swap the position with another one?
    Reply With Quote  
     

  8. Thankful user:


  9. #25  
    Respected Member


    Kris's Avatar
    Join Date
    Jun 2016
    Age
    26
    Posts
    3,638
    Thanks given
    820
    Thanks received
    2,642
    Rep Power
    5000
    Quote Originally Posted by Hitten View Post
    All individual containers, easier to keep track of.

    Tab rearranging is what? where I can drag a tab and swap the position with another one?
    https://puu.sh/AJpG7/501b9ebb63.gif
    It's this.

    Try writing bank with just one container(that's how OSRS does it). Becomes quite a bit more complex.
    Attached image
    Reply With Quote  
     

  10. Thankful user:


  11. #26  
    ¯\_(ツ)_/¯


    Join Date
    Jul 2014
    Posts
    1,803
    Thanks given
    928
    Thanks received
    550
    Rep Power
    299
    Quote Originally Posted by Kris View Post
    https://puu.sh/AJpG7/501b9ebb63.gif
    It's this.

    Try writing bank with just one container(that's how OSRS does it). Becomes quite a bit more complex.
    Ahh yeah that's what I thought, was planning on adding that sometime soon.

    Cba to put extra work to put it in one container for pretty much the same result, doesn't seem worth it
    Reply With Quote  
     

  12. #27  
    Donator


    Join Date
    Sep 2016
    Posts
    131
    Thanks given
    115
    Thanks received
    52
    Rep Power
    77
    Quote Originally Posted by Kris View Post
    https://puu.sh/AJpG7/501b9ebb63.gif
    It's this.

    Try writing bank with just one container(that's how OSRS does it). Becomes quite a bit more complex.
    Yeah that's the rearranging I was talking about.

    Do you know how OSRS stores the data for the tabs? The possibilities that come to mind for me like mentioned in my previous comment are either an array containing how many items are in each tab or adding an additional value to each item that contains its tab.
    If a man does not have the sauce, then he is lost. But the same man can be lost in the sauce.
    Reply With Quote  
     

  13. #28  
    Donator

    i dds you's Avatar
    Join Date
    Jun 2013
    Posts
    831
    Thanks given
    678
    Thanks received
    160
    Rep Power
    92
    great clickbait, nice work hitten - always love seeing your creations

    Reply With Quote  
     

  14. Thankful user:


  15. #29  
    Respected Member


    Kris's Avatar
    Join Date
    Jun 2016
    Age
    26
    Posts
    3,638
    Thanks given
    820
    Thanks received
    2,642
    Rep Power
    5000
    Quote Originally Posted by xplicit View Post
    Yeah that's the rearranging I was talking about.

    Do you know how OSRS stores the data for the tabs? The possibilities that come to mind for me like mentioned in my previous comment are either an array containing how many items are in each tab or adding an additional value to each item that contains its tab.
    Yes. One container. Uses 9 varbits to define tab sizes. The "main tab" (AKA the very first, general one) is not amongst those sizes, and the items stored in that given tab have to actually be added to the end of the container(basically as far as the container is concerned, items start with the first(not the main tab) tab, and end with the main tab. The reasoning for that is quite simple - it saves bandwidth since when you shift the items in the main tab - which is used most often - you will only have to update the very end of the container(since the items are in the very end of the container); if it was the first, shifting the items would result in the entire container being shifted, which is quite heavy on bandwidth.
    Attached image
    Reply With Quote  
     

  16. Thankful user:


  17. #30  
    Donator


    Join Date
    Sep 2016
    Posts
    131
    Thanks given
    115
    Thanks received
    52
    Rep Power
    77
    Quote Originally Posted by Kris View Post
    Yes. One container. Uses 9 varbits to define tab sizes. The "main tab" (AKA the very first, general one) is not amongst those sizes, and the items stored in that given tab have to actually be added to the end of the container(basically as far as the container is concerned, items start with the first(not the main tab) tab, and end with the main tab. The reasoning for that is quite simple - it saves bandwidth since when you shift the items in the main tab - which is used most often - you will only have to update the very end of the container(since the items are in the very end of the container); if it was the first, shifting the items would result in the entire container being shifted, which is quite heavy on bandwidth.
    Thanks for the explanation!
    If a man does not have the sauce, then he is lost. But the same man can be lost in the sauce.
    Reply With Quote  
     

Page 3 of 4 FirstFirst 1234 LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. [831] Bank fix ( Made Simple )
    By Ledion in forum Tutorials
    Replies: 9
    Last Post: 09-14-2017, 08:22 PM
  2. Replies: 3
    Last Post: 07-12-2013, 03:43 AM
  3. How firefox was made lol
    By Banter in forum Humor
    Replies: 24
    Last Post: 06-10-2012, 10:16 AM
  4. New teleporting interface (Was made on request)
    By Its Just Me in forum Snippets
    Replies: 12
    Last Post: 01-21-2012, 11:11 AM
  5. This account was made 2008
    By jesse omg man in forum The Red Carpet
    Replies: 1
    Last Post: 03-21-2011, 01:21 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •