Jump to content

Jake Slang

Members
  • Posts

    44
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Jake Slang

  1. Check my previous post. I've updated the syntax, it should work now. I made a mistake, I think I just woke up around that time, my bad.. Also,, that rawFoodName (between quotes) was just a parameter/placeholder, you should pass in the full name of the raw fish: Sleep.sleepUntil(() -> !getInventory().contains("Raw tuna"), 120000); Oh, and make sure the timeout is around 2 minutes, or else it'll try cooking again after 5 seconds. If you cook a variety of food you could also do: Sleep.sleepUntil(() -> !getInventory().contains("Raw tuna") && !getInventory().contains("Raw lobster"), 120000);
  2. Something like this: Sleep.sleepUntil(() -> !getInventory().contains("rawFoodName"), 120000); So now your player will sleep until your inventory doesn't contain the given raw food (first parameter), or until the timeout is hit (which is set to 2 minutes now). You have to think about the timeout. I've set it to 2 minutes, because the first parameter will most likely evaluate to false, but you don't want the second parameter to evaluate to true after like 3 seconds, which will loop your script again. This snippet is made because it is shorter and self-explanatory in the way you read it: Let your script sleep until the first given parameter is truthy (thus continue running your script), or until the timeout is hit (thus continue running your script). Timeout is in milliseconds btw.
  3. I guess this is the right section for posting pointless/unnecessary threads like these.. Are you trying to provoke/make people scared? People die every day.
  4. You got me again with that creative thinking Maybe it'd be SDN material if I iimplement your suggestion. I know there's another chocolate cutter in the SDN, but that one is not for money making purposes. Anyways, thanks for the tip!
  5. Hey, nice script release. That's some creative thinking (unique script).
  6. You need a conditional sleep. Now you're just sleeping for 4-5 seconds (which your script uses to cook 3 fishes before looping again). So what you want is: Sleep.sleepUntil(() -> condition, timeout); Now it will sleep until the condition (is true) or the timeout is met. The condition could be till there are no raw fishes left in your inventory. I would give the timeout some absurd number so you'll pretty much only stop cooking when the condition evaluates to true. In order to use this static sleepUntil() method, you should add this snippet under your main class: https://hastebin.com/azusobiyur.java Also check out:
  7. Thanks, bro. The starting cash is for buying in the choco bars. I'll edit the thread and make it more explicit.
  8. Hey, hey, welcome to OSBot!! I'm also a dev, hope we can all learn from each other.
  9. Laravel integrates everything you need as a Web dev.
  10. [$] JakesChocolateGrinder (v1.1) [$] Features Cuts chocolate bar into chocolate dust for currently 60k/hour (WARNING: PRICES MAY FLUCTUATE) Banks Logs you out when out of bars Requirements 50k starting cash for buying in the choco bars (preferably a lot more for convenience) A knife (NO PESTLE & MORTAR) Configuring the script Download the .jar file Copy or cut it into your OSBot scripts folder (e.g. C:\users\username\OSBot\Scripts\) Log in on OSBot Refresh the Script Selector (the script should be added now) Instructions You have to start in Varrock East Bank (or it'll webwalk you to it)! Make sure you have a knife and chocolate bar(s) in your inventory/bank Run the script via the Script Selector and let it do its thing >:D Versions v1.0 - Initial release v1.1 - Added paint JakesChocolateGrinder.jar
  11. If you have a script running, you can't X it; you have to make sure that the script you're running is either paused or stopped.
  12. Just follow the instructions on the site. You basically have to 'Get Mouse Position & Add Action' (keybind) on the desired spots. Then you start the 'Script Execution' by pressing another keybind. Here is a showcase on how to set it up:
  13. This works for me: https://www.murgee.com/auto-mouse-click/
  14. Jake Slang

    Hi

    German, why? I have lots of Dutch friends if you were wondering :P
  15. Jake Slang

    Hi

    Hey, hey, welcome to OSBot. I'm also pretty new here, hope you have a good time
  16. My only account that was eligible participating in this open weekend got banned the first day, lol.
  17. It probably does matter, but did you ever take breaks in the process of gaining all that Magic xp? For example, 2 hours botting, half an hour break etc.
  18. Do you guys also recommend this NMZ bot for maxing out a pure? I'm currently running my scripts on a proxy. I just don't want to get banned again :3
  19. I meant it would fix it for the time being
  20. Exploiting the API atm >:D Any help is appreciated though.
  21. I'm already registered for about a month, but I forgot to introduce myself. So here we go.. My name is Jake Slang, an 18-year-old from the Black Forest, Germany (Yeah, it's pretty forsaken out here). I'm pretty new to the botting scene and for now, I'm really just testing things out (if you know what I mean). One day I'd like to introduce my own script(s) to the SDN. I just can't wait to contribute and meet all you awesome people
  22. Sometimes my client uses an absurd amount of CPU (80%-90% by only running 1 script). Just close and reopen the client, it should fix it.
×
×
  • Create New...