Advertisement
coinwalk

snowy wow bot

Jan 16th, 2021
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. fraction = 24000
  2. basebet = balance/fraction
  3. chance = 49.95
  4. nextbet = basebet
  5. bethigh = true
  6. snowy = 0
  7. snow = 0
  8. oldbal = balance
  9. bal = balance
  10. bing = balance
  11. target = 40000
  12. bill = false
  13. zim = false
  14.  
  15. function dobet()
  16. if !win then
  17. snow+=1
  18. snowy+=1
  19. end
  20. if (snowy>=2) and (balance>=bal) then
  21. nextbet = previousbet*2
  22. snowy = 0
  23. bill = true
  24. snow = 0
  25. end
  26. if (bill==true) and (balance>(bing-(basebet*4))) then
  27. nextbet = previousbet
  28. snowy = 0
  29. end
  30. if snow>=4 and balance<bing then
  31. nextbet = previousbet*2
  32. snow = 0
  33. snowy = 0
  34. end
  35. if (balance>(bing-(basebet*4))) and (balance<=bal) then
  36. nextbet = previousbet
  37. snowy = 0
  38. end
  39. if (balance>=(oldbal+(basebet*2))) and win and (zim==false) then
  40. nextbet = balance/fraction
  41. oldbal = balance
  42. snow = 0
  43. snowy = 0
  44. zim = true
  45. bill = false
  46. bal = balance
  47. bing = balance
  48. resetseed()
  49. end
  50. if (balance>=oldbal) and (zim==true) then
  51. zim = false
  52. nextbet = balance/fraction
  53. oldbal = balance
  54. snow = 0
  55. snowy = 0
  56. bill = false
  57. bal = balance
  58. bing = balance
  59. end
  60. if balance>target then
  61. stop()
  62. end
  63. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement