Jump to content

Daviyow

Members
  • Posts

    371
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Daviyow

  1. hi, i remember in osbot 1 u could prevent your script to run to enemys by adding something like npcs.interact("attack",false); now i looked into the api and i see this is not the case anymore and my little piece of coding is not working could i get help? or any ideas ? i just tried this O PS: Why does my osbot lagg when it tries to "Attack"? private void attackMan() throws InterruptedException { NPC Man = npcs.closest(manArea, "Man"); if (Man != null) { if (idleTime.getElapsed() >= 3000) { if (Man.isVisible()) { Man.interact("Attack"); sleep(2000); } else { camera.toEntity(Man); } } } }
  2. Hey im trying to hop as soon as there is another person in my local area.. i got this but it counts myself in too, i dont know what to do its been a while > public void checkforPlayers() throws InterruptedException { List<Player> playerss = players.getAll(); for (Player p : playerss) { size++; } if (size >= 1) { log("Some dude was nearby.. hopping!"); worldHopper.hop(WORLDS[MethodProvider.random(WORLDS.length)]); state = "WORLDHOP"; size = 0; } }
  3. Daviyow

    setRun

    it seems only to fail with Orbs toggled. Yeah, thanks man, haven't see ya in a while :F
  4. Daviyow

    setRun

    Heya, it seems like setRunning(true); is not working for me, bot just freezes, anyone else experiencing this?
  5. ok the lagg is fixed, there was a conflict between my scripts
  6. it seems to work on SDN, also what i dont get is my mouse speeds are totally random, sometimes its so slow, that i have to restart OSBot for it to work normally again..
  7. heya, im having troubles with my OSBot client i dont know if its OSBot or my script, but it randomly raises up to 1.2GB ram and takes 90% cpu, the client becomes uninteractable, and makes my character die. so is this my script or ?
  8. well, closed door and a open door has 2 different ID's wouldnt it be possible to check if the open door id exist, to run trough, else just to open door ?
  9. that seems to be wrong, try this: while (client.getInterface(548) != null) { sleep(200); } that should work for all of those fishing spots, yes it is very hard to interact with objects / npcs , just like getting a visage, right Veri :P?
  10. Scripts used: Purple's rooftop agility Celestial autofighter ( to get my range to 40 ) Scrubs ranging guild
  11. How do i do this? cus i need to rotate my camera to front of the object, i know its the method client.movecameratoentity(object, true); but what check do i use, i need to have this cus osbot fucks up if the object is to small, then it just hovers thanks
  12. Thanks all and im not sure if i would get void :P takes to long like 8 hours if im not mistaken
  13. Wasnt novice boat 80+ im only level 55 :P
  14. Day 9 (EST. KILLS : 2800). Hello, i had received a ban on my last account when i had 1.4k black dragon kills, the account was banned by botting ankou's , well i made a fresh account I started with: (My goal is to get a high ranged level, and a visage if im lucky enough ) Using script: [Dirty dragons] Starting stats:(Strength is 1, Attack is 1 ) Current stats: Gear: (Adamant bolts are very expensive, only 1 slayer bye profits ) (NOTE: I WILL NOT MAKE LOTS OF PROFIT SINCE I CANT USE BROAD BOLTS, AND I HAVE TO USE OVERPRICED ADAMANT BOLTS.) Will update when i feel like it . Start of the journey (15-04-14) At the moment:(27-04-14) Money loss: Have a nice day, hope i will get a visage and 90+ range 27-04-14 - GOT A VISAGE OVERNIGHT
  15. yeah take will work you need a different method for equipping tho
  16. i just use GroundItem hooters = closestGroundItemForName("Hooters"); if(hooters != null) { if(hooters.isVisible()) { hooters.interact("Squeeze"); } else { client.moveCameraToEntity(hooters); }
  17. Yeah, but stil would be a problem for checking equipmentTab what the player is wearing :P
  18. How do you guys delay checks like getting the range xp or what the user is wearing, do i really need to do it onLoop with a boolean, (just to check once), at the moment im doing it with onStart(), but it isnt that good because when the user is logged out and lets say the user starts the script it would be null ofcourse because he/she wasnt logged in. so i would like to hear what you guys do, just simply onLoop?
×
×
  • Create New...