Thread: Making client support more items

Results 1 to 2 of 2
  1. #1 Making client support more items 
    Registered Member
    Mikey`'s Avatar
    Join Date
    Dec 2007
    Age
    18
    Posts
    3,086
    Thanks
    202
    Thanked 617 Times in 293 Posts
    Rep Power
    495
    ~How to make you client support more items~
    Im not claiming this for my own im just posting because i think some people might need it


    First..
    Open class 8 and search this
    Code:
    anIntArray195 = new int[anInt203];
    Or in some client that have frugoo's modeling adding..
    Code:
    anIntArray195 = new int[anInt203+frugooItems];
    And replace it with this
    [code]anIntArray195 = new int[anInt203 + 20000];


    Or if you have froogo's way of adding models like i do
    Code:
    anIntArray195 = new int[anInt203+frugooItems + 20000];
    Now it supports 20000 more items or it gos to 20000 i forgot which.


    Then if you add a skillcape and you see this when you drop and try to pickup
    "... Skillcape"

    Go here: Fixing pickup glitch when item is on floor for item ids over the cache limit and follow that
    and it works already tried..

    Credits for the thread in the url above: Credits: Lumby

    Credits for this whole post: 100% whoever made it

    Tell me any errors in this post and i'll fix them.

    Quote Originally Posted by De.Bug View Post
    Mikey is working hard as hell, most dedicated programmer I've seen in awhile.


    RuneSource/Azure v3 - Updated and Fixed
     

  2. #2  
    Registered Member
    Shamon King's Avatar
    Join Date
    Aug 2007
    Posts
    3,157
    Thanks
    39
    Thanked 116 Times in 79 Posts
    Rep Power
    1160
    horrible way lol =P thats only to support new hard coded items
    i use a re factored client cus its much easier but i can rename it

    you want to go into class8 first and find
    Code:
     public static class8
    now in their you need to find
    Code:
     % 10;
    directly under it youd put
    Code:
    	if(i > 7619) { i = 7619; }
    this will allow your client not to crash if it incounters items above 7619

    but i may be wrong about your way
    anyways good job im sure both ways work
     


Thread Information
Users Browsing this Thread

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

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •