Everything posted by Lemons
-
Rs3 Bonds worth more than 07
Well I had no idea, was just saying if that was the case you still voted on it either way. I never voted/seen the poll at the time.
-
Rs3 Bonds worth more than 07
So you mean they were voted on. Just because they were stuck to each other doesn't mean you didn't vote on them, just means you couldn't vote on them separately.
-
You can't play RS via Chrome anymore.
and it works again! https://www.chromium.org/developers/npapi-deprecation
-
Mouse location to RS Position
Yep, thats correct. Just be wary it will return a Position at the Base X/Y of the region if no flag is present, instead of an expected null.
-
Mouse location to RS Position
Need a little more detail. Are you trying to get entities at the cursor? getMouse().getEntitiesOnCursor()
-
Banned on the weekend
I've suicided for 4+ days on woodcutting/fishing lol, what day and age you think it is? I expected a ban every time though haha :p
-
Why no contact Email address ?
http://osbot.org/forum/topic/67016-read-before-posting-posting-rules-updated-march-15-2015/ then http://osbot.org/forum/forum/102-client-bugs/
-
Main runecrafting bot perm banned
Just bot throwaway accs to fund your legit (semi-legit?) acc. That way got skill money, but not gonna get any important acc banned lol. But botting generally leads to losses, gl next time. Also, iirc, perm bans are automated so might have a very slim chance of an appeal?
-
Going to try this in August
Or, ya know, just play Dwarf Fortress, same exact thing :p
-
Destination of player?
getMap().getDestination() Note for some odd reason, if no flag is down it'll return the regions base X/Y, so make sure to check that if (getMap().getDestination().getX() == getMap().getBaseX() && getMap().getDestination().getY() == getMap().getBaseY()) { // Invalid flag } else { // Valid destination }
-
Question about objects belonging to players
No way in the client that I know of. Just cache the trap objects as you lay them, if your not leaving the region should still be valid. Also, checking positions isn't that CPU/Mem intensive really with proper caching and such.
-
Question about objects belonging to players
Why not record which traps you set, then only get traps that were set on that position?
-
OSBot 2.3.46 - Dialogues - InteractionEvent - Improved Widget performance
Seems selecting options in dialogues doesn't work still? Is there any changes we need to make due to the new method, having issues on karamja customs officer (dialogue.pendingOption() to be specific).
-
Help needed with Script :D " Y NO WERK!"
He didn't ask your java version, how old is the OSBot.jar your using? Hes saying its probably ancient and ya need to update.
-
How can i transfer money between an account on osrs?
Huh, never tested it, just read that it wasn't possible. Guess this isn't true haha.
-
Noob needs some help
Sorry, do sleep(random(200, 300)). You have to remove the "return" part, else the code will remain unreachable.
-
Noob needs some help
Yeah, any code after a return is not executed, therefore unreachable in your code. Replace return random(200, 300) with sleep(200, 300) or better yet conditional sleeps (look at API).
-
Noob needs some help
its a function, not a variable. For a variable do dialogues all lowercase.
-
Noob needs some help
change Dialogues to getDialogues()
-
How can i transfer money between an account on osrs?
I think this is true sadly, along with staking/pvp deaths.
-
Mirror Mode: How Can I Use Multiple Bots Per Computer
Since I myself am on linux and never actually used mirror client, I do not have any more suggestions sorry.
-
Mirror Mode: How Can I Use Multiple Bots Per Computer
My guess is you got 64 bit java and a 32bit browser. Either get a 64bit browser or run 32bit java, but they gotta match up.
-
How can i transfer money between an account on osrs?
Yep, afk for 20 hours else buy membs for the acc.
-
DDoS protection advice?
If you don't hand out the IP and none of your HTML/other public files mistakenly refer to it (99.9% sure they wouldn't be), they can't get it. Cloudflare is a reverse proxy, so just like when you use a proxy your IP is hidden, the servers IP is hidden in a reverse proxy Just make sure all the DNS entries on the cloudflare have an Orange cloud instead of gray and you're golden.
-
DDoS protection advice?
What plan are you using on cloudflare? I think their top tiers (business/enterprise) are the only ones with true anti-ddos measures, at the network level. Other than that, splitting the website from the game servers will help keep the stress off either or, as they can only try and hit one at a time or have to split their resources. Also profiling the code and finding hotspots (aka 1 request causes a lot of CPU or IO stress) will prevent them from being exploited. More details on the situation/what software will be running would be helpful. Also, never give the direct server IP out, or disable cloudflare on any of the vulnerable servers. Once they can get around cloudflare its game over.