Jump to content

flewis

Members
  • Posts

    97
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by flewis

  1. Any proxy I use from any provider all of a sudden locks the account for suspected theft. Not sure if this is an implementation on Jagex's end or OSBOT but the proxies worked fine before.
  2. All my proxy account have been locked too, across all providers in including residentials...
  3. If you want to bot I recommend you update your operating system, if your device cannot because of hardware limitations the best options would be to either write your own script, use physical hardware or take your phone apart and by some parts to upgrade it. Shouldn't be more than $10 or so
  4. I meant the version of android you are using
  5. Have you got a newer phone or an older phone? Specifications are required.
  6. 'Tapping - Auto Clicker', no root access either. I suggest if you have access to a computer to use OSBOT however as it is greatly more effective than an autoclicker. OSBOT can be used as an autoclicker however too!
  7. Hey all, Was just wondering what is the lowest possible memory + CPU usage was using launch settings such as by using -nointerface ETC. Looking for anything that could improve the mainly the memory as the official client whilst running uses around 150-200MB of RAM to compared to the average 500MB of OSBOT. Thank you for any help -Flewis
  8. Thank you so much guys Been a huge help honestly I can't express my gratitude enough!
  9. Hey all, Wrote my first fully functioning script (first Java project also) and was just wondering what I could do to improve it in terms of making the code more efficient and also better practices I could have used. I feel it looks to Pythonic to compared to other script source codes I've looked at. Python is the programming language I took in computer science so it makes sense but on a journey to learn Java I will need to drop old habits. Below is the entire code. Any feedback is greatly appreciated Script features: Will spin flax in Lumbridge castle Banks on the top floor Can be stopped and started anytime and will figure out where you left off. Will stop when the user has no more flax in the bank Has mechanisms to deal with lag for example if widgets don't open ETC Tested on all server locations import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.map.Position; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.ui.RS2Widget; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; @ScriptManifest(name = "Flax Spinner", author = "Flewis", version = 1.0, info = "", logo = "") public class FlaxSpinner extends Script { // Variable for the current stage of the bot private int currentAction = 0; // Used to check to see if a run has started private boolean started = false; // Location of the bank private final Area bankArea = new Area(new Position(3207, 3217, 2), new Position(3210, 3220, 2)); // Location of the wheel private final Area wheelArea = new Area(new Position(3208, 3212, 1), new Position(3213, 3216, 1)); @Override public void onStart() { //Code here will execute before the loop is started if (getInventory().contains("Flax")) { currentAction = 2; } } @Override public void onExit() { //Code here will execute after the script ends } @Override public int onLoop() throws InterruptedException { switch(currentAction) { // Walks to the bank case 0: getWalking().webWalk(bankArea); currentAction++; // Open bank, bank bowstring (if possible), take out flax, close bank case 1: getBank().open(); if (getBank().isOpen()) { getBank().depositAll(); Script.sleep(random(500, 1500)); if (getBank().getAmount("Flax") == 0) { log("Stopped due to having no flax!"); stop(); } getBank().withdraw("Flax", random(28,436)); Script.sleep(random(500, 1500)); getBank().close(); currentAction++; } // Walks to the wheel case 2: if (!getInventory().contains("Flax")) { currentAction = 0; return random(500, 1200); } getWalking().webWalk(wheelArea); currentAction++; started = false; // Spin the flax case 3: if (!widgets.isVisible(233) && started && !getInventory().contains("Flax")) { return random(1000, 1500); } if (widgets.isVisible(233)) { started = false; } if (!getInventory().contains("Flax") && wheelArea.contains(myPlayer())) { currentAction = 0; } else { Entity spinningWheel = getObjects().closest("Spinning wheel"); if (spinningWheel != null) { spinningWheel.interact("Spin"); Script.sleep(random(500, 1500)); RS2Widget bs = getWidgets().get(270, 16, 38); if (bs != null) { getKeyboard().pressKey(' '); Script.sleep(random(100, 250)); getKeyboard().releaseKey(' '); started = true; } } } } return random(1000, 1500); //The amount of time in milliseconds before the loop starts over } @Override public void onPaint(Graphics2D g) { //This is where you will put your code for paint(s) } } Thank you -Flewis
  10. Oh yes I must've clicked the wrong section and I haven't played Runescape for years so I didn't know that, thank you though Ok that actually makes sense, I have not played since the new changes, I would however like to get back into botting at some point however!
  11. Hey all, Title really says it all, just want to get an idea of prices of these accounts, atm I have found average prices of around 500k-2m that is quite a range (although some posts are older). Also hand-made and botted accounts sell for different prices I think? Thanks for any help. -Flewis
  12. Yeah sorry that was me just being stupid, thank you for the heads up I am fairly new to scripting in Java and I have gone pretty big for a first project but everything has been successful so far. Also how do I start OSBOT with -norandoms? Okay thank you, could you link me to Explv's login handler class, he has so many resources.
  13. Hey'a everyone, I can't find a way to log out wait some time then log back in, the code I have so far is: getLogoutTab().logOut(); // Logs out sleep(random(25000, 30000)); // Ignore the time I'll change this later AutoLogin(); // <------------ this doesn't work for some reason and just comes up with an error 'AutoLogin();' is what is used on the OSBOT documentation. Thanks for any response -Flewis
  14. Just thought I'd add this code in, this will test if the item has been brought in a specific box in the GE so if you have any waiting involved you can use this code to check if the buy has completed. // Tests to see if box one is being used or not if (getGrandExchange().getStatus(GrandExchange.Box.BOX_1) != GrandExchange.Status.EMPTY) { log("Box 1 of the Grand Exchange is not empty..."); sleep(random(2000, 3000)); // Tests to see if box 1 is finished if (grandExchange.getAmountRemaining(GrandExchange.Box.BOX_1) == 0) { log("Item 1 has finished in GE box 1..."); } } Also I used 'getAmountRemaining' because all the other methods were not working for me in the new update. -Flewis
  15. @Czar good script overall but sadly it has so many bugs that it's basically unusable over long periods. The script will literally just stop for absolutely no reason and get stuck. Also blackjacking needs a major update due to it only being able to blackjack for about 5 minutes before needing food (use the noted item method). When getting cakes from the bakers stall it doesn't drop the unwanted items like chocolate cake slice/bread and also doesn't eat when health gets low so the character just ends up dying. The script doesn't handle dying very well either it just logs out. I think some of the problems with the script are down to how much useless content there is in script. I get that the script is AIO but it would be better to take some of the unused NPC's out of the script and just focus on the important NPC's like paladins, knights, guards, men and blackjacking. The chests do work very well though. The paint is also very good and it calculates the XP rates very accurately. I hope this gives some advice for future updates. I do really think the script has much potential -Flewis
  16. Disputed Member: okok123 Why it should be removed: The feedback is just absolutely false... Details: I run an unbanning service, I send an email to Jagex via their support email to try and recover accounts. The user was not charged anything and I can't access the account if it's banned obviously... I can't understand why I'm being given negative feedback just because Jagex hasn't replied, I even stated that it would take anywhere up to and beyond 27 days and it's been 2 days... The user is impatient and I gave regular updates of what was happening until he just stopped replying. Here is proof that I told the user what to expect and even stated that it would take at least 27 days: Link to topic: No topic done by private messages.
  17. Wow this literally defines talent...
  18. Dear all, I'm looking for a level 91 rc account. Only requirements is it has to be able to use Abyss effectively and it needs all 4 pouches. My Skype got hacked so for time being I'm going to use OSBOT PM's but I'll link new Skype in signature soon... -Flewis
  19. Nah I recon 30 Mil, It's got some half decent stats and overall the total account XP could surpass a $80 Zerker account or Voider!! Also it has a decent total level.
  20. Hey there!! May I ask how you've already managed to get a trade with caution?
  21. It's testing if the player is doing an animation (moving) not the feather!!
  22. Oh no it's testing if they player is animating (moving) not the feather. Just look over the pastebin again, dw though I definitely knew that even from the beginning!! Thanks for the advice anyway though
  23. I hope so, I have big plans for the dungeoneering and summoning skills when they when they release Wow thank you for the advice this is actually game changing, thank you!! This will come in handy when making things like dungeoneering and summoning scripts when the two skills finally release!! Again thank you so much!! Thank you
  24. Dear all, When learning the OSBOT API/Java I made a simple feather collector script. I just wanted to put the script out there for everyone to use, it's efficient but it could easily be made more efficient if someone wanted to edit the timings just I didn't want to get banned so I made the times quite long and random. Please remember I wrote this about a week ago in my first 1-2 hours of learning Java and I have got a lot better since then Anyway have fun with the script, if you want anything added to it please let me know and I'll see what I can do!! Download - FeatherCollector.jar Pastebin - https://pastebin.com/nwhamZZF Thank you for downloading!! -Flewis
  25. Dear all, Just wondering how much an account with 99 runecrafting or 99 fletching would cost (not both runecrafting and fletching)? Also wondering how much an account with 75 runecrafting or 75 fletching would cost (again not both runecrafting and fletching)? Thank you for your help -Flewis
×
×
  • Create New...