Thread: stacking

Results 1 to 6 of 6
  1. #1 stacking 
    Banned oblivion-rs's Avatar
    Join Date
    Dec 2008
    Age
    29
    Posts
    1,041
    Thanks given
    3
    Thanks received
    12
    Rep Power
    0
    Hey well i was wondering how could i make it so i could stack items ontop of each other... Thanks
    Reply With Quote  
     

  2. #2  
    q.q


    Join Date
    Dec 2010
    Posts
    6,519
    Thanks given
    1,072
    Thanks received
    3,535
    Rep Power
    4752
    item.java there's a boolean or method for it.
    Reply With Quote  
     

  3. #3  
    Banned oblivion-rs's Avatar
    Join Date
    Dec 2008
    Age
    29
    Posts
    1,041
    Thanks given
    3
    Thanks received
    12
    Rep Power
    0
    i searched it did not find anything
    Reply With Quote  
     

  4. #4  
    Registered Member
    thim slug's Avatar
    Join Date
    Nov 2010
    Age
    28
    Posts
    4,132
    Thanks given
    1,077
    Thanks received
    1,137
    Rep Power
    5000
    Trust us, there is one there, keep looking.
    Reply With Quote  
     

  5. #5  
    q.q


    Join Date
    Dec 2010
    Posts
    6,519
    Thanks given
    1,072
    Thanks received
    3,535
    Rep Power
    4752
    public static boolean[] itemStackable = new boolean[Config.ITEM_LIMIT];
    public static boolean[] itemIsNote = new boolean[Config.ITEM_LIMIT];
    public static int[] targetSlots = new int[Config.ITEM_LIMIT];
    static {
    int counter = 0;
    int c;

    try {
    FileInputStream dataIn = new FileInputStream(new File("./Data/data/stackable.dat"));
    while ((c = dataIn.read()) != -1) {
    if (c == 0) {
    itemStackable[counter] = false;
    } else {
    itemStackable[counter] = true;
    }
    counter++;
    }
    dataIn.close();
    itemStackable[13879] = true;
    itemStackable[13883] = true;
    itemStackable[15243] = true;
    itemStackable[12158] = true;
    itemStackable[12159] = true;
    itemStackable[12160] = true;
    itemStackable[12163] = true;
    itemStackable[12183] = true;
    } catch (IOException e) {
    System.out.println("Critical error while loading stackabledata! Trace:");
    e.printStackTrace();
    }
    That's mine, you can add it with itemstackable or edit the stackable.dat in ur cache
    Reply With Quote  
     

  6. Thankful user:


  7. #6  
    Banned oblivion-rs's Avatar
    Join Date
    Dec 2008
    Age
    29
    Posts
    1,041
    Thanks given
    3
    Thanks received
    12
    Rep Power
    0
    thanks harlan it worked
    Reply With Quote  
     


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. [614] Bank Stacking [REQ] - Will Pay
    By .alycia in forum Requests
    Replies: 3
    Last Post: 08-20-2010, 12:33 PM
  2. Shard Rev Stacking
    By DefNotVastico in forum Snippets
    Replies: 7
    Last Post: 01-31-2010, 06:27 AM
  3. Arrow Stacking
    By Aza in forum Help
    Replies: 0
    Last Post: 08-23-2009, 02:23 AM
  4. Item stacking
    By Tyler in forum Help
    Replies: 12
    Last Post: 03-21-2009, 01:15 AM
  5. Me Speed Stacking 15.54 seconds!
    By Jodan Belfort in forum Videos
    Replies: 9
    Last Post: 01-19-2008, 10:00 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •