Thread: OS PvP - Full OSRS Bounty Hunter, Flawless OSRS content, Active PKing, Tons of fun

Page 37 of 53 FirstFirst ... 27353637383947 ... LastLast
Results 361 to 370 of 524
  1. #361  
    Donator

    Jason's Avatar
    Join Date
    Aug 2009
    Posts
    6,092
    Thanks given
    2,402
    Thanks received
    2,823
    Rep Power
    4550
    Quote Originally Posted by Technotik View Post
    I accidentally resized my bountyhunter main-sprite in photoshop to 75% of the original size, so the text wouldn't fit, but I didn't notice that until I saw that the fonts wouldn't fit.

    Lol I'll admit my stupidity, but deobfuscate your client? Why would I do that
    My client kicks your clients' ass
    It is beyond my scope of understanding how you can ask such a rudimentary question then state that 'your client' is better than anything . It would only take me a day to re-create the features your client has. I actually downloaded that heaping pile and saw that your banking methodology for sending items to tabs is the same as the ones released .

    Your client

    Code:
    if (anInt1084 == 5382 && super.mouseY >= 40 && super.mouseY <= 77)
                        { // check if bank interface
                                if (super.mouseX >= 28 && super.mouseX <= 74)
                                { // tab 1
                                        stream.createFrame(214);
                                        stream.method433(5); // 5 = maintab
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                                if (super.mouseX >= 75 && super.mouseX <= 121)
                                { // tab
                                        // 1
                                        stream.createFrame(214);
                                        stream.method433(13); // tab # x 13 (originally
                                        // movewindow)
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                                if (super.mouseX >= 122 && super.mouseX <= 168)
                                { // tab
                                        // 2
                                        stream.createFrame(214);
                                        stream.method433(26); // tab # x 13 (originally
                                        // movewindow)
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                                if (super.mouseX >= 169 && super.mouseX <= 215)
                                { // tab
                                        // 3
                                        stream.createFrame(214);
                                        stream.method433(39); // tab # x 13 (originally
                                        // movewindow)
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                                if (super.mouseX >= 216 && super.mouseX <= 262)
                                { // tab
                                        // 4
                                        stream.createFrame(214);
                                        stream.method433(52); // tab # x 13 (originally
                                        // movewindow)
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                                if (super.mouseX >= 263 && super.mouseX <= 309)
                                { // tab
                                        // 5
                                        stream.createFrame(214);
                                        stream.method433(65); // tab # x 13 (originally
                                        // movewindow)
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                                if (super.mouseX >= 310 && super.mouseX <= 356)
                                { // tab
                                        // 6
                                        stream.createFrame(214);
                                        stream.method433(78); // tab # x 13 (originally
                                        // movewindow)
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                                if (super.mouseX >= 357 && super.mouseX <= 403)
                                { // tab
                                        // 7
                                        stream.createFrame(214);
                                        stream.method433(91); // tab # x 13 (originally
                                        // movewindow)
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                                if (super.mouseX >= 404 && super.mouseX <= 450)
                                { // tab
                                        // 8
                                        stream.createFrame(214);
                                        stream.method433(104); // tab # x 13 (originally
                                        // movewindow)
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                        }
    Os-PVP

    Code:
                        if (anInt1084 == 5382) {
                            Point southWest, northEast;
                            southWest = new Point(68, 75);
                            northEast = new Point(457, 41);
                            int[] slots = new int[9];
                            for (int i = 0; i < slots.length; i++)
                                slots[i] = i == 0 ? (int) southWest.getX()
                                        : (41 * i) + (int) southWest.getX();
                            for (int i = 0; i < slots.length; i++) {
                                if (super.mouseX >= slots[i]
                                        && super.mouseX <= slots[i] + 42
                                        && super.mouseY >= northEast.getY()
                                        && super.mouseY <= southWest.getY()) {
                                    RSInterface rsi = RSInterface.interfaceCache[58050 + i];
                                    if (rsi.isMouseoverTriggered) {
                                        continue;
                                    }
                                    stream.createFrame(214);
                                    stream.method433(anInt1084);
                                    stream.method424(0);
                                    stream.method433(anInt1085);
                                    stream.method431(1000 + i);
                                    return;
                                }
                            }
                        }
    Just one example.
    Reply With Quote  
     


  2. #362  
    2021
    SoulSplit's Avatar
    Join Date
    Nov 2011
    Posts
    830
    Thanks given
    620
    Thanks received
    654
    Rep Power
    528
    Quote Originally Posted by Jason View Post
    It is beyond my scope of understanding how you can ask such a rudimentary question then state that 'your client' is better than anything . It would only take me a day to re-create the features your client has. I actually downloaded that heaping pile and saw that your banking methodology for sending items to tabs is the same as the ones released .

    Your client

    Code:
    if (anInt1084 == 5382 && super.mouseY >= 40 && super.mouseY <= 77)
                        { // check if bank interface
                                if (super.mouseX >= 28 && super.mouseX <= 74)
                                { // tab 1
                                        stream.createFrame(214);
                                        stream.method433(5); // 5 = maintab
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                                if (super.mouseX >= 75 && super.mouseX <= 121)
                                { // tab
                                        // 1
                                        stream.createFrame(214);
                                        stream.method433(13); // tab # x 13 (originally
                                        // movewindow)
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                                if (super.mouseX >= 122 && super.mouseX <= 168)
                                { // tab
                                        // 2
                                        stream.createFrame(214);
                                        stream.method433(26); // tab # x 13 (originally
                                        // movewindow)
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                                if (super.mouseX >= 169 && super.mouseX <= 215)
                                { // tab
                                        // 3
                                        stream.createFrame(214);
                                        stream.method433(39); // tab # x 13 (originally
                                        // movewindow)
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                                if (super.mouseX >= 216 && super.mouseX <= 262)
                                { // tab
                                        // 4
                                        stream.createFrame(214);
                                        stream.method433(52); // tab # x 13 (originally
                                        // movewindow)
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                                if (super.mouseX >= 263 && super.mouseX <= 309)
                                { // tab
                                        // 5
                                        stream.createFrame(214);
                                        stream.method433(65); // tab # x 13 (originally
                                        // movewindow)
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                                if (super.mouseX >= 310 && super.mouseX <= 356)
                                { // tab
                                        // 6
                                        stream.createFrame(214);
                                        stream.method433(78); // tab # x 13 (originally
                                        // movewindow)
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                                if (super.mouseX >= 357 && super.mouseX <= 403)
                                { // tab
                                        // 7
                                        stream.createFrame(214);
                                        stream.method433(91); // tab # x 13 (originally
                                        // movewindow)
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                                if (super.mouseX >= 404 && super.mouseX <= 450)
                                { // tab
                                        // 8
                                        stream.createFrame(214);
                                        stream.method433(104); // tab # x 13 (originally
                                        // movewindow)
                                        stream.method424(0);
                                        stream.method433(anInt1085); // Selected item slot
                                        stream.method431(mouseInvInterfaceIndex); // unused
    
    
                                }
                        }
    Os-PVP

    Code:
                        if (anInt1084 == 5382) {
                            Point southWest, northEast;
                            southWest = new Point(68, 75);
                            northEast = new Point(457, 41);
                            int[] slots = new int[9];
                            for (int i = 0; i < slots.length; i++)
                                slots[i] = i == 0 ? (int) southWest.getX()
                                        : (41 * i) + (int) southWest.getX();
                            for (int i = 0; i < slots.length; i++) {
                                if (super.mouseX >= slots[i]
                                        && super.mouseX <= slots[i] + 42
                                        && super.mouseY >= northEast.getY()
                                        && super.mouseY <= southWest.getY()) {
                                    RSInterface rsi = RSInterface.interfaceCache[58050 + i];
                                    if (rsi.isMouseoverTriggered) {
                                        continue;
                                    }
                                    stream.createFrame(214);
                                    stream.method433(anInt1084);
                                    stream.method424(0);
                                    stream.method433(anInt1085);
                                    stream.method431(1000 + i);
                                    return;
                                }
                            }
                        }
    Just one example.
    Did you have my comment removed? Anyways,
    I was obviously joking. I know your code is far superior
    Reply With Quote  
     

  3. #363  
    Donator

    Jason's Avatar
    Join Date
    Aug 2009
    Posts
    6,092
    Thanks given
    2,402
    Thanks received
    2,823
    Rep Power
    4550
    Amulet of the Damned

    • The amulet has been added to the Bounty Hunter Rewards Shop for the price of 10,000,000 bounties.
    • This item when (full) is tradable.
    • Upon first contact in PVM or PVP contact this item degrades and is no longer (full), making it untradable.
    • The amulet of damned after degrading lasts 7,500 hits in combat.
    • The amulet when worn with any barrow armour has special effects that only occur in PVP combat.
      • Dharok: There is a 25% chance that 15% of the damage received is recoiled at your opponent.
      • Verac: Prayer is increased by +7, for a total of +25 prayer when wearing the entire set.
      • Guthans: Maximum health points are increased to 10 above you maximum hit points level. Please note that brewing can increase this further.
      • Ahrim: 30% chance that your maximum magic damage will be increased by 30%. This raises the maximum from 32 to 41.6. Along with this, players now require the Ancient Staff, or Ahrim set with Amulet of the Damed to autocast in PVP.
      • Torag: Your defence is increased for every health point you lose.
      • Karil: There is a 1:4 chance that the Karil’s crossbow will deal a second hit that will always do 50% of the first hit.
    Reply With Quote  
     

  4. Thankful users:


  5. #364  
    Typical Swede


    Join Date
    Jul 2008
    Posts
    1,162
    Thanks given
    204
    Thanks received
    154
    Rep Power
    217
    Bump to the top

    'Strange things did happen here no stranger would it be'
    ______________________________________________
    Reply With Quote  
     

  6. #365  
    Registered Member
    Join Date
    Jun 2013
    Posts
    429
    Thanks given
    81
    Thanks received
    69
    Rep Power
    69
    It seems the website was hacked/defaced by a bunch of jealous cunts. As soon as Ab wakes up, he'll deal with it.

    edit: unless the new web dev is childish af and puts dick tanks on the website
    Reply With Quote  
     

  7. #366  
    anInt69

    Max _'s Avatar
    Join Date
    Feb 2012
    Age
    26
    Posts
    1,801
    Thanks given
    426
    Thanks received
    727
    Rep Power
    599
    I cried

    Reply With Quote  
     

  8. #367  
    Donator


    Join Date
    Aug 2010
    Posts
    3,174
    Thanks given
    1,724
    Thanks received
    2,002
    Rep Power
    3837
    Quote Originally Posted by MaxiiPad View Post
    I cried

    I pee'd a little as well.
    Reply With Quote  
     

  9. #368  
    V.C.C.

    Abnant's Avatar
    Join Date
    Nov 2010
    Posts
    2,291
    Thanks given
    393
    Thanks received
    796
    Rep Power
    1777
    Quote Originally Posted by MaxiiPad View Post
    I cried

    Quote Originally Posted by Hank View Post
    I pee'd a little as well.
    BigShot has his sense of humor, lol. The new forums should be up and accesible tonight or tomorrow.
    Reply With Quote  
     

  10. #369  
    Registered Member jak123's Avatar
    Join Date
    Jul 2013
    Posts
    352
    Thanks given
    0
    Thanks received
    10
    Rep Power
    12
    bump
    Reply With Quote  
     

  11. #370  
    Registered Member
    Join Date
    Jun 2010
    Age
    27
    Posts
    2,528
    Thanks given
    544
    Thanks received
    584
    Rep Power
    411
    Quote Originally Posted by Abnant View Post
    BigShot has his sense of humor, lol. The new forums should be up and accesible tonight or tomorrow.
    That picture was a stupid idea, lol.

    I know I'd be thinking "Oh, the site must be hacked, better not download that client then as it is probably infected".
    Reply With Quote  
     

Page 37 of 53 FirstFirst ... 27353637383947 ... 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. Replies: 0
    Last Post: 06-11-2014, 02:12 AM
  2. New PVP icons and Bounty Hunter
    By Defiled' in forum Configuration
    Replies: 4
    Last Post: 08-26-2013, 12:33 PM
  3. Replies: 114
    Last Post: 05-05-2013, 02:17 PM
  4. Replies: 15
    Last Post: 05-11-2010, 03:22 PM
  5. Replies: 7
    Last Post: 05-05-2008, 12:23 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
  •