Jump to content

Lemons

Lifetime Sponsor
  • Posts

    620
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Lemons

  1. I've seen lots of people have issues getting VIP and then cancelling it right away. You can avoid this (and the bank/debit card requirement for automatic payments) by just adding credits! Step 1 - Go to your client area Step 2 - Go to your "Account Credit" (or just go here) Step 3 - Add some credit (in this case for VIP its 9.99) Step 4 - Agree and pay Select the appropriate spoiler for step 5 + 6! For new purchases... For renewals... Step 7 - Apply your credits to the purchase (should end up being $0.00 due) Step 8 - Confirm your Order That is it! You should have VIP without having to have any auto renewals or anything. When VIP is up, simply do this over again using the correct spoiler.
  2. Don't you mean "Squanched some bugs" :p
  3. Unless "MOST LIKELY" and "UNLIKELY" mean 50% chance then no, I don't understand. I'll translate for you: We can see from the above that, if one flips a fair coin 21 times, then the probability of 21 heads is 1 in 2,097,152. However, the probability of flipping a head after having already flipped 20 heads in a row is simply 1/2. This is an application of Bayes' theorem. with your scenario becomes... We can see from the above that, if one does a fair stake 4 times, then the probability of 5 wins is 1 in 32. However, the probability of getting a win after having already having won 4 stakes in a row is simply 1/2 (50/50). This is an application of Bayes' theorem. Also, here is the whole explaining part: So basically, the odds of a win after a 4 win streak is 1/32, and the odds of a loss after a 4 win streak is 1/32. Its the same odds, the streak will never change those odds.
  4. Nope, it's still 50/50. This statement makes me lol. 50/50 odds means you'll most likely win! Gambler's Fallacy. Nope, it's still 50/50. Gambler's Fallacy. And from the wikipedia article on Gambler's Fallacy (since Year 10 math didn't teach ya to read): In short, you can calculate probability but you can't properly apply it. Edit: This assumes 50/50 odds (as your posts seem to do)
  5. You are correct, this is straight up Gambler's Fallacy.
  6. Talking does jack shit. Changing how you play between bot/you just makes the difference more distinguishable (though playing legit helps). Only way to not get banned is to not bot, else prepare for the hammer.
  7. jmc with java 1.8u40 and up can give you a pretty good idea on whats going on in your script. OSBot is pretty lean to be honest, mostly its your script that ends up doing stuff that increases GCs or memory pressure. I've managed to keep my client with under 250mb (I use 300mb for a lil cushion generally) just by using jmc and seeing whats causing the memory pressure. jmc or "Java Mission Control" is built right into the JDK, so just run `jmc` or search for "Java Mission Control". Note jmc can't be used with older versions than 1.8u40 due to some flags that had to be compiled into the code. Now those flags can be added after compile, via jmc.
  8. Try playing with it in the audio jack (Go all the way in, then try backing it out and see if the vocals come in), sounds like its getting warn out.
  9. The way I prefer to do inventory tracking is to compare a "last inventory" with the present inventory, and compare the differences. I wrote up some quick, untested code (it's based off my full accounting code, linked at the end). If it doesn't work let me know, but basically you'll call compareItems() whenever you want to be checking for changes in items (aka during woodcutting), and resetItems() whenever you bank. Code is in spoiler: And a link to pastebin since there is no syntax coloring here(?): http://pastebin.com/ZUYr6rEH Edit: There is, but I'll leave this here regardless And here is a link to my full accounting code (sorry its mixed in with the paint). Its used in my API so it won't be the easiest port, but the general idea is there: https://github.com/Lem0ns/OSBotAPI/blob/master/painters/GenericPainter.java#L501
  10. Lol, PHP OT: Looks good besides the obvious SQL Injection, use PDO if your lazy lol
  11. $hi = null; if($hi =!null) { // $hi = !null always returns true, $hi != null checks against nulls (or false/""/etc) $hi = null; // Set $hi to "null" } if ($hi = null) { // $hi = null always returns true, $hi == null checks for nulls (or false/""/etc) $hi = !null; // Set $hi to "true" } The rest is dead code, and welcome to Type Juggling! Edit: Sorry, I lied, tricky syntax Fixed now
  12. If its online, always make sure its provably fair! http://provablyfair.org/
  13. Your caching all the rocks in the beginning, but never updating the cache. So your using an stale RS2Object that doesn't exist anymore, make it refresh the cache instead.
  14. Its +- 10% of the value, so 100 minutes = 90-110
  15. Fishing ain't much better
  16. Tis the life of a lvl 3 woodcutter
  17. Lemons

    B-But!

    Glad I didn't release my farmer yet, will need a rework with this change ^^
  18. They aren't as good as they want you to believe haha. This shit can easily slide by, as long as the script is half decent. I've done woodcutting 24/7 and it still took over 2 weeks for a ban rofl, I'm sure you're fine :p
  19. Disputed Member:@plndr Why it should be removed: Have no idea why I got it, troll feedback Details: Don't even know this guy, I don't do market stuff, 0 reason for this Link to topic: No topic, literally out of the blue Sorry for the other topic, don't approve it as I didn't follow the template!
  20. That is more of a helper for people looking for free script, you have to read the rest to find them :p Noteably:
  21. Ever try "cleaning" your workspace? Aka deleting all the binaries and recompiling?
  22. "Truth is, the game was rigged from the start" jk, but some of the game types seem to have a house edge and others don't at all, guess its pretty normal to a casino then xD just add some flashing lights to the high house edge games lolol Also, maybe add some notion of provably fair? This way no one can dispute the outcome of the game. This would require the bot to talk though, so it could say the hash, and just allow an optional "seed" param in the player/host command.
×
×
  • Create New...