Advertisement
coinwalk

coin

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