Advertisement
coinwalk

snowy emanual

Sep 23rd, 2020
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. fraction = 13000
  2. basebet = (balance/fraction)
  3. chance = 49.95
  4. nextbet = basebet
  5. bethigh = false
  6. james = balance
  7. target = balance*2000
  8. bin = 0
  9. falcon = balance
  10. lol = 0
  11. skill = 0
  12. skiller = 0
  13. resetstats()
  14. function dobet()
  15. basebet = (balance/fraction)
  16. if (win) then
  17. lol+=1
  18. skiller = 0
  19. skill = 0
  20. else
  21. skill +=1
  22. skiller+=1
  23. end
  24. if (skill==1) then
  25. nextbet = previousbet
  26. end
  27. if (skill>=2) and (skiller<=4) then
  28. nextbet = previousbet*2
  29. skill = 0
  30. end
  31. if skiller>4 and skiller<8 then
  32. nextbet = previousbet
  33. end
  34. if (skiller>=8) and (skiller<=14) then
  35. nextbet = previousbet*3
  36. end
  37. if (skiller>14) then
  38. nextbet = previousbet*4
  39. end
  40. if (lol>=1) then
  41. nextbet = previousbet*2
  42. end
  43. if (lol>1) and (balance>james) then
  44. nextbet = basebet
  45. skiller = 0
  46. lol = 0
  47. james = balance
  48. end
  49. if (balance>target) and win then
  50. tip(336178519,balance/2)
  51. nextbet = basebet
  52. james = balance
  53. end
  54. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement