Everything posted by Eliot
-
Macro Killer Source
Thanks, helped me discover Optionals!
-
Processor denying my payment's for scripts
Lmao
-
Can anyone help me
As others said, change to use NPC. getNpcs().closest("Chicken")
- Salty
-
Buying 25M ($1) ASAP
There are bulk buyers who are paying higher rates atm.
-
Would you think my GPU is too hot? :think:
Yes, that's getting close to too hot. What are you doing?
-
need an average+ php developer!
"might be able to pay" top kek!
-
70-82 Magic
You're willing to manually alch for the equivalent of $0.50 USD per hour?
-
How do you buy bots with RSGP?
I'd suggest selling the rsgp via paypal then buying your script.
-
Is there a way to determine if player is facing object?
Here's code that we wrote years ago to do this, not the best looking code but it might help you! protected RS2Object getFacingRock() { if (script.myPlayer().getAnimation() == -1) return null; int orientation = script.myPlayer().getRotation(); if (Math.abs(orientation - 1536) < 50) { Position rockP = new Position(script.myPlayer().getX() + 1, script .myPlayer().getY(), script.myPlayer().getZ()); return getRockAt(rockP); } else if (Math.abs(orientation - 1024) < 50) { Position rockP = new Position(script.myPlayer().getX(), script .myPlayer().getY() + 1, script.myPlayer().getZ()); return getRockAt(rockP); } else if (Math.abs(orientation - 512) < 50) { Position rockP = new Position(script.myPlayer().getX() - 1, script .myPlayer().getY(), script.myPlayer().getZ()); return getRockAt(rockP); } else if (orientation < 25 || orientation > 1800) { Position rockP = new Position(script.myPlayer().getX(), script .myPlayer().getY() - 1, script.myPlayer().getZ()); return getRockAt(rockP); } return null; } protected RS2Object getRockAt(Position p) { return script.objects.closest(new Filter<RS2Object>() { @Override public boolean match(RS2Object rs2Object) { return rs2Object.getName().equals("Rocks") && rs2Object.getX() == p.getX() && rs2Object.getY() == p.getY(); } }); }
-
Fruity Zulrah Killer
Damn why are you botting on that account, lol.
- BANED With private script
-
Approve thread pls
Simply riveting thread.
-
[Stable] OSBot 2.4.130 - Ads + Input
Hopefully Zach can recreate on OSX.
-
[Stable] OSBot 2.4.130 - Ads + Input
Strange. https://i.gyazo.com/edac30b32487a72e2465283e1b526e66.mp4
-
[Stable] OSBot 2.4.130 - Ads + Input
I was adding it via getBot().addMouseListener(mouseListener); directly. I changed it to how you do it and it now works until I open the logger, then everything goes to hell.
-
[Stable] OSBot 2.4.130 - Ads + Input
Care to share how you're adding the mouse listener? Perhaps via PM?
-
Eliot's Private Scripts | Not Currently Accepting New Clients
Found another client, not accepting more clients. Will bump when available again!
-
Selling Rare RSN!
Every RSN is equally rare, simple math.
-
Do you know the person above you? Do you like them? Do you trust them?
New phone who dis ^
-
[Stable] OSBot 2.4.130 - Ads + Input
Mac OS X El Capitan.
-
[Stable] OSBot 2.4.130 - Ads + Input
Just tested quickly: Disable input worked initially After opening logger disable input no longer works Mouse listener did not work at all (my scripts use this a lot, hoping for a fix). edit: mouse listener partially works in .127, not at all now.
-
Eliot's Private Scripts | Not Currently Accepting New Clients
I finished my first client's script. Currently accepting another client. PM me!
- OSBot chat filter mod
-
Need help with script
Hard to help without a code snippet.