Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/19/15 in all areas

  1. From a deep landslide to under 600 on per day, we are now climbing back up the ladder! Editted by @Divinity:
    5 points
  2. by Czar Script live, buy now (only $4.99!) http://osbot.org/forum/store/product/463-perfect-crabs/ Want to buy the bot, but only have rs gp? Buy an OSBot voucher here Features Supports both rock crab locations! Teleporting - using tabs/spells Potion support - including combat potions and super att/str/defence Aggressive mode - attacks other crabs World hopping when a cannon is nearby Can randomize fight locations between trips! Calculates next best crab to attack when current crab is low on health! Resets region when crabs don't attack Rotates region resetting every 20-60 minutes Configure inventory load-out with a single button! Changes between walking south and using the cave! Banking support Automatically prioritizes visible crabs when fighting Can recover from being idle Ranged support, loots any type of ammo you have Loots ammo in second intervals (every 2-18 seconds it will loot all) Picks up edible seaweed to extend trips World hops when 7 or more players in the area Displays 'goal' information, e.g. (at 77 strength it will also show details for 80 strength, time left, xp left, etc) Rock crab areas are split into sectors and are cycled every time a rock crab is not found FAQ Why should I use this script when there are millions out there? It is the best script. Simply. Why are you releasing this now? It's time to make this one public, it was privately used for myself and has gotten me 80 strength in a single bot session. How do I set it up? On first use, make sure your inventory is laid out nicely, and click 'Load inventory' to save it forever, then click start Instructions There are no instructions. We do the all the work for you. CzarScripting™ Tips If you have a pure account, it is advised to go east, because there are no dangerous npcs there Use camelot tabs for quicker trips! You can use any potions, including combat ones Clean paint and GUI Want to use potions? Have potions in inventory Want to use teleport tabs? Have tabs in inventory Want to use camelot teleport spell? Have runes in inventory Want to use special weapons? Have special weapon in inventory Want to use ranged? Have ammo equipped Everything is automatically detected like a real robot. We do all the work for you. Gallery nooby account from 1-33 range (for range guild pot) Just from TESTING THIS SCRIPT
    2 points
  3. @Zach is excused cos hes a ninja lurking in the backgrounds :ph34r:
    2 points
  4. i hate when ppl Get banned and blame the client lol
    2 points
  5. Welcome to my first tutorial. I've seen quite alot of questions round the forums as of late regarding paints and little miss-haps members are having. I'd like to think paints for my script have always been pretty snazzy and informative. Now its time to make everyone's paint a bit more special. I'l be covering some methods that have since been included into the API but i like to calculate them myself as it keeps you're brain active and is generally good coding practice to do as much as you can yourself. All my tutorials are given in laymens terms to help those with no experience. Area's Covered In This Tutorial: Script Running Time Xp Gained Showing Levels Adding Gold Made Adding Gold Made Per Hour Adding a background Image Percent To Next Level Time Until Next Level Will add more later Like this post if it helped
    1 point
  6. I am offering to make free paint for any bot scripts. I have noticed how the paint for many scripts aren't at all appealing. All I need script makers to do is tell me the name of the script and what the script does and I will think of an idea for the script and make it into a paint. FREE OF CHARGE. My Portfolio My shop is also in the signature, in-case you're looking for something other than paint Done so far:
    1 point
  7. It's been exactly a week since I last had a cigarette and I am pretty proud of myself considering I have gone from a solid 15-20 cigarettes a day over the past 4 years to fully quitting. I vaped for the first couple of days but then thought if i'm going to replace one addiction with another what is the point so I stopped using that also. The first 3 days were awful I was getting pretty bad headaches from nicotine deprivation and I wasn't much fun to be around but now I feel better for it already! Hoping I will carry on with this as I've recently started playing football again and that was the wake up call I needed really. I was the most unfit I have ever been and coughing my lungs up after 5 mins of running around. Anyways just thought I would share this with any of you who may give a shit Currently at: 1 month without a cigarette!
    1 point
  8. We Are pain We are God Now We are Vet
    1 point
  9. LAST UPDATE: MARCH 6, 2015 This is about distribution not conversion. This is not the most effective way to do it: many (if not all) of the inner multiplications are redundant, but I think they are helpful to demonstrate the logic behind the calculations. int totalSeconds = 90600; // Variable byte secondsPerMinute = 60; // "Constant" byte minutesPerHour = 60; // "Constant" byte hoursPerDay = 24; // "Constant" int days = totalSeconds / (secondsPerMinute * minutesPerHour * hoursPerDay); int hours = (totalSeconds % (secondsPerMinute * minutesPerHour * hoursPerDay)) / (secondsPerMinute * minutesPerHour); int minutes = ((totalSeconds % (secondsPerMinute * minutesPerHour * hoursPerDay)) % (secondsPerMinute * minutesPerHour)) / secondsPerMinute; int seconds = ((totalSeconds % (secondsPerMinute * minutesPerHour * hoursPerDay)) % (secondsPerMinute * minutesPerHour)) % secondsPerMinute; private int[] distributeSeconds(long seconds) { int d[] = new int[4]; d[0] = (int) (seconds / 86400); // Days. d[1] = (int) ((seconds % 86400) / 3600); // Hours. d[2] = (int) (((seconds % 86400) % 3600) / 60); // Minutes. d[3] = (int) (((seconds % 86400) % 3600) % 60); // Seconds. return d; }
    1 point
  10. Very very nice, there are some things I didn't know lol
    1 point
  11. 07 has become incredibly boring for me, its become more so with the server dc's I have a maxed main on EOC that i can boss with and enjoy myself with. I prefer that lol
    1 point
  12. And another fag gets vet... Wtf OT: pain ftw
    1 point
  13. good guide man, thanks for all the time invested in this
    1 point
  14. Members Online Today: 1186
    1 point
  15. when can i use it back? btw can i have a demo of ur script czarrange Got no cash to pay :'(
    1 point
  16. +1 Keep it up. The surge of F2P should hopefully bring a lot of good to osb!
    1 point
  17. CZAR big problems rn!! at org.osbot.rs07.api.util.ItemContainer.getItemInSlot(qf:2) at com.czar.Prn.I(u:212) at com.czar.Prn.h(u:260) at com.czar.CON.I(u:670) at com.czar.Prn.onLoop(u:317) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(ji:75) at java.lang.Thread.run(Unknown Source) ][02/19 06:09:15 PM]: Error in script executor! java.lang.ArrayIndexOutOfBoundsException: 0 at org.osbot.rs07.api.util.ItemContainer.getItemInSlot(qf:2) at com.czar.Prn.I(u:212) at com.czar.Prn.h(u:260) at com.czar.CON.I(u:670) at com.czar.Prn.onLoop(u:317) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(ji:75) at java.lang.Thread.run(Unknown Source) [ERROR][bot #1][02/19 06:09:16 PM]: Error in script executor! java.lang.ArrayIndexOutOfBoundsException: 0 at org.osbot.rs07.api.util.ItemContainer.getItemInSlot(qf:2) at com.czar.Prn.I(u:212) at com.czar.Prn.h(u:260) at com.czar.CON.I(u:670) at com.czar.Prn.onLoop(u:317) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(ji:75) at java.lang.Thread.run(Unknown Source) U HAVE AN ERRROR IN THE SCRIPT!! FIX IT!
    1 point
  18. Heya, Just filmed this video of my rock crabs script, was lucky enough to find an empty world and got a clue while filming, couldn't have asked for more xD Anyway, just thought i'd share it with you guys, this is the second one i did (the first one was poorly edited) apa
    1 point
  19. 1 point
  20. 1 point
  21. It appeared the bot works pretty well thanks
    1 point
  22. Yeah iv'e entered them but it doesn't seem to work. Ill try and find the correct forum to post it in
    1 point
  23. Well its a very good spot , really worth it , had 1 spot with 3 crabs , and 2 other spots with 2 crabs each
    1 point
  24. Do you think it would be possible to add a "afk mode". That it simply stands in the 3 crab place afk for 10mins and then runs south to become the crabs aggro again? Only if this would lower the risk of bans due to "human like" ? What do you think?
    1 point
  25. Thank you, and i will!
    1 point
  26. 1 point
  27. if you can manage minimum wage, which isnt hard with decent methods. its not a bad background thing.
    1 point
  28. Cool I guess nice man! But that makes 3 Also, I suggest against adding cannon support as that will ruin rock crabs (potentially). This was the reason I didnt add it as it would damage the experience other customers were recieving and as the demand was high, it would most likely happen on each world. Also, I removed 'agressive mode' from my script because users were complaining that other bots were taking theirs and they were getting lower exp rates. And those that did have agressive mode on were being reported more (for stealing other peoples rock crabs) so I agreed with a handful of my customers that it is an option which isn't beneficial. also, I had pseudos script in mind when implementing/ removing features, I didnt want to damage his reputation by ruining the experience recieved by his customers also gl Apa
    1 point
  29. 1 point
  30. You must refresh and wait for 5-10 minutes until it loads in the SDN system
    1 point
  31. I bought script and its not appearing in my collection
    1 point
  32. 1 point
  33. *Goes to see if @Anne was really promoted to super mod* *sees she's still global* *Slow claps* Well played
    1 point
  34. Sorry about the quality, though Taking a 2h break now lol
    1 point
  35. Just a heads up I hid 2 snapshots(The trade screen and another with a players username). Only staff will see them, I just had to hide them to protect their players character.
    1 point
  36. Unverified nudes, we can't have that. Send me them over skype so i can verify them
    1 point
  37. Now at 2 weeks without a cigarette! Hoping after a month the urges to have one that i am getting from time to time will fade!
    1 point
  38. Flawless bot. Love it
    1 point
  39. Proggy after 48h trial. About 4m-5.5m Averaged between 80-130k an hour depending on what account i used.
    1 point
  40. I'm proud of you man, I despise smoking. My parents smoked in the car with me and in the house with me and I couldn't breathe. I have a very strong passion to try to get people to quit smoking. Contact me at 1 month without a cigarette, I'd like to talk to you about it. I've been trying to get my parents to quit for over 10 years now.
    1 point
  41. mlk didn't die for this....
    1 point
×
×
  • Create New...