Jump to content

7331337

Members
  • Posts

    211
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by 7331337

  1. Sold Out no ETA for a restock 1) I'm not going first 2) Verified Paypal only 3) You'll be asked to send a note with the payment. 4) If you want a middleman, you're paying the fee's for them. 5) We can do increments if you want of 1M Post here and PM me your Skype with how much you want to buy.
  2. @Precise I don't know how random widgets are I just hard coded it instead.
  3. Flicks prayer to stay at one, doesn't use pots or special attack. Useful for afking for 40-90 minutes at a time depending on what you're wearing. Also has a slight anti-ban, I wasn't banned and I used this for approx 60 hours 14hr/s a day. I suggest changing the Sleep() timers to be more unique for yourself. import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.api.ui.Message; import org.osbot.rs07.api.ui.RS2InterfaceChild; import org.osbot.rs07.api.ui.Tab; import org.osbot.rs07.api.ui.Message.MessageType; import java.awt.*; import java.util.List; @ScriptManifest( author = "7331337", info = "Assist NMZ training, automatic hp flicker.", name = "EzEMZAssister", version = 0.2, logo = "") public class main extends Script{ int[] hardFlick = {707,260,723,275}; int totalFlicks = 0; @Override public void onStart() { log("Started"); } @Override public void onExit() { //Code here will execute after the script ends } @Override public int onLoop() throws InterruptedException { int prayX = random(hardFlick[0], hardFlick[2]); int prayY = random(hardFlick[1], hardFlick[3]); int [] slightFlick = {(prayX + random (0, 4) - 2), (prayY + random (0, 4) - 2)}; int flickChance = random(0,100); inventory.interact("Absorption", "Drink"); if (getTabs().getOpen() == Tab.PRAYER){ totalFlicks++; getMouse().click(prayX,prayY, false); sleep(random(79,438)); if (flickChance > 85){ getMouse().click(slightFlick[0], slightFlick[1], false); return random(14721,37197); } if (flickChance < 2){ prayX = random(hardFlick[0], hardFlick[2]); prayY = random(hardFlick[1], hardFlick[3]); getMouse().click(prayX,prayY, false); log ("Yolo flick occured"); return random(13147,37971); } getMouse().click(prayX,prayY, false); log("Times flicked; " + totalFlicks); return random(12475,37741); } else { getTabs().open(Tab.PRAYER); log("Prayer is closed opening tab..."); } return random(121,1047); //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) } } Download; http://multiupload.biz/ls75gecueu9r/nmzFlicker_MultiUpload.biz.jar.html
  4. All of my accounts just got banned in less then 12 hours of using my brand new custom script for Runecrafting running... Each account had its on unique IP (and were older then a few months) and my script had the following antibans; - Breaks enabled every couple hours for around 20-60 minutes - Randomized pathing + extra security measures like avoiding the tribesmen/spider if they were in the path itself - Random trade partners each time for trading doubling natures - Randomly sold 10 extra essence to the store to seem humanly - Lazy follow to follow someone else walking the the store if possible bans 2 hard jagex 2 gewd
  5. I never personally dealt with it because I gold farmed back in 2013 when you could bot 24/hr and not even give a shit. Pretty sure they'll flag your accounts based on these; - Time spent logged - Common bot patterns - Watched by jagex mods (yh they watch you) - Highly watched skils like WC, Hunter, etc - Number of bots per IP (more then 2 is easily detectable and noticeable when accs have same logins, logouts, etc. )
  6. There's 10k+ proxies out there, the chances of getting a flagged IP is slim. I'd watch out for shared proxies because they'll be more likely to be flagged (maybe something like 1/100 tbh if there cheap as-well). Also depending on the seller they'll more than likely replace at a discounted rate. Once they get banned its a flagged IP so discard it.
  7. Stores are fixed and banking is also working fine now Thanks ;D
  8. Here I am botting 14hr's/day without a ban and I've been doing it for two weeks now. #bestCode
  9. Pls don't get PMS when someone criticizes you, and yes flax is buy-able for 5GP each seeing as I bought over 120k of it when it was 3 each.
  10. I don't get why you'd even do this because Flax is buy-able for 5GP EA lol >.>
  11. Not enough posts ;'( Add exception for people with ranks pls ;)
  12. Yeah just tried actually running a bot, none of the previous versions will work because of the updated injections/hooks on the server(OSBot) it gets it from at-least from the error code anyway.
  13. Clear the cache maybe for OSBot?
  14. -snip- nvm doesn't work.
  15. Seems like for some reason some banks like treasure chest bank's aren't supported by bank.open(); Name of Object is "Bank Chest", bank under lumbridge doesn't get scene neither does Al Khalid's bank either so maybe a missing bank source?
  16. I feel missed out, I didn't get my bans jagex pls.
  17. Why not do something like; // Check the distance on how close we are if ((myPlayer().getX() - objects.closest("Furnace").getX()) < 3 && (myPlayer().getY() - objects.closest("Furnace").getY()) < 3){ // Check if we're doing anything if (myPlayer().getInteracting() == null && myPlayer().isAnimating() == false){ // Check if we have steel bars or whatever in our inventory still if (inventory.contains("Steel Bar")){ return somethingSmithingGoesHere; // Return to make it start smithing } } } Edit; I'm bored I'll make a c-ball maker.
×
×
  • Create New...