Everything posted by Botre
-
Community Fixes
Couldn't agree more
-
Community Fixes
They are inactive because of lack on incentives (emotional, financial) and / or just lack of time. Nice read. Monthly and/or higher fees are a requirement for proper financial incentives. Because the community refused these changes to the market, they get less or less-quality updates (because there's less money to pay for development time) This was a necessary action to keep their scriptwriters. They were actually up for this, but the scripters couldn't agree on a system for this.
-
When was the last time you had sex?
Lies o'clock sharp. /thread
-
Do i need to say more?
Hi Roomscape
-
Do i need to say more?
u care for some d in a b ?
-
World Hopping
Quickly rewrote this for you, let me know if something isn't clear (derived from your code, it's not how I would do it myself, but this should work ^^) final int[] worlds = {308, 316, 381, 382, 383, 384, 393, 394}; public int i = 0; worldHopper.hop(worlds[i]); new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return myPlayer().isVisible(); // instead of using isVisible you should probably use the client's login state. } }.sleep(); if (i >= worlds.length) { i = 0; } else { i++; }
-
Script hangs on Inventory interaction when in trade
or it will stay stuck in the loop for ever and ever, if you go down this route make sure you add a timeout :p
-
Random Events that Require Dropping don't close open Interfaces
- Unregistering a Random Solver (RunAwayFromCombat)
You can override it to remove functionality / disable it entirely. Hook != Solver, RandomSolver != RandomBehaviorHook. Clearing hooks doesn't mean disabling the solver per se. script.getBot().getRandomExecutor().registerHook(new RandomBehaviourHook(RandomEvent.RUN_AWAY_FROM_COMBAT) { @Override public boolean shouldActivate() { return false; } });- Unregistering a Random Solver (RunAwayFromCombat)
The RandomEvent enum does not refer to a solver: You can override the event in question like this: this.getBot().getRandomExecutor().registerHook(new RandomBehaviourHook(RandomEvent.RUN_AWAY_FROM_COMBAT) { //STUFF };- standard font function?
- standard font function?
comic sans ms is a shit font so I guess it matches your content but no thanks- Veteran Rank - UPDATED! Date Extended!
Gf roomie OT: nooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo- Does Jagex unflag IPs?
To be able to flag IPs you first need to be able to detect macros accurately, which took a while. I agree that this is all speculation though. They do track your IP activity however, try making too many new accounts in a certain time frame for example, at a certain moment you will not be able to anymore.- Does Jagex unflag IPs?
I don't think flags are entirely removed, but each one of them probably has a severity level attributed to them which decreases over time. IP flagging is kind of a joke though, so many workarounds :p Also, I wouldn't be surprised if they put a unique ID in each downloaded cache. And when an account gets busted the cache ID it logged in from would get flagged, as would any other account logging in from the now flagged cache ID. But again, this could easily be circumvented by deleting the cache every time you get banned. Just speculation of course.- HookCron: Automatic updates of hooks
Hi Maxi Looks good.- 1k
- Botrepreneur's Java MMO Project
Thanks, so far it has been extremely fun / educational indeed- Botrepreneur's Java MMO Project
Working on a Java MMO in my spare time. Pure java, no external libraries, 100% from scratch. Progress: Latest screenie:- Double purchases.
They are unique versions / products, most of them running different code in an entirely different programming language. The price you pay for an application's version made for an operating system x only covers the costs for that specific version, if you wish to get access to all versions at once the price to pay would have to cover the costs for all of them. Also I don't see Apple, Google and Microsoft collaborating on a distribution level anytime soon, which would be required.- Scripting Competition: Setup and Information
Good luck y'all java nymphos- Alek's Java Game - Rpg/quest - Updated October 27th
Nice progress working on something similar myself:- Da Fak?
Account reference was deleted, it most likely has been permed. Either that or a huge bug in their name cleaning operation ><- Who the fk comes up with these military chants
Kubrick Me gusta- IT IS DECIDED
gratz and gl (y) - Unregistering a Random Solver (RunAwayFromCombat)