Jump to content

Booleans YAY

Trade With Caution
  • Posts

    184
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Booleans YAY

  1. Rip 2 jug filling bots lost 1.6m profit.
  2. Post your skilling gears if you utilize any. This is my 'evil' setup, f2p. Red h'ween mask Amulet of Strength Shade Top Shade Bottom Leather Gloves
  3. Please, I could really use an upgrade
  4. Still various visual issues that i'v been looking at while watching the video. Looks good though sort of excited for this.
  5. I hope i win, i'd do give aways non-stop
  6. If you're lucky to find a world where the house has bots and not picking up the bones you can make good profit as this requires no skills levels, etc.. so this is more a less targeted for f2p money making, cause if you're a member don't waste time on f2p methods. I dont have money for membership so i'm restricted f2p scripts Side note, this script is little outdated in my list of scripts i've made so far; however it's fully functional don't worry. Anyways enough rambling. I don't have a screen shot, or any accounts even near edge sorry lads.. Pickes up bones on ground Door checker (opens if closed) Banks Walks to house on startup (if not there) Download: https://www.mediafire.com/?kn6yv903dgdhcrh
  7. Well firstly, this format isn't java formation, and everyone doesn't like to look at it so backspace them back to original spots private String ft(long duration) { private String ft(long duration) { The ternary code is readable if you have the basics of java in mind.
  8. if (days == 0) { res = (hours + ":" + minutes + ":" + seconds); } else { res = (days + ":" + hours + ":" + minutes + ":" + seconds); } Could just be (utilizing if ternary) res = (days == 0 ? hours + ":" + minutes + ":" + seconds : days + ":" + hours + ":" + minutes + ":" + seconds); You could also use a conditional sleep while the teleporting is being done to have a pause or event-like function take place. Also add a random(#) sleep pause in the conditional, so it's not a constant delay ratio, makes it less detectable if you were to compare the two. Overall, pretty straight forward and easy. Good job on efforts.
  9. getBank().depositAll("Coins");
  10. November 5th is the animated items. Get ready.
  11. Soz I make super scripts it can't happen ●_●
  12. This should be pretty much common sense, so if you already know then move on lol. Anyways, instead of accessing the API through your browser you can utilize the built in browser in Eclipse. Above your (example): public class LikeOP extends Script { Add this /** * https://osbot.org/api/ */ Now hold CTRL (windows) and Left click with your mouse. It'll open a new Tab in your eclipse, and redirect to the API directly through the Eclipse browser, little bit faster and perhaps convenient way of accessing/finding what you need.
  13. Insulting the community while they try to help you won't get your results faster, nor your reputation within the community. Just create a thread and wait for a staff member to respond within time.
  14. brb making a script to auto handle childish posts.
  15. Count down 3,2,1 YAY my script finally works!
  16. cool post didn't understand /is c++ worth investing time in for anything relevant to rs/rsps work? I might look into studying this if I get enough interest flowing..
  17. I have a question relating to this, how much would 70 fishing account with all collected fish be? 7.5m -> 8m?
  18. Not sure if it's been released, however i'll post what I personally have. public static String formatIntegers(int num) { return NumberFormat.getInstance().format(num); } Usage would be (demo): formatIntegers(getExperienceTracker().getGainedXP(Skill.FISHING))
  19. Good job, I actually like this a lot
×
×
  • Create New...