Advertisement
coinwalk

trial

Oct 3rd, 2022
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. basebet = balance/100
  2. chance = 49.5
  3. ahh = basebet
  4. god = 0
  5. sin = 0
  6. hock = 0
  7. bos = false
  8. bethigh = false
  9. shift = true
  10. shock = false
  11. old = balance
  12. have = balance
  13. nextbet = basebet
  14. target = balance*2
  15. targettwo = 5000
  16. resetstats()
  17.  
  18. function dobet()
  19. if !win then
  20. god = god+1
  21. else
  22. god = god-1
  23. end
  24. if (sin>=1) then
  25. bethigh = false
  26. sin = 0
  27. end
  28. if (hock>=1) then
  29. bethigh = true
  30. hock = 0
  31. end
  32. if (god<=(1-8)) then
  33. nextbet = lastBet.Amount*2
  34. god = 0
  35. bos = true
  36. end
  37. if (god>=3) then
  38. nextbet = lastBet.Amount*2
  39. shock = true
  40. bos = false
  41. god = 0
  42. end
  43. if ((god<=1-3) and (bos==true)) then
  44. nextbet = basebet
  45. shock = false
  46. bos = false
  47. target = balance
  48. end
  49. if (balance<=(target-(basebet*20))) then
  50. nextbet = basebet
  51. shock = false
  52. bos = false
  53. target = balance
  54. end
  55. if balance>=targettwo then
  56. stop()
  57. end
  58. end
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement