Advertisement
coinwalk

omg crazy

Mar 15th, 2021
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. fraction = 50000
  2. basebet = balance/fraction
  3. base = basebet
  4. chance = 90
  5. nextbet = basebet
  6. bethigh = false
  7. oldbal = balance
  8. target = 50000
  9. sux = 0
  10. wage = 0
  11. bim = 0
  12. fit = true
  13. resetstats()
  14.  
  15.  
  16. function dobet()
  17. wage = wage+previousbet
  18. if (!win) and (chance==90) then
  19. bethigh = !bethigh
  20. nextbet = (wage*10)
  21. bim+=1
  22. end
  23. if (win) and (chance==90) then
  24. bethigh = false
  25. bim = 0
  26. end
  27. if bim>=2 and fit==true then
  28. bethigh = true
  29. chance = 24
  30. bim = 0
  31. end
  32. if (!win) and (chance==24) then
  33. nextbet = ((wage/4)+basebet)
  34. sux = sux+1
  35. end
  36. if (win) and (chance==24) then
  37. sux = 0
  38. bethigh = false
  39. chance = 90
  40. end
  41. if (sux>=3) then
  42. nextbet = wage*12
  43. bethigh = false
  44. fit = false
  45. chance = 90
  46. bim = 0
  47. sux = 0
  48. end
  49. if (balance>=oldbal) then
  50. nextbet = balance/fraction
  51. fit = true
  52. sux = 0
  53. wage = 0
  54. oldbal = balance
  55. end
  56. if (balance>=target) then
  57. stop()
  58. end
  59. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement