Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/04/15 in Posts

  1. http://osbot.org/forum/topic/76654-small-chance-of-skype-compromised/?p=849584 also to the skype compromise my skype is not compromised i ran a side check to make sure me telling you the possibility my skype might be compromised is not me saying my skype is compromised ! also alain states in the above text that she had not logged on beezmans+2@hotmail.com then how the hell is he able to list off what was on the acct? http://gyazo.com/fd1e8ce3f358925caec57edcd7ea4bef proof of her being able to list/value what was on the acct http://gyazo.com/6d7cad4c32e243bce562b5c7d8eafb93 http://gyazo.com/b87f0d64b158bee988ea9f97ab2b5a82 i left the above items+ 4m on the acct there in my account that i provided them grand exchange sell history i also left 4m 07 the EXACT TOTAL OF THESE ITEMS COMES TO 17M HOW WAS SHE ABLE TO SO ACCURATELY TELL ME THE EXACT AMOUNT ON THE ACCT [THAT SHE APPARENTLY NEVER LOGGED ON TOO] http://gyazo.com/cb87f576eb82883b7c26d29441c87734 alain stating she didnt log on the account but somehow knew the exact value of items taken...... something doesnt smell right and i just took a shower all i got to say
    7 points
  2. Botting safe it isn't. Ban there is. Care taken there must be. Wise to use breaks it is.
    4 points
  3. Hello guys. Yesterday I decided to go back to 07 and try to bot an fresh lvl 3 account. I'm thinking of just botting in the beginning but if it goes well, I will play legit. But that will take time As I already said I created the account yesterday, with no thoughts of creating a progress thread on here. So I havent got any stats/bank pics after from yesterday. But I have botted pretty much since yesterday and I will post progress so far. I will try to update everyday! Thanks for reading, and oh sorry for bad englesh Stats Bank UPDATE: Da weird bank WC Proggy STATS Made some profit from furnace minigame Had to make some steel bars, to be able to buy raw fish for cooking gainz. (I do only have this acc for cash) stats
    3 points
  4. 3 points
  5. Yeah, because bans don't happen automatically.
    3 points
  6. 3 points
  7. I just learned yesterday that he was not a goat
    3 points
  8. The bright side is that Fagex isn't focusing on the bots, they are trying to find that damn dupe XD. So everyone, bot, bot bot, suicide bot! I've been running 10 accounts 24/7 for like 3 days straight! Hurry and get gains!
    2 points
  9. Hey everyone! I just want to thank Divinity for everything he has done for me and I want to spread the love Using my own money, you can WIN any of his following Extreme scripts: 1. 2. 3. 4. 5. 6. AND (Since the smither and druids are cheaper, its a 2 for 1 deal!) Rules Now the rules are simple: Guess a number between 111-1111 and I would use an random number generator Everyone can have up three guesses by: 1. By liking this post and the thread of the bot you want (I WILL CHECK IF YOU LIKED THE POST OR NOT) 2. Putting the logo [above] of the bot you want into your signature (just copy and paste it, but make sure the image is still linked) for a minimum of two weeks 3. By purchasing any of his script. Doesn't matter if you purchased this before or after this thread, just make sure you write what script you have/purchased. (TRIALS DO NOT COUNT) Any cheating such as posting multiple guesses when you are eligible for one or lying about purchasing a script will result you being disqualified. Make sure that your guess is different, if there is a case that the lucky number is picked by multiple people, then the first person to post will win. The person who got the number or is closest will win! Contest will end whenever I feel like drawing the winning number but you have at least 24 hours so post away So good luck and have fun!!! Special thanks to: Dex
    2 points
  10. lool Noah keep these threads up pls i enjoy havin a laugh
    2 points
  11. by Czar Now Added Divine potion making!! (Grinding chocolate bars gives no xp) Supports Amulet of Chemistry replenishment
    1 point
  12. package org.bjornkrols.lesserdemonkiller; import java.awt.Color; import java.awt.Graphics2D; import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; /** * A simple combat script that kills lesser demons, perfect for the caged Lesser demon in the wizard tower. * Does not eat. * For educational purposes. * * @author Bjorn Krols (Botre) */ @ScriptManifest(author = "Botre", info = "Kills lesser demons", logo = "", name = "Lesser demon killer", version = 0) public class LesserDemonKiller extends Script { /** * The name of the monster we will be looking for. */ private static final String NAME = "Lesser demon"; /** * The current time in milliseconds, used to calculate the elapsed amount of seconds. */ private long startTime = System.currentTimeMillis(); /** * The possible states of this script. */ private enum State { DIALOGUE, ATTACK, IDLE; } /** * The current state of this script. */ private State state = State.IDLE; @Override public int onLoop() throws InterruptedException { /* * Find the current state and react accordingly. */ switch (state = getState()) { case DIALOGUE: // Sleep for 600 - 6000 milliseconds (so it looks like we're reading the dialogue). sleep(random.nextInt(6000) + 600); // Click continue on any message with a continue option. getDialogues().clickContinue(); break; case ATTACK: // Find the closest NPC with the name NAME. NPC target = getNpcs().closest(NAME); // Attack the target if it isn't null and exists. if (target != null && target.exists() && target.interact("Attack")) { // If the target was successfully attacked, sleep until player is animating or interacting. new ConditionalSleep(5000, 100) { @Override public boolean condition() throws InterruptedException { return myPlayer().isAnimating() || myPlayer().getInteracting() != null; } }.sleep(); // Don't forget the .sleep(); ! } break; case IDLE: // Nothing is done here, you could add some random behavior though. break; } //Sleep for 300 - 600 milliseconds every loop. return random(300) + 300; } private State getState() { // If a dialogue is pending continuation, go continue it! if (getDialogues().isPendingContinuation()) return State.DIALOGUE; // If we are currently attacking a monster, idle. if (myPlayer().isAnimating() || myPlayer().getInteracting() != null) return State.IDLE; // We are not attacking a monster, let's stop being lazy and get to work! return State.ATTACK; } @Override public void onPaint(Graphics2D g2d) { super.onPaint(g2d); // Set the drawing color to yellow. g2d.setColor(Color.YELLOW); // Draw the current state, useful for debugging. g2d.drawString("State: " + state, 20, 250); // Draw the elapsed amount of seconds since the script was started. g2d.drawString("Elapsed seconds: " + (int) ((System.currentTimeMillis() - startTime) / 1000), 20, 265); } }
    1 point
  13. Sounds awesome, I wish you best of luck with your progress
    1 point
  14. Good luck! Oh and get I recommend getting VIP for mirror mode access ;)
    1 point
  15. Post it on the script thread and or PM the script writer!
    1 point
  16. I'm making 2 more accounts right now. I basically have my own dupe, lol. 2.5M an hour minimum. 2.5M/h 24 hour suicide = 60M 7-day suicide = 420M (a week) 30-day suicide on 10 accounts = 1.26B
    1 point
  17. Nice, I've been waiting for this update, now give me 99 or give me ban
    1 point
  18. Will fix asap, sorry guys!
    1 point
  19. To all the american members of the community a special message from your Captain!
    1 point
  20. In before he's an albino, the whitest of white.
    1 point
  21. He's just a wannabe with that profile picture, or too poor to pay for a skin change!
    1 point
  22. 1 point
  23. Version 0.22 - Fixed antipattern dropping, works perfectly now - Increased script speed by 100x - script responsiveness is greatly improved - Added cursor paint - you can analyze the mouse now (if you are curious)
    1 point
  24. kk thanks for the reply
    1 point
  25. Script name: Khal Agilit, think it's 24 or 48 hours - Your member number: 91837 PS: Would you do a discounted price for buying all your scripts in one package, cos I might be interested in this. Thnx!
    1 point
  26. yes. Ill remake the error tonight after i get off work and give you the console error.
    1 point
  27. Version 0.3 - Script re-write - allows optimized code logic and improved features - Walking fixed - no more attempts of walking on trees and unwalkable tiles - fixes walking handler - More accurate aggro detection - no more running out to reset region needlessly - Aggression slider - attack my crabs only, attack other crabs, attack ALL other crabs - Activity slider - afk any spot, afk my spot, afk within a radius, full activity update will be live within a few hours
    1 point
  28. Added you on skype, gonna start on it after training
    1 point
  29. The random event solver is broken, I was watching it and it wouldn't do it. It keep on pressing the X though. I have both of the latest versions of client/mirror client Yes I know you have your own random event solver :P
    1 point
  30. believe it or not he's not actually a duck, I didn't believe it myself until i tracked his ip and took pictures of him when he went to the store. Proof: http://gyazo.com/c48712ba1fd6dbb306c3948d8477a751 yep, turns out he's actually a GOAT
    1 point
  31. i think 5, but im running 3 mirrors and like 3 regular bots right now, idgaf lol im just tryna make dat paper
    1 point
  32. Also, Alain, your word means nothing. You'll lie once and you'll lie again. There's clearly an issue with these services. I request 4 bonds and 4m refund.
    1 point
  33. That doesn't prove anything. It's like saying if you leave a cookie in front of a kid and they don't take it, then all of your food is fine. What if they are waiting for the whole cake?
    1 point
  34. Alright, that is sufficient evidence. He has 24 hours to reply starting from this post.
    1 point
  35. 1 point
×
×
  • Create New...