Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/10/15 in Posts

  1. Hire a lawyer, would be easy to prove you were hacked/phished. You seem more concerned about your runescape account than the jail sentence. before denying claims, you may want to remove this video lmao.
    8 points
  2. Just made this real quick! hahaha inspired by Jauz
    7 points
  3. The fact that you are even remotely caring about the status of your RS account when you're potentially facing prison makes me think there's something wrong in your head.
    5 points
  4. no more afking guthans in NMZ you say
    3 points
  5. I don't think you're understanding how serious this is. Jagex have sent people to jail before and you can't just hide behind a pixelated-safety net. You had the same I.P address as the opposed hacker? which makes your allegation VERY hard to prove. But, at least take a few steps in the right direction..... Delete all your youtube videos, esp the ones of you smoking pot and becoming a muslim lol? how do you think that makes you look to people? and lastly, delete this post. It is NOT doing you no favours. I hope if you are innocent, that a judge/lawyer can see that and help you out.
    3 points
  6. I've requested @Kabana to post here. Why would you let someone even do services for you in the first place if you don't even know who he is on osbot?
    3 points
  7. Welcome to OSBot! Be careful, most of these guys have never talked to a girl before.
    3 points
  8. dont bot an account you dont want to risk
    2 points
  9. its like a shortened link of youtube if you think its a malicious site
    2 points
  10. Sold my guthans set yesterday at 14.5m..Feel bad for the guy who bought it l0l I just saw on reddit where people are buying them for 5-6m right now
    2 points
  11. Sorry what did u say too distracted by that picture
    2 points
  12. Arctic's RS Gains Preamble Hi everyone! My name is Arctic and I have been involved in the RS black market for 6 years this August. Over this time I have handled around $80,000+ US worth of virtual goods and have amassed an approximate total of 2,600 feedback on the 3 major RS Botting sites I mainly have done this to build a good reputation and to give back to the community, via the means of giveaways and also gaining positions on staff teams which helped me use my skills to rid communities of scammers and reach more users and interact with them As well as being able to contribute to these communities I have quite obviously made profit from trading and plan to make a lot more profit to reach this new goal! So feel free to follow what I have gained so far from my market trading and what I aim for from future trading! Benefits of Past Trading The New Aim Progress Supporters Ways you can trade me I sell OSBot Store Vouchers - Click here. I sell many Digital Goods [LoL/XBL/PSN/WoW/Steam GC/iTunes] - Click here. I work for RainbowGP gold shop - Click here. I sell OSBot compatible proxies - Click here.
    1 point
  13. Hey guys - I wanted to share a bit of pseudocode that I've successfully used on bots in the past and resulted in a ~<2% ban rate, even on highly populated areas and pretty easily detected scripts. This method does take a bit of processing time, and isn't always recommended for every click needed. Also, it's late and I've been drinking, so there are likely a ton of pseudocoding mistakes. First, let's pretend we have a 3x3 grid we want to click on in the format (x,y) where (1,1) is the top left corner and (3,3) is the bottom right corner. As far as I know, almost every clicking algorithm will click randomly on the 3x3 grid, resulting in a distribution over time of roughly 1/9 clicks on each square. This is not desirable, as human clicking will not provide a perfect distribution and will tend to fall closer to where the cursor is initially - that is, if my mouse is at -2,-2 (above and to the left of our 3x3 click target), I will tend to click more towards (1,1) than (3,3). The opposite is true if I my cursor is at (5,5) - I will tend to click more towards (3,3) than (1,1). At a location such as (2, 5), I may tend to click more towards (2,3), and often more towards the middle row than anything else. In order to follow these better click patterns, we need to first identify which direction our mouse is relative to the target. Because I'm lazy, I use the 8 cardinal directions - North (2,1), NorthEast (3,1), East (2,3), etc. to identify the path of the movement. So the first part of our script becomes: GetCursorLocation(){ dX = CursorX - TargetX (note that there should be logic to find the closest X and Y in the target grid) dY = CursorY - TargetY } Now that we know which direction we're going to move, we should figure out which "region" of clicking we should fall into: FindCardinalDirection(dx, dy){ // logic to define which click regime you're in // I like to use if dX or dY is greater than 3-4x the other to use NSEW instead of NE, SE, etc. return "North", "South", etc. } The next part is a little bit more difficult - How do we get a better click distribution? The answer is in statistics - namely Gaussian (for the most part). I'll offer a simple example for the North Case. If (FindCardinalDirection = North) then{ // for this code block, we're going to try to target the middle y row (x,2) the most, with the x row (1,y) the most likely vertical click location. LocationToActuallyClick(){ while (not 1<= Xclick <= 3){ Xclick = 1 Xclick = Xclick + rand(0,1)-rand(0,1) //where rand(0,1) is a random choice between 0 and 1 Xclick = Xclick+ rand(0,1)-rand(0,1) } Yclick = 2 Yclick = Yclick + rand(0,1) - rand (0,1) return (Xclick, Yclick) } } ClickMouseOn(Xclick,Yclick) The resulting Y distribution should be ~25% row 1, ~50% row 2, and ~50% row 3. The resulting X distribution should be about 57% row 1, ~29% row 2, and ~14% row 3. This should be a lot closer to "normal" human clicking. I prefer to use normal distributions with sigma between .2 and 1.5, depending on the application. Note that this does take a bit of runtime and can slow down computers a decent amount if running multiple bots or on older machines.
    1 point
  14. i just tried again with all settings set to default and still kept running south. Will try again once new version is released and let you know. Appreciate the quick response!
    1 point
  15. I tried and it doesn't work
    1 point
  16. 1 point
  17. Lol im from PerΓΊ and had the same issue. Just buy vip with osrs gp :P easy way to solve. Or use Skrill it and get them prepaid card and i think you can use it anywhere.
    1 point
  18. That's the Visitor font most likely, we use the same for our PiPs. http://www.dafont.com/visitor.font
    1 point
  19. Maybe it's the client but maybe it's my connection there's a couple of variables but if you could do me a favor, will you look into canceling the auto price check on fish for certain locations I.E. barb fishing, as it creates un-necessary useage of the cpu, and maybe (this is where the play comes in) check your dropping method to where it doesn't take so long to recognize that it succesfully dropped the fish rather than having it do it twice?
    1 point
  20. You think i could get a trail?
    1 point
  21. Random proggy - been using this script since 52 herb, going till 99
    1 point
  22. all good, just got a 10hr session before i didnt have inventory items and it stopped.
    1 point
  23. 1 point
  24. lol.. your sellers suck then xD Some sketchy untrustable scamming mofos
    1 point
  25. Whats the best location to use for karambwan fishing? This script is 100% flawless so far. 10 Hour proggie no issues
    1 point
  26. Version 0.17 - No longer freezes when mining ore from screen (this fixes gem rocks too! :P) enjoy guys ;)
    1 point
  27. JAJAJAJAJA RFOLRFOLRFOLRFOL KEKEKEKEKEKEKEK WOW MUFFINS THIS IS SO ORGINAL AND HALRIOUS I SHIT ON MY DOG AND SLAPPED MY MOM WITH A LIVE TURKEY
    1 point
Γ—
Γ—
  • Create New...