Advertisement
coinwalk

seriously like manual

Apr 18th, 2021
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. pig = 6400
  2. base = balance/pig
  3. basebet = balance/pig
  4. nextbet = base
  5. chance = 49.95
  6. oldbal = balance
  7. target = 50000
  8. bethigh = false
  9. filthy = false
  10. old = balance
  11. oldy = balance
  12. oldbaly = balance
  13. myseed = 0
  14. wage = 0
  15. resetstats()
  16.  
  17. function dobet()
  18. xol = math.random(1,3)
  19. if (xol==1) then
  20. myseed = math.random(7777,9999)
  21. end
  22. if (xol==2) then
  23. myseed = math.random(50000,77777)
  24. end
  25. if (xol==3) then
  26. myseed = math.random(50,99)
  27. end
  28. seedclient = (myseed)
  29. if win then
  30. wage = wage-1
  31. else
  32. wage = wage+1
  33. end
  34. if (wage>=(math.random(2,5))) then
  35. nextbet = previousbet*2
  36. basebet = nextbet
  37. wage = 0
  38. filthy = true
  39. end
  40. if (balance>=(oldy+(basebet*(math.random(2,7))))) then
  41. nextbet = previousbet*2
  42. basebet = nextbet
  43. oldy = balance
  44. end
  45. if (balance<oldy) then
  46. oldy = balance
  47. end
  48. if balance>=oldbal and (filthy==false) then
  49. oldbal = balance
  50. end
  51. if (balance>=oldbal) and (filthy==true) then
  52. nextbet = base
  53. basebet = base
  54. oldy = balance
  55. oldbal = balance
  56. oldbaly = balance
  57. filthy = false
  58. end
  59. if (balance>=(oldbaly+(base*10))) then
  60. nextbet = base
  61. basebet = base
  62. oldy = balance
  63. oldbal = balance
  64. filthy = false
  65. oldbaly = balance
  66. end
  67. if (balance>target) then
  68. stop()
  69. end
  70. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement