Advertisement
coinwalk

mega fast

Aug 21st, 2021
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. y = balance/36
  2. x = y
  3. chance = 49.95
  4. bethigh = false
  5. nextbet = y
  6. target = 500
  7. old = balance
  8. elf = y
  9. myseed = 0
  10. bob = y
  11. Low = 0
  12. High = 499499
  13. myseed = 0
  14. kil = 0
  15. vim = false
  16.  
  17. function dobet()
  18. xol = math.random(1,3)
  19. if win then
  20. elf = elf+previousbet
  21. bob = bob-previousbet
  22. kil = 0
  23. else
  24. elf = elf-previousbet
  25. bob = bob+previousbet
  26. kil = kil+1
  27. end
  28. if kil>=3 then
  29. if (xol==1) then
  30. myseed = math.random(7777,9999)
  31. end
  32. if (xol==2) then
  33. myseed = math.random(50000,77777)
  34. end
  35. if (xol==3) then
  36. myseed = math.random(50,99)
  37. end
  38. end
  39. clientseed = myseed
  40. if bob<y then
  41. bob=y
  42. end
  43. if elf<y then
  44. elf=y
  45. end
  46. if (elf>=(x*6)) then
  47. nextbet = previousbet*2
  48. x = nextbet
  49. elf = x
  50. end
  51. if (bob>=(x*3)) then
  52. nextbet = previousbet*2
  53. x = nextbet
  54. bob = x
  55. vim = true
  56. end
  57. if (nextbet>=y*4) and vim==true then
  58. nextbet = y
  59. x = y
  60. elf = y
  61. bob = y
  62. end
  63. if (nextbet>=(y*2)) and (balance>=old) then
  64. nextbet = y
  65. x = y
  66. elf = y
  67. bob = y
  68. vim = false
  69. old = balance
  70. end
  71. if balance>target then
  72. stop()
  73. end
  74. end
  75.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement