Jump to content

Psybration

Members
  • Posts

    54
  • Joined

  • Last visited

  • Feedback

    100%

Profile Information

  • Gender
    Male

Recent Profile Visitors

954 profile views

Psybration's Achievements

Iron Poster

Iron Poster (3/10)

12

Reputation

  1. Oh thanks! I'm quite new into this, how would I go about downloading the font to the data directory and then load it? Got any snippets for that? Thanks!!
  2. Hey, how can I load a custom font into my script? I've tried the following but to no success, what am I doing wrong? Create a resources folder in the same level as the src folder and mark it as a resources root directory + include the files in the JAR. place the font inside resources/fonts/Speedy.ttf load the font with the following code: try { InputStream is = getClass().getClassLoader().getResourceAsStream("fonts/Speedy.ttf"); speedy = Font.createFont(Font.TRUETYPE_FONT, is); } catch (FontFormatException | IOException e) { api.log(e.getMessage()); throw new RuntimeException(); } g.setFont(speedy); I get the following error: [INFO][Bot #1][08/11 10:39:08 em]: Stream closed [ERROR][08/11 10:39:08 em]: Uncaught exception! java.lang.RuntimeException: java.io.IOException: Stream closed at com.psyfisher.ui.Paint.loadResources(Paint.java:72) at com.psyfisher.ui.Paint.onStart(Paint.java:37) at com.psyfisher.ui.Paint.<init>(Paint.java:31) at com.psyfisher.PsyFisher.setRunning(PsyFisher.java:78) at com.psyfisher.ui.Settings.lambda$createStartButton$0(Settings.java:124) at java.desktop/javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1967) at java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2308) at java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405) at java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262) at java.desktop/javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:279) at org.pushingpixels.substance.internal.utils.RolloverButtonListener.mouseReleased(RolloverButtonListener.java:108) at java.desktop/java.awt.Component.processMouseEvent(Component.java:6635) at java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3342) at java.desktop/java.awt.Component.processEvent(Component.java:6400) at java.desktop/java.awt.Container.processEvent(Container.java:2263) at java.desktop/java.awt.Component.dispatchEventImpl(Component.java:5011) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2321) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4843) at java.desktop/java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4918) at java.desktop/java.awt.LightweightDispatcher.processMouseEvent(Container.java:4547) at java.desktop/java.awt.LightweightDispatcher.dispatchEvent(Container.java:4488) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2307) at java.desktop/java.awt.Window.dispatchEventImpl(Window.java:2772) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4843) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:772) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:715) at java.base/java.security.AccessController.doPrivileged(Native Method) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:85) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:95) at java.desktop/java.awt.EventQueue$5.run(EventQueue.java:745) at java.desktop/java.awt.EventQueue$5.run(EventQueue.java:743) at java.base/java.security.AccessController.doPrivileged(Native Method) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:85) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:742) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:117) at java.desktop/java.awt.WaitDispatchSupport$2.run(WaitDispatchSupport.java:190) at java.desktop/java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:235) at java.desktop/java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:233) at java.base/java.security.AccessController.doPrivileged(Native Method) at java.desktop/java.awt.WaitDispatchSupport.enter(WaitDispatchSupport.java:233) at java.desktop/java.awt.Dialog.show(Dialog.java:1070) at java.desktop/java.awt.Component.show(Component.java:1716) at java.desktop/java.awt.Component.setVisible(Component.java:1663) at java.desktop/java.awt.Window.setVisible(Window.java:1031) at java.desktop/java.awt.Dialog.setVisible(Dialog.java:1005) at com.psyfisher.ui.Settings.open(Settings.java:32) at com.psyfisher.PsyFisher.lambda$initSettings$0(PsyFisher.java:58) at java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:303) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:770) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:715) at java.base/java.security.AccessController.doPrivileged(Native Method) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:85) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:740) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124) at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101) at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90) Caused by: java.io.IOException: Stream closed at java.base/java.util.zip.InflaterInputStream.ensureOpen(InflaterInputStream.java:68) at java.base/java.util.zip.InflaterInputStream.read(InflaterInputStream.java:143) at java.base/java.io.FilterInputStream.read(FilterInputStream.java:107) at java.desktop/java.awt.Font.createFont0(Font.java:1112) at java.desktop/java.awt.Font.createFont(Font.java:1052) at com.psyfisher.ui.Paint.loadResources(Paint.java:65) ... 62 more
  3. Stealth injection is almost always ban. Use mirror mode.
  4. may i ask bro which script u used for this , break times etc to bot these accounts without getting banned? I did 10 hcim agil accs all got banned haha. Maybe cuz back then i was using stealth injection, which isnt very good. Nowadays i only use mirror and bans are way less frequent, however I dont bot agility anymore but Im jsut curious.
  5. Cool picture! How much did u pay for it?
  6. This particular account was a f2p fishing account. Botted maybe 8hrs, cant remember break times. Was just trying it out. All my other accounts are fine.
  7. Please note that I was using stealth injection on the accounts. You might have different results with mirror mode + different break times.
  8. https://osbot.org/forum/topic/158843-how-to-run-multiple-mirror-mode-clients/
  9. You could sell for approx $20-30 However botting 1-70 agility is high banrate. I did this with a botfarm of 10 accs, eventually all my accs got banned.
  10. Thanks a lot for the thorough explanation! What's the source that 95% people get their accounts banned through in-game reports?
  11. Thank you for sharing this great information! If I bot several accounts on my home-ip and one of them gets a 2 day ban, do you think my other accounts would be at risk if I contacted Jagex asking them to quash the ban in the event that they would check my other accounts?
  12. Did u do all the work urself from lvl 3?
×
×
  • Create New...