Battlescape BOJs dupe (no 3rd party) menu

Shout-Out

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 39
  1. #1
    Razgul's Avatar Member
    Reputation
    83
    Join Date
    Feb 2008
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Battlescape BOJs dupe (no 3rd party)

    So i found a bug on Battlescape that gives you a lot of BOJs. Gonna share it on public in 2 days. Before that any one who has at least as much rep as I do AND/OR(depends on my mind) as much posts as i do priv me for instructions.

    So here it goes:

    1. Get friendly with any horde/alliance force(if you are friendly with all of them it goes faster)
    2. Go and buy BASIC care packages from officers vendors(you need 2 battleground marks for each)
    3. Open package and take BOJ from there(You can take other items aswell but leave AT LEAST one item)
    4. Close package and do the same with other packages.
    5. Move packages to different bag. If you dont do that they will dissapear.
    6. Relog.
    7. The packages are full with items again
    8. Repeat the procedure

    From all packages you can take 20 BOJs each relog wich takes about 30 sec. Therefore in 1 hour you can make 2400 BOJ if you are in hurry

    REMEMBER!! to move packages between bags or they will dissaper!

    Happy gemmed s3/s4!

    also if any1 has some basic knowledge about Java programming this could help(this works only on my UI i f you want to make use of it you got to rewrite it unless u got MAC that read further). If any of you programmers is playing on MAC I can support you with SS so you know where the WoW frame should be placed:

    import java.awt.*;
    import java.awt.event.InputEvent;

    /**
    * Write a description of class BOJgrinder here.
    *
    * @author (your name)
    * @version (a version number or a date)
    */
    public class BOJgrinder
    {



    public BOJgrinder()
    {

    }

    public static void main(String[] args)
    throws AWTException{
    while(true){
    Robot robot = new Robot();
    robot.delay(5000); // ustaw okno

    robot.mouseMove(675,803); // logowanie
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(10000);

    robot.mouseMove(675,475); // kliknij na infor
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(1080,850); // bag1 open
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(1125,850); // bag2 open
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(1090,640); // pack 1 open
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(60,250); // grab boj
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(1125,640); // pack 2 open
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(177,372); // klik next
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(60,290); // grab boj
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(1170,640); // pack 3 open
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(177,372); // klik next
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(60,290); // grab boj
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(1210,640); // pack 4 open
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(60,250); // grab boj
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(195,175); // close last pack
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(1090,640); // move pack 1
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.delay(500);
    robot.mouseMove(1090,400);
    robot.delay(500);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(1125,640); // move pack 2
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.delay(500);
    robot.mouseMove(1125,400);
    robot.delay(500);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(1170,640); // move pack 3
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.delay(500);
    robot.mouseMove(1170,400);
    robot.delay(500);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(1210,640); // move pack 4
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.delay(500);
    robot.mouseMove(1210,400);
    robot.delay(500);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(890,850); // open menu
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(675,493); // logout
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.delay(5000); // ustaw okno

    robot.mouseMove(675,803); // logowanie
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(10000);

    robot.mouseMove(675,475); // kliknij na infor
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(1125,850); // bag1 open
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(1080,850); // bag2 open
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(1090,640); // pack 1 open
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(60,250); // grab boj
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(1125,640); // pack 2 open
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(177,372); // klik next
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(60,290); // grab boj
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(1170,640); // pack 3 open
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(177,372); // klik next
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(60,290); // grab boj
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(1210,640); // pack 4 open
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(60,250); // grab boj
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON3_MASK);
    robot.mouseRelease(InputEvent.BUTTON3_MASK);
    robot.delay(500);

    robot.mouseMove(195,175); // close last pack
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(1090,640); // move pack 1
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.delay(500);
    robot.mouseMove(1090,400);
    robot.delay(500);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(1125,640); // move pack 2
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.delay(500);
    robot.mouseMove(1125,400);
    robot.delay(500);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(1170,640); // move pack 3
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.delay(500);
    robot.mouseMove(1170,400);
    robot.delay(500);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(1210,640); // move pack 4
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.delay(500);
    robot.mouseMove(1210,400);
    robot.delay(500);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(890,850); // open menu
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    robot.mouseMove(675,493); // logout
    robot.delay(500);
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    robot.delay(500);

    }

    }


    }
    Last edited by Razgul; 01-26-2009 at 03:59 AM.
    +Rep ANY post you like!

    Battlescape BOJs dupe (no 3rd party)
  2. #2
    kepappi's Avatar Member
    Reputation
    14
    Join Date
    Sep 2007
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well, i have 14 rep, but a little more posts, so am i allowed to get the exploit? <.<

  3. #3
    havalina's Avatar Member
    Reputation
    4
    Join Date
    Jan 2008
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    reps.. PVT message me, Ill check it out

  4. #4
    crazedwarrior's Avatar Member
    Reputation
    1
    Join Date
    Feb 2007
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I think I know the bug you're talking about but I haven't been able to figure it out completely. I guess Ill wait until you release it here and see.

  5. #5
    Razgul's Avatar Member
    Reputation
    83
    Join Date
    Feb 2008
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any1 else wanna know how it works?
    +Rep ANY post you like!

  6. #6
    Keitan's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Razgul View Post
    any1 else wanna know how it works?

    I will if you dont mind


    I have a few hundred posts on Deathsoft.com - Game Hacks, Mods, G15 Applets, Tools & Resources (another WoW hacking site)


    if you dont believe me just make a user there and pm Smeister

  7. #7
    ZomgZippo's Avatar Member
    Reputation
    4
    Join Date
    Aug 2007
    Posts
    53
    Thanks G/R
    3/2
    Trade Feedback
    11 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Would also like to know the exploit

    Edit:
    +1 rep for you atm.

  8. #8
    Rotty's Avatar Banned
    Reputation
    9
    Join Date
    Nov 2007
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for message! +rep

  9. #9
    Exiled1120's Avatar Member
    Reputation
    12
    Join Date
    Jun 2008
    Posts
    175
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lol, another Rep one. I might just release this publically to screw you over.
    My life is simple

    So Is Yours

    But together, They arn't

    Dont look too deeply into this or you will be lost forever.

  10. #10
    zh4ng's Avatar Member
    Reputation
    1
    Join Date
    Dec 2008
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Everyone on Bscape knows this exploit already.

    By everyone I mean about 20%, which is a large number.

  11. #11
    Rotty's Avatar Banned
    Reputation
    9
    Join Date
    Nov 2007
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Exiled1120 View Post
    Lol, another Rep one. I might just release this publically to screw you over.
    Don't cry...

  12. #12
    Razgul's Avatar Member
    Reputation
    83
    Join Date
    Feb 2008
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Exiled1120 View Post
    Lol, another Rep one. I might just release this publically to screw you over.
    Oh I kno, I kno, you are so big and strong, please teach me how to rustle with our shirts off...
    +Rep ANY post you like!

  13. #13
    werko's Avatar Active Member
    Reputation
    23
    Join Date
    Feb 2008
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well, I PM'ed you

  14. #14
    Bareno's Avatar Contributor
    Reputation
    195
    Join Date
    Sep 2006
    Posts
    477
    Thanks G/R
    5/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Same as werko

  15. #15
    Pina's Avatar Active Member
    Reputation
    45
    Join Date
    Dec 2007
    Posts
    184
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ZomgZippo View Post
    Would also like to know the exploit

    Edit:
    +1 rep for you atm.
    0 Rep power...

Page 1 of 3 123 LastLast

Similar Threads

  1. Stream music over Ventrillo/Ingame (Without 3rd party progams)
    By OblivionMage in forum World of Warcraft Guides
    Replies: 6
    Last Post: 07-25-2008, 12:17 PM
  2. Farm Honor w/o any 3rd party programs and go AFK
    By bashy in forum World of Warcraft Guides
    Replies: 19
    Last Post: 06-25-2008, 11:39 AM
  3. [WARNING] inBrowse 0.2.4.0 - 3RD PARTY SOFTWARE
    By TDWP in forum World of Warcraft General
    Replies: 4
    Last Post: 05-09-2008, 12:46 PM
  4. Enchancing the security of 3rd party tools
    By Netzgeist in forum Community Chat
    Replies: 12
    Last Post: 01-23-2008, 12:55 AM
All times are GMT -5. The time now is 07:23 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search