Advertisement
coinwalk

to cheer up benderer

Aug 2nd, 2022
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. chance = 49.5
  2. dking = balance/50000
  3. cript = dking
  4. have = balance
  5. ian = balance
  6. holly = (dking*6.9)
  7. joe = false
  8. jim = false
  9. god = (dking*2.5)
  10. nextbet = dking
  11. bethigh = false
  12. target = 5000
  13. bs = 0
  14. ok = 0
  15. resetstats()
  16.  
  17. function dobet()
  18. if ((balance>=(have+holly))) then
  19. have = have+(cript*10)
  20. god = (cript*12.5)
  21. holly = (cript*6.9)
  22. nextbet = cript*2
  23. cript = cript*2
  24. joe = false
  25. jim = true
  26. end
  27. if ((balance<=(have-god))) then
  28. holly = (cript*6.9)
  29. god = (cript*9.9)
  30. nextbet = cript*2
  31. cript = cript*2
  32. joe = true
  33. have = balance
  34. end
  35. if ((balance>=ian) and (joe==true) and (jim==false) and (balance<(ian+(dking*10)))) then
  36. nextbet = dking
  37. cript = dking
  38. holly = (dking*6.9)
  39. ian = ian
  40. have = ian
  41. jim = false
  42. joe = false
  43. god = (dking*2.5)
  44. end
  45. if (((balance>(ian+(dking*10))) and (balance<(ian+(holly*2)))) or ((balance>(ian+(dking*10))) and (balance>=(ian+(holly*2))))) then
  46. ian = ian+((math.floor((balance-ian)/(dking*10)))*(dking*10))
  47. have = ian
  48. nextbet = dking
  49. cript = dking
  50. holly = (dking*6.9)
  51. jim = false
  52. joe = false
  53. god = (dking*2.5)
  54. end
  55. if balance>target then
  56. stop()
  57. end
  58. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement