Thread: [Pi] Spam Noted Item Dupe

Page 1 of 2 12 LastLast
Results 1 to 10 of 17
  1. #1 [Pi] Spam Noted Item Dupe 
    Registered Member
    Join Date
    Oct 2010
    Posts
    21
    Thanks given
    0
    Thanks received
    1
    Rep Power
    1
    im new to project insanity and i need help with this dupe,
    Dupe:
    trade another player
    when trade window pops up, spam a noted item.
    then the noted item dupes itself.
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    Oct 2010
    Posts
    21
    Thanks given
    0
    Thanks received
    1
    Rep Power
    1
    bump... anyone?
    Reply With Quote  
     

  3. #3  
    Donator


    Join Date
    Feb 2009
    Age
    30
    Posts
    2,128
    Thanks given
    261
    Thanks received
    280
    Rep Power
    563
    replace your bankx2 with mine

    Code:
    package server.model.players.packets;
    
    import server.model.players.Client;
    import server.model.players.PacketType;
    /**
     * Bank X Items
     **/
    public class BankX2 implements PacketType {
        @Override
        public void processPacket(Client c, int packetType, int packetSize) {
            int Xamount = c.getInStream().readDWord();
            if (Xamount == 0)
                Xamount = 1;
            switch(c.xInterfaceId) {
    
                case 5064:
                c.getItems().bankItem(c.playerItems[c.xRemoveSlot] , c.xRemoveSlot, Xamount);
                break;
                    
                case 5382:
                c.getItems().fromBank(c.bankItems[c.xRemoveSlot] , c.xRemoveSlot, Xamount);
                break;
                    
                case 3322:
                if(c.duelStatus <= 0) {
                            c.getTradeAndDuel().tradeItem(c.xRemoveId, c.xRemoveSlot, Xamount);
                        } else {                
                    c.getTradeAndDuel().stakeItem(c.xRemoveId, c.xRemoveSlot, Xamount);
                }  
                break;
                    
                case 3415: 
                if(c.duelStatus <= 0) { 
                            c.getTradeAndDuel().fromTrade(c.xRemoveId, c.xRemoveSlot, Xamount);
                } 
                break;
                    
                case 6669:
                c.getTradeAndDuel().fromDuel(c.xRemoveId, c.xRemoveSlot, Xamount);
                break;            
            }
        }
    }
    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Oct 2010
    Posts
    21
    Thanks given
    0
    Thanks received
    1
    Rep Power
    1
    why would it be in the bank x2.. and besides it didnt work anyways... im guessing it would be in the tradeandduel.java
    Reply With Quote  
     

  5. #5  
    .supersyn

    myK-'s Avatar
    Join Date
    Aug 2008
    Posts
    1,781
    Thanks given
    22
    Thanks received
    40
    Rep Power
    399
    what do you mean by spam a noted item?
    Reply With Quote  
     

  6. #6  
    Registered Member

    Join Date
    Mar 2010
    Age
    29
    Posts
    686
    Thanks given
    35
    Thanks received
    92
    Rep Power
    157
    Quote Originally Posted by SHAtter View Post
    what do you mean by spam a noted item?
    Mass click
    Reply With Quote  
     

  7. #7  
    .supersyn

    myK-'s Avatar
    Join Date
    Aug 2008
    Posts
    1,781
    Thanks given
    22
    Thanks received
    40
    Rep Power
    399
    I've tested it, and it doesn't seem to work.
    Reply With Quote  
     

  8. #8  
    Registered Member
    Join Date
    Oct 2010
    Posts
    21
    Thanks given
    0
    Thanks received
    1
    Rep Power
    1
    it works on mine, and im not sure how to fix it.. any possible codes to use?
    Reply With Quote  
     

  9. #9  
    .supersyn

    myK-'s Avatar
    Join Date
    Aug 2008
    Posts
    1,781
    Thanks given
    22
    Thanks received
    40
    Rep Power
    399
    Quote Originally Posted by Blue Ice View Post
    it works on mine, and im not sure how to fix it.. any possible codes to use?
    What PI are you using?
    Reply With Quote  
     

  10. #10  
    Registered Member
    Join Date
    Oct 2010
    Posts
    21
    Thanks given
    0
    Thanks received
    1
    Rep Power
    1
    Quote Originally Posted by SHAtter View Post
    What PI are you using?
    its just the basic one... i got it off moparscape forums..
    Reply With Quote  
     

Page 1 of 2 12 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. [pi] Noted item drop | Dupe |
    By Linus in forum Snippets
    Replies: 14
    Last Post: 01-23-2011, 03:36 AM
  2. (Pi) Noted dupe
    By Skorgescape in forum Help
    Replies: 3
    Last Post: 08-14-2010, 10:11 AM
  3. [PI] Noted Item Trade dupe help [PI]
    By Integer in forum Help
    Replies: 6
    Last Post: 08-07-2010, 04:19 AM
  4. [pi] noted dupe
    By Kobra in forum Help
    Replies: 4
    Last Post: 08-06-2010, 05:28 AM
  5. [PI]noted dupe
    By bobetoe in forum Help
    Replies: 0
    Last Post: 07-14-2010, 07:55 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
  •