Jump to content

dontbuzz

Trade With Caution
  • Posts

    368
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by dontbuzz

  1. are you sure all the evolved pokemon are 100% IV? I've never seen someone with so many different 100% IV Pokemon.
  2. Have decided to sell my other pure bro. Has Ancients and Avas Accumulator, Combat 53 (33 Quest Pts).
  3. Yeah man, but still isn't listed as a cheater on PokeAdvisor haha.
  4. The numbers before the Pokemons name represent its IV out of 100% (only renamed if over 90% IV) IV explanation: IV are the hidden Stats that can differ from pokemon to pokemon and go from 0 to 15 for each Stat (Attack/Defence/Stamina). Lets take Charmander as an example. These are the base stats for every charmander: BASE STAMINA 78 BASE ATTACK 128 BASE DEFENSE 108 But each time you hatch/catch a Charmander, it gets hidden Stat Rolls to Attack/Defense/Stamina that we call IV (Individual Values). These can range from 0 to 15. Lets say you get 12/7/14 as an example. That means your charmander gets 12 Attack, 7 Defense and 14 Stamina added to his base stats. So a lot of people would prefer a 500CP Charmander with lets say 14/12/15 Rolls over a 600CP one with bad rolls like 7/6/10. A 100% IV Pokemon has max hidden stats for Attack/Defense and Stamina (15/15) Looking for 7M 07gp. Skype: dont.buzz
  5. Am learning to script, this is my first script. I thought this line would stop my player from attacking another chicken that is already in combat but it still seems to sometimes. (and not just when another player beats me to the chicken). if (chicken != null && chicken.isVisible() && !chicken.isUnderAttack() && chicken.getHealthPercent() > 0 && map.canReach(chicken)) { Edit: Script sometimes tries to switch chickens mid combat, anyone know why that could be aswell? plz halp. Full Code: import org.osbot.rs07.api.Combat; import org.osbot.rs07.api.filter.Filter; import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.api.model.RS2Object; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; import java.awt.*; @ScriptManifest(name = "dontbuzz Fried Chicken", author = "dontbuzz", version = 1.0, info = "Kills chickens in Lumbridge", logo = "") public class ChickenKiller extends Script { Area chickenArea = new Area(3183, 3290, 3173, 3306); @[member='Override'] public void onStart() { log("Welcome to dontbuzz Chicken Killer"); } @[member='Override'] public void onExit() { //Code here will execute after the script ends } @[member='Override'] public int onLoop() throws InterruptedException { checkArea(); attack(); dropJunk(); return random(600, 4000); } // The amount of time in milliseconds before the loop starts over @[member='Override'] public void onPaint(Graphics2D g) { //This is where you will put your code for paint(s) } public void attack() { if (!myPlayer().isUnderAttack() && !myPlayer().isMoving() && !getCombat().isFighting()) { NPC chicken = npcs.closest("Chicken"); if (chicken != null && chicken.isVisible() && !chicken.isUnderAttack() && chicken.getHealthPercent() > 0 && map.canReach(chicken)) { chicken.interact("Attack"); new ConditionalSleep(2000) { // Sleep until the player is out of combat, or for 2 seconds @[member='Override'] public boolean condition() throws InterruptedException { return !myPlayer().isUnderAttack() && !myPlayer().isMoving() && !getCombat().isFighting(); } }.sleep(); } } } public void checkArea() { NPC chicken = npcs.closest(chickenArea, "Chicken"); if (!chickenArea.contains(myPlayer()) && !map.canReach(chicken)) { RS2Object chickenGate = objects.closest(1558, 1560); chickenGate.interact("Open"); new ConditionalSleep(3000) { // Sleep until the player is out of combat, or for 5 seconds @[member='Override'] public boolean condition() throws InterruptedException { return map.canReach(chicken); } }.sleep(); getWalking().webWalk(chickenArea); } } public void dropJunk() { if (!inventory.isEmpty()) { inventory.dropAll(); } } }
  6. One day a mexican drug lord found a barn full of sheep. He killed one and fed it too his family. Sheep are nice too eat.
  7. They will not be chain banned if they are on different IP's and if your main isn't bottlng it should be fine anyway.
  8. http://osbot.org/forum/topic/103559-selling-maxed-70-def-obby-tank-1-attk-1-pray-73-combat/
  9. Just purchased. Have only tried in taverely but the script seems to still try attack another druid when it is already being attacked. Spam clicking and not correcting itself for at least 10 seconds. Saw this occur a bit too much so switched it off. Looked great other than that!
  10. Do i set the script to logout on equipment lost "Mithril dart" if I'm using mith darts? Or will it do it automatically? Thanks
  11. dontbuzz

    Music

    Some hip hop/rap from my home country.
  12. dontbuzz

    Music

    https://www.youtube.com/watch?v=2ZOAzbH8tdU
×
×
  • Create New...