Jump to content
View in the app

A better way to browse. Learn more.

OSBot :: 2007 OSRS Botting

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

DarkScuzz

Members
  • Joined

  • Last visited

Everything posted by DarkScuzz

  1. OSRS updated awhile ago, client is not working now nvm it works it didnt 10 minutes after update
  2. just to double check i opened up 2 osbot clients had 1 bot on each and same result after script starts on both freeze's and unresponsive
  3. Hello there i resently added your Progressive cooker to the scripts i have a small problem when i open this on 2 bots in same osbot client the client Freezes and comes unresponsive and i have to force close via task manager if i run this script on 1 bot on the client is runs perfect
  4. I think i figured it out but please correct me if im wrong i needed to add public boolean onExit; on my second script and on my main i changed it to this try { highLevelAlch.onStart(); while (highLevelAlch.onExit) { highLevelAlch.onLoop(); Thread.sleep(100); // Adjust the sleep duration as needed } } catch (InterruptedException e) { e.printStackTrace(); } }); seems to be fine, no errors atm.. going to test watch it breaks xD
  5. first of all im using IntellJ Im trying to use my main script to call, to a second script to keep it more clean / less code to go through I've tried mulitpul ways and i always find myself with errors my current error will no go away after many attemps Operator '!' cannot be applied to 'void' Error is this piece of code where is errors is while (!highLevelAlch.onExit()) { highLevelAlch.onLoop(); private void startSecondaryScript() { log("Starting Secondary Script..."); secondaryScriptThread = new Thread(() -> { HighLevelAlch highLevelAlch = new HighLevelAlch(getBot()); highLevelAlch.exchangeContext(getBot()); try { highLevelAlch.onStart(); while (!highLevelAlch.onExit()) { highLevelAlch.onLoop(); Thread.sleep(100); // Adjust the sleep duration as needed } } catch (InterruptedException e) { e.printStackTrace(); } }); secondaryScriptThread.start(); } public void stopSecondaryScript() { if (secondaryScriptThread != null && secondaryScriptThread.isAlive()) { secondaryScriptThread.interrupt(); } } @Override public void onExit() { log("Exiting Ethereum Bracelet Charging Script"); try { closeBank(); // Close the bank when the script exits } catch (InterruptedException e) { throw new RuntimeException(e); } } }
  6. I've just watched my script run... and.. well I goes from egdevill bank runs south towards barb village then go left to monastery then passed black knights fortress then to wildy.. a strange bot when i coded it to goto closest green dragon i thought it would of gone over the Ditch and ran north
  7. my script is not working ... i dont understand why so im next to edgevill bank in my script the bank has been choose for my script to goto on inventory full and or when starting script on start the script gets my GUI menu for gear seletion after i click start bot it just keeps says this on os bot [INFO][Bot #1][09/15 01:00:24 PM]: Started script : DragonTest [INFO][Bot #1][09/15 01:00:42 PM]: WebWalkingEvent; No route found! Destinations = [[x=2057, y=2505, z=0]]; [INFO][Bot #1][09/15 01:00:47 PM]: WebWalkingEvent; No route found! Destinations = [[x=1021, y=1241, z=0]]; here is my webwalk part of script i had this working great yesterday but with more changes it just.. does not work private static final Area BANK_AREA = new Area( new int[][]{ {3093,3491}, {3072,3456}, {21,35} } ); private static final Area GREEN_DRAGON_AREA = new Area( new int[][]{ {2975, 3626}, {2944, 3584}, {31, 33} } );
  8. thanks for the fast reply i've added a webwalk into that as you said, im now adding At green dragon area auto prayer function i wont be posted all the script from now dont want others to steal.. xD i want a private made one for myself
  9. I've been editing the script abit more and im again stuck I've been able to get to move to edgevill bank but it gets stuck sometimes at the Yew tree's by the outa wall and says [INFO][Bot #1][09/14 04:53:59 PM]: WebWalkingEvent; We have reached the final destination! but its not at the bank and another thing, i have it opening the bank with a GUI option for gear i choose gear from the GUI and it opens bank and then trys to webwalk after does not even take gear... import org.osbot.rs07.api.Inventory; import org.osbot.rs07.api.Walking; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import javax.swing.*; import java.awt.*; import java.util.Random; @ScriptManifest(author = "DarkScuzz", info = "Green Dragon Killer", name = "GreenDragonKiller", version = 1.0, logo = "") public class GreenDragonKiller extends Script { // User options private String foodName = "Lobster"; private int foodAmount = 15; private String gearOption; private String amuletOption; private String capeOption; private String ammoOption; private String weaponOption; // New options for Ranged and Ammo Type private String rangedWeaponOption; private String ammoTypeOption; private boolean shouldBank = false; private final Random random = new Random(); private static final Area BANK_AREA = new Area( new int[][]{ {3094,3491}, {3072,3456}, {21,40} } ); private static final Area GREEN_DRAGON_AREA = new Area( new int[][]{ {2975, 3626}, {2944, 3584}, {31, 33} } ); public GreenDragonKiller() { // Initialize your JComboBox variables } @Override public void onStart() { log("Welcome to GreenDragonKiller!"); setupGUI(); } @Override public int onLoop() throws InterruptedException { if (shouldBank) { bank(); } else { if (getSkills().getDynamic(Skill.HITPOINTS) < 50 && !hasFood()) { shouldBank = true; return 1000; // Delay before heading to the bank } activateProtectionPrayer(); if (!GREEN_DRAGON_AREA.contains(myPosition())) { walkToGreenDragons(); } else { combat(); } } antiban(); return random(1000, 2000); // Delay between loops in milliseconds } private void activateProtectionPrayer() { // Implement logic to activate the Protection from Melee prayer } private void walkToGreenDragons() { Walking walking = getWalking(); walking.webWalk(GREEN_DRAGON_AREA.getRandomPosition()); } private void combat() throws InterruptedException { NPC greenDragon = getNpcs().closest("Green Dragon"); if (greenDragon != null) { if (!getCombat().isFighting()) { greenDragon.interact("Attack"); sleep(random(800, 1200)); } } } private void bank() throws InterruptedException { if (getBank().isOpen()) { depositAndWithdraw(); shouldBank = false; // Implement logic for selecting and equipping gear here if (gearOption != null) { // Example: Equip gear based on user's gearOption choice switch (gearOption) { case "Adamant Armour": // Code to equip adamant armor break; case "Rune Armour": // Code to equip rune armor break; // Add cases for other gear options as needed } } getBank().close(); // Close the bank after gear setup } else if (BANK_AREA.contains(myPosition())) { if (!getBank().isOpen()) { getBank().open(); } } else { getWalking().webWalk(BANK_AREA); } } private void depositAndWithdraw() { Inventory inventory = getInventory(); if (inventory.isFull() || !hasEnoughFood()) { getBank().withdraw(foodName, foodAmount); } if (gearOption != null) { // Implement withdrawing and equipping gear here } getBank().close(); } private boolean hasFood() { Inventory inventory = getInventory(); return inventory.contains(foodName) && foodAmount > 0; } private boolean hasEnoughFood() { return getInventory().getAmount(foodName) >= foodAmount; } private void antiban() throws InterruptedException { int action = random.nextInt(4); switch (action) { case 0: getMouse().move(random(50, 750), random(50, 450)); break; case 1: getCamera().movePitch(random(0, 100)); getCamera().moveYaw(random(0, 100)); break; // Add more antiban actions as needed } sleep(random(2000, 4000)); } private void setupGUI() { JFrame frame = new JFrame("Green Dragon Killer Setup"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setSize(400, 400); JPanel panel = new JPanel(); panel.setLayout(new GridLayout(12, 2)); JLabel foodLabel = new JLabel("Food:"); JComboBox<String> foodDropdown = new JComboBox<>(new String[]{"Trout", "Lobster", "Swordfish", "Monkfish"}); JLabel gearLabel = new JLabel("Gear:"); JComboBox<String> gearDropdown = new JComboBox<>(new String[]{"Adamant Armour", "Rune Armour"}); JLabel amuletLabel = new JLabel("Amulet:"); JComboBox<String> amuletDropdown = new JComboBox<>(new String[]{"Strength Amulet", "Glory Amulet"}); JLabel capeLabel = new JLabel("Cape:"); JComboBox<String> capeDropdown = new JComboBox<>(new String[]{"Obsidian cape", "Skills cape"}); JLabel ammoLabel = new JLabel("Ammo:"); JComboBox<String> ammoDropdown = new JComboBox<>(new String[]{"", "", ""}); JLabel weaponLabel = new JLabel("Weapon:"); JComboBox<String> weaponDropdown = new JComboBox<>(new String[]{"Adamant Weapon", "Rune Weapon"}); JButton startButton = new JButton("Start Script"); // New components for Ranged and Ammo Type options JCheckBox rangedCheckbox = new JCheckBox("Ranged:"); JComboBox<String> rangedWeaponDropdown = new JComboBox<>(new String[]{"Magic Shortbow"}); JCheckBox ammoTypeCheckbox = new JCheckBox("Ammo Type:"); JComboBox<String> ammoTypeDropdown = new JComboBox<>(new String[]{"Mithril Arrow", "Rune Arrow"}); startButton.addActionListener(e -> { foodName = (String) foodDropdown.getSelectedItem(); gearOption = (String) gearDropdown.getSelectedItem(); amuletOption = (String) amuletDropdown.getSelectedItem(); capeOption = (String) capeDropdown.getSelectedItem(); ammoOption = (String) ammoDropdown.getSelectedItem(); weaponOption = (String) weaponDropdown.getSelectedItem(); // New options for Ranged and Ammo Type if (rangedCheckbox.isSelected()) { rangedWeaponOption = (String) rangedWeaponDropdown.getSelectedItem(); } else { rangedWeaponOption = null; } if (ammoTypeCheckbox.isSelected()) { ammoTypeOption = (String) ammoTypeDropdown.getSelectedItem(); } else { ammoTypeOption = null; } startScript(); frame.dispose(); }); panel.add(foodLabel); panel.add(foodDropdown); panel.add(gearLabel); panel.add(gearDropdown); panel.add(amuletLabel); panel.add(amuletDropdown); panel.add(capeLabel); panel.add(capeDropdown); panel.add(ammoLabel); panel.add(ammoDropdown); panel.add(weaponLabel); panel.add(weaponDropdown); // New components for Ranged and Ammo Type options panel.add(rangedCheckbox); panel.add(rangedWeaponDropdown); panel.add(ammoTypeCheckbox); panel.add(ammoTypeDropdown); panel.add(startButton); frame.add(panel); frame.setVisible(true); } private void startScript() { log("Starting GreenDragonKiller with gear setup:"); log("Food: " + foodName); log("Gear: " + gearOption); log("Amulet: " + amuletOption); log("Cape: " + capeOption); log("Ammo: " + ammoOption); log("Weapon: " + weaponOption); // New options for Ranged and Ammo Type if (rangedWeaponOption != null) { log("Ranged Weapon: " + rangedWeaponOption); // Implement logic to equip the selected ranged weapon } if (ammoTypeOption != null) { log("Ammo Type: " + ammoTypeOption); // Implement logic to equip the selected ammo type } // Implement the logic to start the script with the selected gear setup } @Override public void onExit() { log("GreenDragonKiller stopped."); } } With that .. on top of things it starts the moving to bank even before i choose what gear to use in the GUI
  10. Thanks for the reply it was that issuse thanks for helping class GreenDragonKiller extends Script { replacing with public class GreenDragonKiller extends Script { sorted the issue, it now starts with osbot
  11. the script is oready there in the folder ive had it run when i was messing with it yesterday and now it just doesn't
  12. I've been messing around with this for hours after i have done all this the script will not open in OSbot client i've had it open before when i was still in the process of making the better now im clueless i did add armour ealier but removed it... i need to readd this is more for testing and learing how to it will shows up in OSbot client scripts its listed in the C:\Users\username\OSBot\ScriptsOSbot/ but im lost atm and need sleep import org.osbot.rs07.api.Inventory; import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "DarkScuzz", info = "Green Dragon Killer", name = "GreenDragonKiller", version = 1.0, logo = "") class GreenDragonKiller extends Script { private boolean shouldBank = false; private static final Area GREEN_DRAGON_AREA = new Area(2974, 3618, 3029, 3650); private static final String ANTI_FIRE_POTION = "Anti-fire potion"; // Name of the anti-fire potion private static final String FOOD_NAME = "Lobster"; // Name of the food you want to eat private static int FOOD_AMOUNT = 10; // Change this to the desired amount of food @Override public int onLoop() { if (shouldBank) { // Implement banking logic here // You can use the closest bank or any preferred method bank(); } else { if (getSkills().getDynamic(Skill.HITPOINTS) < 10 || !hasFood()) { shouldBank = true; return 1000; // Delay before heading to the bank } // Activate the Protection from Melee prayer if (!isPrayerActive()) { activatePrayer(); } // Check for and use an anti-fire potion if (inventory.contains(ANTI_FIRE_POTION)) { inventory.interact("Drink", ANTI_FIRE_POTION); } // Equip gear and implement combat logic here // ... Combat logic ... // Eat food if health is low if (getSkills().getDynamic(Skill.HITPOINTS) < 10) { eatFood(); } } return random(1000, 2000); // Delay between loops in milliseconds } private void activatePrayer() { // Implement logic to activate the Protection from Melee prayer // For example, you can open the Prayer tab and click on the prayer you want to activate. // getTabs().open(Tab.PRAYER); // Perform a mouse click on the prayer icon. } private boolean isPrayerActive() { // Implement logic to check if the Protection from Melee prayer is active // You'll need to check the color of the prayer icon or its state on the interface return false; } private void eatFood() { // Implement logic to eat food from your inventory Inventory inventory = getInventory(); if (inventory.contains(FOOD_NAME) && FOOD_AMOUNT > 0) { inventory.interact("Eat", FOOD_NAME); FOOD_AMOUNT--; } } private boolean hasFood() { // Implement logic to check if you have enough food in your inventory Inventory inventory = getInventory(); return inventory.contains(FOOD_NAME) && FOOD_AMOUNT > 0; } private void bank() { // Implement banking logic here // You can use the closest bank or any preferred method } @Override public void onExit() { log("GreenDragonKiller stopped."); } }
  13. Hello i've try over Java versions (older) 8u202 version 8u211 version it still does the same glitching with the client as seen in the pictures from first post could some bois setting cause this? hardware acceleration? or seomthing?
  14. Hello I'm having a issue that is been recurring for awhile Botversion This has been happening afew versions before current install version 2.6.53 The client will glitch out after i open up the scripts menu to select any of them The client itself will begin to go white wherever my mouse cursor is and sometimes repeat the texture of the client client log # # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x58317c2e, pid=17368, tid=0x0000283c # # JRE version: Java(TM) SE Runtime Environment (8.0_341-b10) (build 1.8.0_341-b10) # Java VM: Java HotSpot(TM) Client VM (25.341-b10 mixed mode windows-x86 ) # Problematic frame: # C [erwq8916480379630167214.dll+0x17c2e] # # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows # # If you would like to submit a bug report, please visit: # http://bugreport.java.com/bugreport/crash.jsp # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # --------------- T H R E A D --------------- Current thread (0x4560dc00): JavaThread "AWT-EventQueue-0" [_thread_in_native, id=10300, stack(0x49220000,0x49270000)] siginfo: ExceptionCode=0xc0000005, reading address 0x00000038 Registers: EAX=0x54a07808, EBX=0x4560dd50, ECX=0x00000002, EDX=0x4560dd50 ESP=0x4926e68c, EBP=0x4926e6e8, ESI=0x00000000, EDI=0x4560dc00 EIP=0x58317c2e, EFLAGS=0x00010246 Top of Stack: (sp=0x4926e68c) 0x4926e68c: 4560dc00 4926e6dc 4926e6e8 00000000 0x4926e69c: 027f8c67 4560dd50 4926e6dc 00000000 0x4926e6ac: 00000000 00000002 00000000 00000000 0x4926e6bc: 00000000 00000000 00000000 00000000 0x4926e6cc: 00000000 00000000 00000009 4926e718 0x4926e6dc: 1a641000 000003ed 00000009 4926e768 0x4926e6ec: 025b48a4 00000000 00000000 00000000 0x4926e6fc: 00000000 00000000 00000000 00000000 Instructions: (pc=0x58317c2e) 0x58317c0e: 50 8b 41 38 ff d0 5e 5b 5f c2 1c 00 cc cc cc cc 0x58317c1e: cc cc 53 8b 5c 24 08 55 56 8b 74 24 18 8b 03 57 0x58317c2e: ff 76 38 8b 80 64 03 00 00 8b 6e 24 53 ff d0 8b 0x58317c3e: 44 24 24 c7 45 08 11 00 00 10 c7 45 0c ff ff ff Register to memory mapping: EAX=0x54a07808 is an unknown value EBX=0x4560dd50 is an unknown value ECX=0x00000002 is an unknown value EDX=0x4560dd50 is an unknown value ESP=0x4926e68c is pointing into the stack for thread: 0x4560dc00 EBP=0x4926e6e8 is pointing into the stack for thread: 0x4560dc00 ESI=0x00000000 is an unknown value EDI=0x4560dc00 is a thread Stack: [0x49220000,0x49270000], sp=0x4926e68c, free space=313k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) C [erwq8916480379630167214.dll+0x17c2e] j client.YTh.focusLost(Ljava/awt/event/FocusEvent;)V+8 j client.emu.EmuClient.focusLost(Ljava/awt/event/FocusEvent;)V+4 j org.osbot.rs07.input.focus.ClientFocusEventHandler.loseFocus()V+23 j org.osbot.rs07.input.focus.ClientFocusEventHandler.focusLost(Ljava/awt/event/FocusEvent;)V+31 j java.awt.Component.processFocusEvent(Ljava/awt/event/FocusEvent;)V+52 J 6835 C1 java.awt.Component.processEvent(Ljava/awt/AWTEvent;)V (220 bytes) @ 0x0283d8dc [0x0283d570+0x36c] J 2619 C1 java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V (921 bytes) @ 0x0265deb8 [0x0265ce80+0x1038] j java.awt.Component.dispatchEvent(Ljava/awt/AWTEvent;)V+2 j java.awt.KeyboardFocusManager.redispatchEvent(Ljava/awt/Component;Ljava/awt/AWTEvent;)V+7 j java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(Ljava/awt/Component;Ljava/awt/AWTEvent;)Z+347 j java.awt.DefaultKeyboardFocusManager.dispatchEvent(Ljava/awt/AWTEvent;)Z+1284 J 2619 C1 java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V (921 bytes) @ 0x0265d3a0 [0x0265ce80+0x520] j java.awt.Component.dispatchEvent(Ljava/awt/AWTEvent;)V+2 j sun.awt.SunToolkit$1.run()V+26 J 1329 C1 java.awt.event.InvocationEvent.dispatch()V (69 bytes) @ 0x028575dc [0x028574f0+0xec] J 1078 C1 java.awt.EventQueue.dispatchEventImpl(Ljava/awt/AWTEvent;Ljava/lang/Object;)V (149 bytes) @ 0x027d718c [0x027d6cd0+0x4bc] J 1075 C1 java.awt.EventQueue$3.run()Ljava/lang/Void; (60 bytes) @ 0x027d645c [0x027d6400+0x5c] J 1074 C1 java.awt.EventQueue$3.run()Ljava/lang/Object; (5 bytes) @ 0x027d61e0 [0x027d61c0+0x20] v ~StubRoutines::call_stub V [jvm.dll+0x1661b4] V [jvm.dll+0x23730b] V [jvm.dll+0x165d5a] V [jvm.dll+0x106ea7] C [java.dll+0x102f] J 1070 C1 java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V (80 bytes) @ 0x027d4d08 [0x027d4b00+0x208] J 1080 C1 java.awt.EventDispatchThread.pumpOneEventForFilters(I)V (190 bytes) @ 0x027d8044 [0x027d7c50+0x3f4] J 3098% C1 java.awt.EventDispatchThread.pumpEventsForFilter(ILjava/awt/Conditional;Ljava/awt/EventFilter;)V (47 bytes) @ 0x027edfc0 [0x027edf00+0xc0] j java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V+11 j java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4 j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3 j java.awt.EventDispatchThread.run()V+9 v ~StubRoutines::call_stub V [jvm.dll+0x1661b4] V [jvm.dll+0x23730b] V [jvm.dll+0x166967] V [jvm.dll+0x1668a6] V [jvm.dll+0x101b6b] V [jvm.dll+0x18aac4] V [jvm.dll+0x1d005b] C [ucrtbase.dll+0x44f9f] C [KERNEL32.DLL+0x1fa29] C [ntdll.dll+0x67b5e] C [ntdll.dll+0x67b2e] C 0x00000000 Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) J 3161 client.nat.stream.Stream.m8(JIJJJJ)V (0 bytes) @ 0x027f8c23 [0x027f8ba0+0x83] j client.YTh.focusLost(Ljava/awt/event/FocusEvent;)V+8 j client.emu.EmuClient.focusLost(Ljava/awt/event/FocusEvent;)V+4 j org.osbot.rs07.input.focus.ClientFocusEventHandler.loseFocus()V+23 j org.osbot.rs07.input.focus.ClientFocusEventHandler.focusLost(Ljava/awt/event/FocusEvent;)V+31 j java.awt.Component.processFocusEvent(Ljava/awt/event/FocusEvent;)V+52 J 6835 C1 java.awt.Component.processEvent(Ljava/awt/AWTEvent;)V (220 bytes) @ 0x0283d8dc [0x0283d570+0x36c] J 2619 C1 java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V (921 bytes) @ 0x0265deb8 [0x0265ce80+0x1038] j java.awt.Component.dispatchEvent(Ljava/awt/AWTEvent;)V+2 j java.awt.KeyboardFocusManager.redispatchEvent(Ljava/awt/Component;Ljava/awt/AWTEvent;)V+7 j java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(Ljava/awt/Component;Ljava/awt/AWTEvent;)Z+347 j java.awt.DefaultKeyboardFocusManager.dispatchEvent(Ljava/awt/AWTEvent;)Z+1284 J 2619 C1 java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V (921 bytes) @ 0x0265d3a0 [0x0265ce80+0x520] j java.awt.Component.dispatchEvent(Ljava/awt/AWTEvent;)V+2 j sun.awt.SunToolkit$1.run()V+26 J 1329 C1 java.awt.event.InvocationEvent.dispatch()V (69 bytes) @ 0x028575dc [0x028574f0+0xec] J 1078 C1 java.awt.EventQueue.dispatchEventImpl(Ljava/awt/AWTEvent;Ljava/lang/Object;)V (149 bytes) @ 0x027d718c [0x027d6cd0+0x4bc] J 1075 C1 java.awt.EventQueue$3.run()Ljava/lang/Void; (60 bytes) @ 0x027d645c [0x027d6400+0x5c] J 1074 C1 java.awt.EventQueue$3.run()Ljava/lang/Object; (5 bytes) @ 0x027d61e0 [0x027d61c0+0x20] v ~StubRoutines::call_stub J 757 java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object; (0 bytes) @ 0x0275ed87 [0x0275ed20+0x67] J 1070 C1 java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V (80 bytes) @ 0x027d4d08 [0x027d4b00+0x208] J 1080 C1 java.awt.EventDispatchThread.pumpOneEventForFilters(I)V (190 bytes) @ 0x027d8044 [0x027d7c50+0x3f4] J 3098% C1 java.awt.EventDispatchThread.pumpEventsForFilter(ILjava/awt/Conditional;Ljava/awt/EventFilter;)V (47 bytes) @ 0x027edfc0 [0x027edf00+0xc0] j java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V+11 j java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4 j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3 j java.awt.EventDispatchThread.run()V+9 v ~StubRoutines::call_stub --------------- P R O C E S S --------------- Java Threads: ( => current thread ) 0x5ac59c00 JavaThread "Image Fetcher 0" daemon [_thread_blocked, id=3864, stack(0x52c70000,0x52cc0000)] 0x5ac5dc00 JavaThread "pool-3-thread-1" [_thread_blocked, id=17160, stack(0x00c70000,0x00cc0000)] 0x5ac5d800 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=15968, stack(0x00a60000,0x00ab0000)] 0x4e758400 JavaThread "pool-1-thread-1" [_thread_blocked, id=1336, stack(0x49e60000,0x49eb0000)] 0x4e8ed000 JavaThread "Thread-5" daemon [_thread_in_native, id=14052, stack(0x52e00000,0x52e50000)] 0x4e53ac00 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=8864, stack(0x53e50000,0x53ea0000)] 0x4e52c400 JavaThread "TimerQueue" daemon [_thread_blocked, id=12648, stack(0x53dc0000,0x53e10000)] 0x4e468800 JavaThread "Trident pulse source thread" daemon [_thread_blocked, id=6164, stack(0x53020000,0x53070000)] 0x4e45d400 JavaThread "Trident callback thread" daemon [_thread_blocked, id=2604, stack(0x52f90000,0x52fe0000)] 0x0094d400 JavaThread "DestroyJavaVM" [_thread_blocked, id=15092, stack(0x00d30000,0x00d80000)] 0x4928f400 JavaThread "2V5iOQc4" [_thread_blocked, id=16036, stack(0x49670000,0x496c0000)] =>0x4560dc00 JavaThread "AWT-EventQueue-0" [_thread_in_native, id=10300, stack(0x49220000,0x49270000)] 0x455ce000 JavaThread "AWT-Windows" daemon [_thread_in_native, id=15712, stack(0x45950000,0x459a0000)] 0x455cbc00 JavaThread "AWT-Shutdown" [_thread_blocked, id=10756, stack(0x458c0000,0x45910000)] 0x455cb000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=15028, stack(0x45830000,0x45880000)] 0x450df400 JavaThread "Service Thread" daemon [_thread_blocked, id=8604, stack(0x453d0000,0x45420000)] 0x450c7800 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=15724, stack(0x45340000,0x45390000)] 0x450c6c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=7424, stack(0x452b0000,0x45300000)] 0x450c4c00 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=11764, stack(0x45260000,0x452b0000)] 0x00a17400 JavaThread "Finalizer" daemon [_thread_blocked, id=14056, stack(0x44f90000,0x44fe0000)] 0x00a02000 JavaThread "Reference Handler" daemon [_thread_blocked, id=236, stack(0x44f00000,0x44f50000)] Other Threads: 0x009fc400 VMThread [stack: 0x44e70000,0x44ec0000] [id=14040] 0x450f3800 WatcherThread [stack: 0x45460000,0x454b0000] [id=4144] VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap: def new generation total 225664K, used 16622K [0x04800000, 0x13cd0000, 0x19d50000) eden space 200640K, 8% used [0x04800000, 0x0583bb50, 0x10bf0000) from space 25024K, 0% used [0x10bf0000, 0x10bf0000, 0x12460000) to space 25024K, 0% used [0x12460000, 0x12460000, 0x13cd0000) tenured generation total 501168K, used 300699K [0x19d50000, 0x386bc000, 0x44800000) the space 501168K, 59% used [0x19d50000, 0x2c2f6d58, 0x2c2f6e00, 0x386bc000) Metaspace used 28397K, capacity 29915K, committed 33280K, reserved 34176K Card table byte_map: [0x44800000,0x44a10000] byte_map_base: 0x447dc000 Polling page: 0x00d80000 CodeCache: size=32768Kb used=4398Kb max_used=6344Kb free=28369Kb bounds [0x025b0000, 0x02c00000, 0x045b0000] total_blobs=2219 nmethods=1902 adapters=247 compilation: enabled Compilation events (10 events): Event: 782.884 Thread 0x450c7800 7336 java.lang.AbstractStringBuilder::append (29 bytes) Event: 782.884 Thread 0x450c7800 nmethod 7336 0x0275b348 code [0x0275b460, 0x0275b668] Event: 782.885 Thread 0x450c7800 7337 ! sun.awt.image.PNGImageDecoder::produceImage (1916 bytes) Event: 782.888 Thread 0x450c7800 nmethod 7337 0x0280fcc8 code [0x028101e0, 0x02812a78] Event: 782.888 Thread 0x450c7800 7338 % sun.awt.image.PNGImageDecoder::update_crc @ 3 (41 bytes) Event: 782.888 Thread 0x450c7800 nmethod 7338% 0x0280f948 code [0x0280fa50, 0x0280fb70] Event: 782.889 Thread 0x450c7800 7339 sun.awt.image.PNGImageDecoder::filterRow (459 bytes) Event: 782.889 Thread 0x450c7800 nmethod 7339 0x02759d48 code [0x02759ed0, 0x0275a5bc] Event: 782.890 Thread 0x450c7800 7340 java.awt.Component::checkTreeLock (21 bytes) Event: 782.890 Thread 0x450c7800 nmethod 7340 0x029fba08 code [0x029fbb20, 0x029fbc28] GC Heap History (10 events): Event: 701.048 GC heap before {Heap before GC invocations=128 (full 13): def new generation total 92032K, used 92031K [0x04800000, 0x0abd0000, 0x19d50000) eden space 81856K, 100% used [0x04800000, 0x097f0000, 0x097f0000) from space 10176K, 99% used [0x0a1e0000, 0x0abcfff8, 0x0abd0000) to space 10176K, 0% used [0x097f0000, 0x097f0000, 0x0a1e0000) tenured generation total 204196K, used 159349K [0x19d50000, 0x264b9000, 0x44800000) the space 204196K, 78% used [0x19d50000, 0x238ed430, 0x238ed600, 0x264b9000) Metaspace used 28080K, capacity 29522K, committed 33152K, reserved 33152K Event: 701.118 GC heap after Heap after GC invocations=129 (full 13): def new generation total 92032K, used 10176K [0x04800000, 0x0abd0000, 0x19d50000) eden space 81856K, 0% used [0x04800000, 0x04800000, 0x097f0000) from space 10176K, 100% used [0x097f0000, 0x0a1e0000, 0x0a1e0000) to space 10176K, 0% used [0x0a1e0000, 0x0a1e0000, 0x0abd0000) tenured generation total 204196K, used 203161K [0x19d50000, 0x264b9000, 0x44800000) the space 204196K, 99% used [0x19d50000, 0x263b67a0, 0x263b6800, 0x264b9000) Metaspace used 28080K, capacity 29522K, committed 33152K, reserved 33152K } Event: 701.370 GC heap before {Heap before GC invocations=129 (full 13): def new generation total 92032K, used 92032K [0x04800000, 0x0abd0000, 0x19d50000) eden space 81856K, 100% used [0x04800000, 0x097f0000, 0x097f0000) from space 10176K, 100% used [0x097f0000, 0x0a1e0000, 0x0a1e0000) to space 10176K, 0% used [0x0a1e0000, 0x0a1e0000, 0x0abd0000) tenured generation total 204196K, used 203161K [0x19d50000, 0x264b9000, 0x44800000) the space 204196K, 99% used [0x19d50000, 0x263b67a0, 0x263b6800, 0x264b9000) Metaspace used 28080K, capacity 29522K, committed 33152K, reserved 33152K Event: 701.695 GC heap after Heap after GC invocations=130 (full 14): def new generation total 185344K, used 10057K [0x04800000, 0x11110000, 0x19d50000) eden space 164800K, 6% used [0x04800000, 0x051d2758, 0x0e8f0000) from space 20544K, 0% used [0x0e8f0000, 0x0e8f0000, 0x0fd00000) to space 20544K, 0% used [0x0fd00000, 0x0fd00000, 0x11110000) tenured generation total 411580K, used 246947K [0x19d50000, 0x32f3f000, 0x44800000) the space 411580K, 59% used [0x19d50000, 0x28e78ff0, 0x28e79000, 0x32f3f000) Metaspace used 28080K, capacity 29522K, committed 33152K, reserved 33152K } Event: 719.965 GC heap before {Heap before GC invocations=130 (full 14): def new generation total 185344K, used 164800K [0x04800000, 0x11110000, 0x19d50000) eden space 164800K, 100% used [0x04800000, 0x0e8f0000, 0x0e8f0000) from space 20544K, 0% used [0x0e8f0000, 0x0e8f0000, 0x0fd00000) to space 20544K, 0% used [0x0fd00000, 0x0fd00000, 0x11110000) tenured generation total 411580K, used 246947K [0x19d50000, 0x32f3f000, 0x44800000) the space 411580K, 59% used [0x19d50000, 0x28e78ff0, 0x28e79000, 0x32f3f000) Metaspace used 28358K, capacity 29893K, committed 33280K, reserved 34176K Event: 720.089 GC heap after Heap after GC invocations=131 (full 14): def new generation total 185344K, used 20544K [0x04800000, 0x11110000, 0x19d50000) eden space 164800K, 0% used [0x04800000, 0x04800000, 0x0e8f0000) from space 20544K, 100% used [0x0fd00000, 0x11110000, 0x11110000) to space 20544K, 0% used [0x0e8f0000, 0x0e8f0000, 0x0fd00000) tenured generation total 411580K, used 276856K [0x19d50000, 0x32f3f000, 0x44800000) the space 411580K, 67% used [0x19d50000, 0x2abae278, 0x2abae400, 0x32f3f000) Metaspace used 28358K, capacity 29893K, committed 33280K, reserved 34176K } Event: 762.474 GC heap before {Heap before GC invocations=131 (full 14): def new generation total 185344K, used 185344K [0x04800000, 0x11110000, 0x19d50000) eden space 164800K, 100% used [0x04800000, 0x0e8f0000, 0x0e8f0000) from space 20544K, 100% used [0x0fd00000, 0x11110000, 0x11110000) to space 20544K, 0% used [0x0e8f0000, 0x0e8f0000, 0x0fd00000) tenured generation total 411580K, used 276856K [0x19d50000, 0x32f3f000, 0x44800000) the space 411580K, 67% used [0x19d50000, 0x2abae278, 0x2abae400, 0x32f3f000) Metaspace used 28381K, capacity 29898K, committed 33280K, reserved 34176K Event: 762.509 GC heap after Heap after GC invocations=132 (full 14): def new generation total 185344K, used 3614K [0x04800000, 0x11110000, 0x19d50000) eden space 164800K, 0% used [0x04800000, 0x04800000, 0x0e8f0000) from space 20544K, 17% used [0x0e8f0000, 0x0ec779a0, 0x0fd00000) to space 20544K, 0% used [0x0fd00000, 0x0fd00000, 0x11110000) tenured generation total 411580K, used 297186K [0x19d50000, 0x32f3f000, 0x44800000) the space 411580K, 72% used [0x19d50000, 0x2bf88920, 0x2bf88a00, 0x32f3f000) Metaspace used 28381K, capacity 29898K, committed 33280K, reserved 34176K } Event: 777.256 GC heap before {Heap before GC invocations=132 (full 14): def new generation total 185344K, used 72618K [0x04800000, 0x11110000, 0x19d50000) eden space 164800K, 41% used [0x04800000, 0x08b630b8, 0x0e8f0000) from space 20544K, 17% used [0x0e8f0000, 0x0ec779a0, 0x0fd00000) to space 20544K, 0% used [0x0fd00000, 0x0fd00000, 0x11110000) tenured generation total 411580K, used 297186K [0x19d50000, 0x32f3f000, 0x44800000) the space 411580K, 72% used [0x19d50000, 0x2bf88920, 0x2bf88a00, 0x32f3f000) Metaspace used 28384K, capacity 29905K, committed 33280K, reserved 34176K Event: 777.547 GC heap after Heap after GC invocations=133 (full 15): def new generation total 225664K, used 0K [0x04800000, 0x13cd0000, 0x19d50000) eden space 200640K, 0% used [0x04800000, 0x04800000, 0x10bf0000) from space 25024K, 0% used [0x10bf0000, 0x10bf0000, 0x12460000) to space 25024K, 0% used [0x12460000, 0x12460000, 0x13cd0000) tenured generation total 501168K, used 300699K [0x19d50000, 0x386bc000, 0x44800000) the space 501168K, 59% used [0x19d50000, 0x2c2f6d58, 0x2c2f6e00, 0x386bc000) Metaspace used 28384K, capacity 29905K, committed 33280K, reserved 34176K } Deoptimization events (0 events): No events Classes redefined (0 events): No events Internal exceptions (10 events): Event: 777.669 Thread 0x4e8ed000 Exception <a 'java/io/IOException'> (0x04e9e8f0) thrown at [C:\jenkins\workspace\8-2-build-windows-i586-cygwin\jdk8u341\2692\hotspot\src\share\vm\prims\jni.cpp, line 710] Event: 777.669 Thread 0x4e8ed000 Exception <a 'java/io/IOException'> (0x04e9eb70) thrown at [C:\jenkins\workspace\8-2-build-windows-i586-cygwin\jdk8u341\2692\hotspot\src\share\vm\prims\jni.cpp, line 710] Event: 777.669 Thread 0x4e8ed000 Exception <a 'java/io/IOException'> (0x04e9edc0) thrown at [C:\jenkins\workspace\8-2-build-windows-i586-cygwin\jdk8u341\2692\hotspot\src\share\vm\prims\jni.cpp, line 710] Event: 777.669 Thread 0x4e8ed000 Exception <a 'java/io/IOException'> (0x04e9f100) thrown at [C:\jenkins\workspace\8-2-build-windows-i586-cygwin\jdk8u341\2692\hotspot\src\share\vm\prims\jni.cpp, line 710] Event: 777.669 Thread 0x4e8ed000 Exception <a 'java/io/IOException'> (0x04e9f380) thrown at [C:\jenkins\workspace\8-2-build-windows-i586-cygwin\jdk8u341\2692\hotspot\src\share\vm\prims\jni.cpp, line 710] Event: 777.669 Thread 0x4e8ed000 Exception <a 'java/io/IOException'> (0x04e9f5d0) thrown at [C:\jenkins\workspace\8-2-build-windows-i586-cygwin\jdk8u341\2692\hotspot\src\share\vm\prims\jni.cpp, line 710] Event: 780.376 Thread 0x4e757000 Exception <a 'java/io/IOException'> (0x051d9698) thrown at [C:\jenkins\workspace\8-2-build-windows-i586-cygwin\jdk8u341\2692\hotspot\src\share\vm\prims\jni.cpp, line 710] Event: 780.376 Thread 0x4e757000 Exception <a 'java/io/IOException'> (0x051d9918) thrown at [C:\jenkins\workspace\8-2-build-windows-i586-cygwin\jdk8u341\2692\hotspot\src\share\vm\prims\jni.cpp, line 710] Event: 780.376 Thread 0x4e757000 Exception <a 'java/io/IOException'> (0x051d9b68) thrown at [C:\jenkins\workspace\8-2-build-windows-i586-cygwin\jdk8u341\2692\hotspot\src\share\vm\prims\jni.cpp, line 710] Event: 782.874 Thread 0x4e756c00 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x056fa558) thrown at [C:\jenkins\workspace\8-2-build-windows-i586-cygwin\jdk8u341\2692\hotspot\src\share\vm\prims\jvm.cpp, line 3369] Events (10 events): Event: 782.885 Executing VM operation: RevokeBias done Event: 782.885 Executing VM operation: RevokeBias Event: 782.885 Executing VM operation: RevokeBias done Event: 782.886 Executing VM operation: RevokeBias Event: 782.886 Executing VM operation: RevokeBias done Event: 782.889 Thread 0x450c7800 flushing nmethod 0x0292b288 Event: 782.889 Thread 0x450c7800 flushing nmethod 0x029fba08 Event: 782.889 Thread 0x450c7800 flushing nmethod 0x029fe308 Event: 782.890 Executing VM operation: RevokeBias Event: 782.890 Executing VM operation: RevokeBias done Dynamic libraries: 0x00510000 - 0x0054e000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\java.exe 0x77460000 - 0x77604000 C:\Windows\SYSTEM32\ntdll.dll 0x75650000 - 0x75740000 C:\Windows\System32\KERNEL32.DLL 0x76f60000 - 0x77179000 C:\Windows\System32\KERNELBASE.dll 0x75230000 - 0x752cf000 C:\Windows\SYSTEM32\apphelp.dll 0x76800000 - 0x7687b000 C:\Windows\System32\ADVAPI32.dll 0x75590000 - 0x7564f000 C:\Windows\System32\msvcrt.dll 0x75440000 - 0x754b6000 C:\Windows\System32\sechost.dll 0x754c0000 - 0x7557e000 C:\Windows\System32\RPCRT4.dll 0x76660000 - 0x767fb000 C:\Windows\System32\USER32.dll 0x76f40000 - 0x76f58000 C:\Windows\System32\win32u.dll 0x765c0000 - 0x765e3000 C:\Windows\System32\GDI32.dll 0x75970000 - 0x75a4d000 C:\Windows\System32\gdi32full.dll 0x753c0000 - 0x7543b000 C:\Windows\System32\msvcp_win.dll 0x757d0000 - 0x758f0000 C:\Windows\System32\ucrtbase.dll 0x6e7b0000 - 0x6e9c0000 C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_a8625c1886757984\COMCTL32.dll 0x75740000 - 0x75765000 C:\Windows\System32\IMM32.DLL 0x59b80000 - 0x59b93000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\vcruntime140.dll 0x59b10000 - 0x59b7f000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\msvcp140.dll 0x546a0000 - 0x54a7f000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\client\jvm.dll 0x76880000 - 0x76886000 C:\Windows\System32\PSAPI.DLL 0x6f1a0000 - 0x6f1c8000 C:\Windows\SYSTEM32\WINMM.dll 0x6b5e0000 - 0x6b5e8000 C:\Windows\SYSTEM32\WSOCK32.dll 0x75180000 - 0x75188000 C:\Windows\SYSTEM32\VERSION.dll 0x765f0000 - 0x76653000 C:\Windows\System32\WS2_32.dll 0x75190000 - 0x7519f000 C:\Windows\SYSTEM32\kernel.appcore.dll 0x5f790000 - 0x5f79d000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\verify.dll 0x59ae0000 - 0x59b04000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\java.dll 0x59ac0000 - 0x59ad5000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\zip.dll 0x76000000 - 0x765b5000 C:\Windows\System32\SHELL32.dll 0x74250000 - 0x7485d000 C:\Windows\SYSTEM32\windows.storage.dll 0x77180000 - 0x77400000 C:\Windows\System32\combase.dll 0x74220000 - 0x74247000 C:\Windows\SYSTEM32\Wldp.dll 0x75330000 - 0x753b7000 C:\Windows\System32\SHCORE.dll 0x768f0000 - 0x76935000 C:\Windows\System32\shlwapi.dll 0x72d20000 - 0x72d38000 C:\Windows\SYSTEM32\profapi.dll 0x57f20000 - 0x5806b000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\awt.dll 0x76a60000 - 0x76af6000 C:\Windows\System32\OLEAUT32.dll 0x6f120000 - 0x6f194000 C:\Windows\system32\uxtheme.dll 0x45b70000 - 0x48927000 C:\Program Files (x86)\RivaTuner Statistics Server\RTSSHooks.dll 0x75a50000 - 0x75e89000 C:\Windows\System32\SETUPAPI.dll 0x76ea0000 - 0x76edb000 C:\Windows\System32\cfgmgr32.dll 0x76c60000 - 0x76c79000 C:\Windows\System32\bcrypt.dll 0x76dc0000 - 0x76e94000 C:\Windows\System32\MSCTF.dll 0x76b00000 - 0x76be3000 C:\Windows\System32\ole32.dll 0x75770000 - 0x757cf000 C:\Windows\System32\bcryptPrimitives.dll 0x6f0f0000 - 0x6f116000 C:\Windows\system32\DWMAPI.DLL 0x5b300000 - 0x5b33d000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\fontmanager.dll 0x712f0000 - 0x71307000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\net.dll 0x6dbd0000 - 0x6dc22000 C:\Windows\system32\mswsock.dll 0x714f0000 - 0x714ff000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\nio.dll 0x5b2d0000 - 0x5b2f3000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\sunec.dll 0x66e90000 - 0x66f94000 C:\Windows\system32\opengl32.dll 0x65f20000 - 0x65f5f000 C:\Windows\SYSTEM32\GLU32.dll 0x59c70000 - 0x59dff000 C:\Windows\system32\d3d9.dll 0x65dd0000 - 0x65eb5000 C:\Windows\System32\DriverStore\FileRepository\nv_dispig.inf_amd64_47917a79b8c7fd22\nvldumd.dll 0x70fb0000 - 0x70fbe000 C:\Windows\SYSTEM32\msasn1.dll 0x6d520000 - 0x6d546000 C:\Windows\SYSTEM32\cryptnet.dll 0x76940000 - 0x76a3a000 C:\Windows\System32\CRYPT32.dll 0x6d420000 - 0x6d520000 C:\Windows\SYSTEM32\drvstore.dll 0x6e6d0000 - 0x6e6f4000 C:\Windows\SYSTEM32\devobj.dll 0x71d60000 - 0x71d6a000 C:\Windows\SYSTEM32\cryptbase.dll 0x77400000 - 0x7744e000 C:\Windows\System32\WINTRUST.DLL 0x76a40000 - 0x76a59000 C:\Windows\System32\imagehlp.dll 0x6f0b0000 - 0x6f0e2000 C:\Windows\SYSTEM32\IPHLPAPI.DLL 0x71da0000 - 0x71db3000 C:\Windows\SYSTEM32\CRYPTSP.dll 0x75580000 - 0x75587000 C:\Windows\System32\NSI.dll 0x71d70000 - 0x71d9f000 C:\Windows\system32\rsaenh.dll 0x6b980000 - 0x6b994000 C:\Windows\SYSTEM32\dhcpcsvc6.DLL 0x6bd20000 - 0x6bd36000 C:\Windows\SYSTEM32\dhcpcsvc.DLL 0x6b8f0000 - 0x6b980000 C:\Windows\SYSTEM32\DNSAPI.dll 0x58620000 - 0x59ab7000 C:\Windows\System32\DriverStore\FileRepository\nv_dispig.inf_amd64_47917a79b8c7fd22\nvd3dum.dll 0x583f0000 - 0x58613000 C:\Windows\system32\nvspcap.dll 0x71220000 - 0x71249000 C:\Windows\SYSTEM32\ntmarta.dll 0x6f490000 - 0x6f4ae000 C:\Windows\SYSTEM32\gpapi.dll 0x6b340000 - 0x6b36c000 C:\Windows\SYSTEM32\dxcore.dll 0x59bc0000 - 0x59bf7000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\t2k.dll 0x583c0000 - 0x583e6000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\dcpr.dll 0x758f0000 - 0x7596e000 C:\Windows\System32\clbcatq.dll 0x59e00000 - 0x59f71000 C:\Windows\SYSTEM32\WindowsCodecs.dll 0x6b390000 - 0x6b3c1000 C:\Windows\system32\dataexchange.dll 0x6aa20000 - 0x6ac00000 C:\Windows\system32\d3d11.dll 0x6a8b0000 - 0x6aa15000 C:\Windows\system32\dcomp.dll 0x6c120000 - 0x6c1e3000 C:\Windows\system32\dxgi.dll 0x6b0b0000 - 0x6b23f000 C:\Windows\system32\twinapi.appcore.dll 0x6b460000 - 0x6b519000 C:\Windows\SYSTEM32\textinputframework.dll 0x6e710000 - 0x6e7ab000 C:\Windows\System32\CoreMessaging.dll 0x6de10000 - 0x6e08e000 C:\Windows\System32\CoreUIComponents.dll 0x6e090000 - 0x6e16b000 C:\Windows\SYSTEM32\wintypes.dll 0x58330000 - 0x583bf000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\mlib_image.dll 0x71250000 - 0x71275000 C:\Windows\SYSTEM32\USERENV.dll 0x6b8d0000 - 0x6b8e1000 C:\Windows\system32\napinsp.dll 0x6b8b0000 - 0x6b8c6000 C:\Windows\system32\pnrpnsp.dll 0x6b8a0000 - 0x6b8b0000 C:\Windows\system32\wshbth.dll 0x6b880000 - 0x6b896000 C:\Windows\system32\NLAapi.dll 0x6b870000 - 0x6b87e000 C:\Windows\System32\winrnr.dll 0x6b5f0000 - 0x6b649000 C:\Windows\System32\fwpuclnt.dll 0x6b860000 - 0x6b868000 C:\Windows\System32\rasadhlp.dll 0x62bf0000 - 0x62bfb000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\sunmscapi.dll 0x631e0000 - 0x63201000 C:\Windows\SYSTEM32\ncrypt.dll 0x63210000 - 0x63238000 C:\Windows\SYSTEM32\NTASN1.dll 0x5d1a0000 - 0x5d1bd000 C:\Users\Sonny\AppData\Local\Temp\qqqe8362882630369938458.dll 0x5dae0000 - 0x5daec000 C:\Program Files (x86)\Java\jre1.8.0_341\bin\management.dll 0x58300000 - 0x5832c000 C:\Users\Sonny\AppData\Local\Temp\erwq8916480379630167214.dll 0x6dc80000 - 0x6de08000 C:\Windows\SYSTEM32\dbghelp.dll VM Arguments: jvm_args: -Xmx1024m -Xbootclasspath/p:C:\Users\Sonny\OSBot\Data\filter_ffa953d2.jar java_command: org.osbot.BotApplication 1,1,0,null,null,-1,0,0,0,0,0,null,false,false,null,false,true,-1,-1,false,false java_class_path (initial): /C:/Users/Sonny/Desktop/osbot 2.6.53.jar;/C:/Users/Sonny/Desktop/osbot 2.6.53.jar Launcher Type: SUN_STANDARD Environment Variables: PATH=C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\Users\Sonny\AppData\Local\Microsoft\WindowsApps; USERNAME=Sonny OS=Windows_NT PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 158 Stepping 10, GenuineIntel --------------- S Y S T E M --------------- OS: Windows 10 , 64 bit Build 19041 (10.0.19041.1889) CPU:total 6 (initial active 6) (6 cores per cpu, 1 threads per core) family 6 model 158 stepping 10, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, rtm, 3dnowpref, lzcnt, tsc, tscinvbit, bmi1, bmi2, adx Memory: 4k page, physical 16685688k(10219040k free), swap 22112764k(10943984k free) vm_info: Java HotSpot(TM) Client VM (25.341-b10) for windows-x86 JRE (1.8.0_341-b10), built on Jun 16 2022 15:54:02 by "java_re" with MS VC++ 15.9 (VS2017) time: Sat Sep 24 15:05:47 2022 timezone: GMT Daylight Time elapsed time: 782.964594 seconds (0d 0h 13m 2s) Sorry thats the full log file i receive on my desktop screenshots https://www.dropbox.com/s/49ek40kkrumykqo/client bug1.png?dl=0 https://www.dropbox.com/s/aljl6djrdo51yfs/client bug 2.png?dl=0 https://www.dropbox.com/s/rikz661e4n0wajn/client bug 3.png?dl=0 there is a quick fix Full screen the client and it will stop happening intill you minimize it again thanks DarkScuzz
  15. Hello everyone The script is now back working, it must of just need the client to be update Use client version 2.6.52 for this to work
  16. Hi man, i've ran the script only about 2 days total or just abit more and earn about 4m ish and not completed fairytale having the bot do ranarr seeds, profit about 100-200k a trip uses 5 ranarr seeds atm (not unlocked farms guild) come back with 4-500k in return just completed the quest to get to fossil island and now im 61 farming 61 hunter had the script run some days 8 hours
  17. Error in bot executor or from Error class (and not Exception)! java.lang.AbstractMethodError: client.emu.EmuClient.getMenuAction()[Ljava/lang/String; at org.osbot.rs07.api.Menu.getMenu(oe:189) at org.osbot.rs07.api.Menu.getMenuIndex(oe:152) at org.osbot.rs07.event.InteractionEvent.iIIiiiiIiIi(bl:368) at org.osbot.rs07.event.InteractionEvent.execute(bl:489) at org.osbot.rs07.event.EventExecutor.iIiiIiIiIii(eg:229) at org.osbot.rs07.event.EventExecutor.execute(eg:226) at org.osbot.rs07.script.MethodProvider.execute(xe:581) at org.osbot.rs07.api.Bank.open(qk:541) at api.CoM7.a(oa:447) at api.CoM7.M(oa:281) at NuL.t(da:4695) at NuL.onLoop(da:543) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(vm:235) at java.lang.Thread.run(Unknown Source) [INFO][Bot #1][09/08 03:09:48 PM]: Shutting down script background executor New error's after updates today thanks darkscuzz
  18. Hello Token i have a repeating issue with the buying supplys [INFO][Bot #1][08/30 11:12:59 PM]: available money: 2109443 [INFO][Bot #1][08/30 11:12:59 PM]: fixed costs: 4967.000044 [INFO][Bot #1][08/30 11:12:59 PM]: cost per farming trip: 2560.083334 [INFO][Bot #1][08/30 11:12:59 PM]: cost per birdhouse trip: 2187.875008 [INFO][Bot #1][08/30 11:12:59 PM]: farming restocking frequency: 10 - 30 [INFO][Bot #1][08/30 11:12:59 PM]: birdhouse restocking frequency: 15 - 45 [INFO][Bot #1][08/30 11:12:59 PM]: current farming: 22 (56321.833347); birdhouses: 32 (70012.000244) [INFO][Bot #1][08/30 11:12:59 PM]: total gross cost for next trips: 126333.833591 [INFO][Bot #1][08/30 11:12:59 PM]: requirement summary: 1 x Spade 1 x Rake 1 x Seed dibber 1 x Staff of fire 4 x Clockwork 1 x Chisel 1 x Hammer [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Falador teleport required=66 owned=0 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Marrentill seed required=44 owned=0 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Compost required=176 owned=0 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Camelot teleport required=66 owned=0 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Tomato seed required=264 owned=0 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Rosemary seed required=44 owned=0 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Ring of dueling(8) required=4 owned=0 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Ruby necklace required=32 owned=3 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Cosmic rune required=32 owned=3653 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Teak logs required=128 owned=0 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Barley seed required=1280 owned=0 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Spade required=1 owned=1 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Rake required=1 owned=0 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Seed dibber required=1 owned=0 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Staff of fire required=1 owned=1 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Clockwork required=4 owned=0 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Chisel required=1 owned=1 [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Hammer required=1 owned=1 [INFO][Bot #1][08/30 11:12:59 PM]: final requirements: 66 x Falador teleport 44 x Marrentill seed 176 x Compost 66 x Camelot teleport 264 x Tomato seed 44 x Rosemary seed 4 x Ring of dueling(8) 29 x Ruby necklace 128 x Teak logs 1280 x Barley seed 1 x Rake 1 x Seed dibber 4 x Clockwork the Script loops buying falador teleports, marrentill seeds / tomato seeds , it will buy from the GE collect and again, buy collect / buy collect and keep repeating intill i stop the script when i stop the script and restart it will loop different everytime on them 3 items [INFO][Bot #1][08/30 11:12:59 PM]: item: name=Tomato seed required=264 owned=0 it says owned=0 but i have over 100 in inventory same with falador tabs + other seeds and yes i did try them in the bank itsself and still same will just loop buying in GE and i am using mirror mode Thanks darkscuzz
  19. Hello Khal im using your Khal AIO Herblore script when i start to start the script to make potions (to finish) it keeps giving error not enough unf potions i had over 1k unf potions in bank, and it still gave error i used :- by out of supplies by item-action amount still will give error not enough unf potions then quit thanks darkscuzz
  20. Hello im having an issue with the script i have 100 dodgy necklaces in my bank i start the script and the script gives an error not enough dodgy necklaces i am trying to bot from lvl 1, but still i got bank account 100 still the same, error not enough dodgy necklaces thanks darkscuzz I am setting the stop lvl at 10, / 30 tryed both lvls stops, still same error

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.