Jump to content

IkiritokunI

Members
  • Posts

    31
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by IkiritokunI

  1. You can go to old-school website, than click support, account, appeal a ban. Worked for me with some old accounts but also some declined (worked for some bot acc as well). If you have any other questions pm me Hope it helped.
  2. still did not figure it out. Can somebody help me? private void doingCopperTails() { if (getGroundItems().closest("Bird snare") != null){ getGroundItems().closest("Bird snare").interact("Take"); sleepCondition(inventory.contains("Bird snare")); //-1? } else if (getGroundItems().closest("Bird snare") != null){ getGroundItems().closest("Bird snare").interact("Check"); sleepCondition(inventory.contains("Bones")); } else if (inventory.contains("Bird snare") && objects.closest("Bird snare") != null){ //birdsnare is not up? // code ..... (maybe do random?) } else if (inventory.contains("Bones")){ inventory.getItem("Bones").interact("Bury"); sleepCondition(!inventory.contains("Bones")); //-1? } else if (inventory.contains("Raw bird meat")); inventory.getItem("Raw bird meat").interact("Drop"); sleepCondition(!inventory.contains("Raw bird meat")); }
  3. Hey all, I'm making a new hunter script and I was wondering how I can check my trap is setup and not somebody's else trap. Im talking about bird traps (atm I can only setup 1 trap but In the future I want to check if there are 2 traps of mine) Any idea's how I can check this easy?
  4. Thanks will look in to this soon. Thanks for the ideas!
  5. Dear community, I'm working with a friend on a easy script (tut island). But we want to share the script when it get edited. Instead of sending it all the time over discord I want to '' push and pull'' it in intj. I had this a long time ago working but can't remember how to set it up right now. Is there a guide for it?
  6. Epic, somehow it worked in ''project'' Project compiler output. Thanks
  7. In the pictures below I showed how my setup is atm (still not working )
  8. Why I can't open it in intj? see picture: the red dots.. how do I fix it? (It won't show up in the osbot client) tried to refresh and build etc. http://prntscr.com/njldhw
  9. Why I can;t open it in intj? see picture: http://prntscr.com/njldhw
  10. Why I can;t open it in intj? see picture: http://prntscr.com/njldhw
  11. Thanks! I let you guys know if I fixt it!
  12. Hey peeps, Trying to make priest in peril quest, but when you move down the ladder(at the temple dog) you get in an instance, that means coordinate always be different. Any1 know how to let the bot know he is downstairs so he can kill the dog?
  13. I swear! I LOVE you so much <33
  14. Hey! I was looking for the place: Misthalin Underground but could not find it. Can you add it to the list? (its for Ernst the chicken quest). http://prntscr.com/lw54i3
  15. Dear community! I got another question about getting my bot look at the total lvl we all know we can get static/dynamic skills like this: (getSkills().getDynamic(Skill.MINING) But I not found out yet how to get the bot look a total lvl Maybe a widget or is there a code for it? Thanks for the help!
  16. Thanks for the comments, I will take a look at the guide again
  17. I want that any1 who run my script can chose their own names and that the names comes between the strings in my script But I can not find how to set up a GUI (layout) for it what relays to it.
  18. Dear community, I'm making a gilted altar script but I was looking for some GUI. I want, when you start the script you can add different names so that name comes between the strings. This is always different because not always the same people are online. I checked out the forums but could not find a guide for it. sorry for the wrack english. Hope some1 can help me out. edit: like this
  19. Thanks for sharing will take a look into it!
  20. Dear great community ? Making my first script, can any1 help me with this loot state? Just writed the loot state and found a bug (when loot is out of screen) So he can't get the interact ''take'' but is true on minimap I want it the bot get to the loot. but I can not find the webwalk for it. Any1 can help me? private void loot() { final GroundItem BlueWizardHeadOrBeads = getGroundItems().closest(579); if (BlueWizardHeadOrBeads != null && BlueWizardHeadOrBeads.isVisible() && BlueWizardHeadOrBeads.interact("Take")){ new ConditionalSleep(2000) { @Override public boolean condition() throws InterruptedException { return !BlueWizardHeadOrBeads.exists(); } }.sleep(); } else } } }
  21. I'm A noob Java scriptor, tried it today :P. But can't swap the position. (its keep doing the original script).
×
×
  • Create New...