Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/27/22 in all areas

  1. Could you not at least partially solve this using gaussians?
    2 points
  2. Version: 1.14 A progressive woodcutting script for use in free-to-play worlds. Features Supports 22 free-to-play woodcutting locations. Options to detect the best tree and closest woodcutting location. Avoids locations with NPCs aggressive to your combat level. Withdraws an axe from the bank if the script starts without one. Purchases axe upgrades from the Grand Exchange. Upgrades axe when banking if any are available. Wields axes if you meet their attack level requirement. Option to bank or drop logs. Source Code https://github.com/StaticSyntax/ProgressiveCutter Download
    1 point
  3. You are my hero. No way i would have guessed there was a script for this lmao
    1 point
  4. can do for you brotha Discord me : OS-MJs#7362
    1 point
  5. 10/10, bot runs flawlessly for hours with no ban. Of course, thats to be expected from khal scripts. Always get my moneys worth from these scripts.
    1 point
  6. 1 point
  7. apolgy for bad english where were u wen club penguin is die i was at house eating dorito when phone ring "Club penguin is kill" "no"
    1 point
  8. Done gl sir please bot responsibly, also don't forget mirror mode
    1 point
  9. I believe so, and OSBot already uses them. But their logic is flawed (Unless this is their intended behavior?) This is OSBot's current clicking. Reason it looks like this is because they turn negative random guassians into positive, which defeats the purpose of using them unless you are purposely trying to create this downward graph? Obviously this is EXTREMELY easy to detect still, as they're hitting the minimum far too often This is their current "flawed" code for generating randoms for the mouse events. Might be used all over, I only verified that they use it for clicking. public static int gRandom(int iIiiiiiIIiIi, double d) throws IllegalArgumentException { double d1 = Math.abs(random.nextGaussian()) * d + iIiiiiiIIiIi; d = iIiiiiiIIiIi + d * 3.0D; if (d1 > d) d1 = d; return (int)Math.max(0L, Math.round(d1)); } Instead of that, they could do something like this public static int gRandom2(int iIiiiiiIIiIi, double d) throws IllegalArgumentException { double mod; double result; do { double guassian = random.nextGaussian(); if (guassian < 0) iIiiiiiIIiIi += d; mod = d * guassian; } while ((result = (iIiiiiiIIiIi + mod)) < 35); return (int) result; } This code is not perfect, it's just more of an example of a direction they could try. That code produces this
    0 points
  10. here we go again with you posting quality info and people replying shitpost or disregard. funny thing is the last time after all the gaslighting they finally listened to your findings and said to have changed mouse interactions.
    0 points
×
×
  • Create New...