Advertisement
coinwalk

magic manual

Aug 23rd, 2021
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. cat = 100
  2. y = balance/cat
  3. nextbet = y
  4. older = balance
  5. old = balance
  6. bill = cat*cat
  7. bi = cat*cat
  8. jill = cat*cat
  9. v = cat*cat
  10. g = cat*cat
  11. c = true
  12. myseed = 0
  13. f = true
  14. x = cat*cat+3
  15. target = 6
  16. chance = 49.95
  17. bethigh = false
  18. resetstats()
  19.  
  20. function dobet()
  21. if win then
  22. bill = bill-1
  23. bi = bi+1
  24. else
  25. bill = bill+1
  26. bi = bi-1
  27. end
  28. if (bi==(g+7)) and c==true then
  29. nextbet = previousbet*2
  30. c = false
  31. end
  32. if ((bill*2)==(v+(x+3))) then
  33. nextbet = previousbet*2
  34. x = x+2
  35. f = false
  36. end
  37. if ((bill)==(v-(x-3))) and f==false then
  38. nextbet = previousbet*2
  39. x = x-3
  40. f = false
  41. end
  42. if nextbet>=y*16 or (balance>=(older+(y*8))) or balance>=older and f==false then
  43. nextbet = y
  44. c = true
  45. f = true
  46. jill = cat*cat
  47. bi = cat*cat
  48. bill = cat*cat
  49. v = cat*cat
  50. x = cat*cat+3
  51. g = cat*cat
  52. older = balance
  53. end
  54. if balance>target then
  55. stop()
  56. end
  57. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement