-
Posts
192 -
Joined
-
Last visited
-
Feedback
100%
Everything posted by Easy
-
About $30, I personally wouldn't pay any more than that
-
How to implement an action after a random amount of time has passed
Easy replied to Lewis's topic in Scripting Help
private Timer worldHoppingTimer = new Timer(); public int onLoop() { if (worldHoppingTimer.isActive()) { //do something here int hour = 3600000; int minHours = 1 * hour; int maxHours = 3 * hour; worldHoppingTimer.setTimeout(random(minHours, minHours)); //set the timer to go off in 1 - 3 hours (just an example) } return 100; } public class Timer { private long timeout; public Timer() { timeout = System.currentTimeMillis(); } public boolean isActive() { return timeout > System.currentTimeMillis(); } public void setTimeout(long timeout) { this.timeout = timeout + System.currentTimeMillis(); } public long getElapsedTime() { return System.currentTimeMillis() - timeout; } public String getElapsedToString() { return Format.msToString(getElapsedTime()); } public long getPerHour(long value) { return value * 3600000 / getElapsedTime(); } } -
You're definitely being that guy
-
Private RSPS Scripts - Flamo's Scripting Shop
Easy replied to Easy's topic in Other & Membership Codes
Can you lift my messaging system restriction? I think you disabled it when you locked this thread -
Private RSPS Scripts - Flamo's Scripting Shop
Easy replied to Easy's topic in Other & Membership Codes
Thank you. -
Private RSPS Scripts - Flamo's Scripting Shop
Easy replied to Easy's topic in Other & Membership Codes
Turns out that it doesn't matter -
Private RSPS Scripts - Flamo's Scripting Shop
Easy replied to Easy's topic in Other & Membership Codes
Runescape private servers have nothing to do with both osrs and osbot -
Wanna destroy your favourite private server's economy? I'm now accepting RSPS script requests Skype: dan.flamo Original private scripting thread -> http://osbot.org/forum/topic/110654-cheap-flamos-private-script-shop-quick-cheap-experienced-flawless-scripts-off-site-experience/#entry1246731
-
Thanks for the postcount, friend
-
Time and Space Complexity of itertools.permuations
Easy replied to Qubit's topic in Software Development
Not as hard as finding the matrixes for world to screen xd -
I wrote the bot. The problem is that it's an actual script, so you'll need to start up the osbot client to run it. Also, the script only supports mirror client, so you'll need VIP as well. My price is 50M 07.
-
Windows, mac os and linux support. Basically, he wants the program to be made in java, a multi-platform language.
-
So you want a bot that will reply whenever possible, once per thread, with responses based off of keywords found in the thread and title?
-
Yeah, I'd love to give you a explanation as to why your code is bad. https://www.teamspeak.com/downloads Install teamspeak, join "elitescripts.org" and poke me "Danny" in the java channel. I'm not going to waste my time writing a longwinded post that you won't understand when I could speak to you and clear things up in a fraction of the time.
-
Yes, it is horrible. The script will fail to run properly and/or crash so frequently that it wouldn't even be worth running. I could waste my time listing out everything that's wrong with this script if I wanted to. My comment has nothing to do with myself, it's about letting him know that he needs to improve if he wants to write a script that won't crash or spam click random rs entities.
-
This whole script is horrible.
-
With the goal of reusing as much code as possible without writing duplicate code, try to come up with the answer on your own
-
Probably fails to complete it like 30% of the time, so it's still in dev. Have to hardcode every possible situation and it'll be done m9
-
while (myPlayer().isAnimating()) { Don't use while loops in your scripts. The only while loop you should be using is the onLoop method that you're forced to override after extending script. Since your script is already looping, you could easily use an if statement to check if you're animating.
-
the enum is entirely redundant
-
i knew there was one for interacting npc, so i just assumed there was one for object..