alfarishi

9.99

Jun 16th, 2020
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -------------------
  2. basechance = 93.91
  3. basebet    = 0.001
  4. ------------------
  5. nextbet=basebet
  6. chance=basechance
  7. ------------------
  8. bethigh      = false
  9. lowhigh      = 1
  10. rollcount    = 0
  11. betcount     = 0
  12. target       = 0.000001
  13. investtarget = 0.00001
  14. tmpprofit    = 0
  15. investprofit = 0
  16. startbalance = balance
  17. stoploss     = balance*0.9
  18. wintarget    = balance*1.20
  19. function dobet()
  20.  
  21.  
  22.     if balance-(nextbet) >= wintarget and wintarget ~= 0 then
  23.             print("\n\nWinTarget Reach\n\n")
  24.             resetseed()
  25.             stop()
  26.             nextbet    = basebet
  27.     end
  28.    
  29.         if balance-(nextbet) <= stoploss and stoploss ~= 0 then
  30.         print("\n\nStoploss Reach\n\n")
  31.         stop()
  32.         end
  33.  
  34. if win then
  35.     chance     = 93
  36.     print("Winner! Chicken dinner!")
  37.     nextbet=basebet
  38.     lowhigh = math.random(0,1)
  39.     betcount=betcount+1
  40.     end
  41.  
  42. if !win then
  43.     betcount = betcount+1
  44.     nextbet  = previousbet*1.114999
  45.     end
  46.  
  47.     lowhigh = math.random(0,1)
  48. f betcount >79 then
  49.     chance = math.random(8.88,9.99)
  50.     print("99 Luftballons :p")
  51.     resetseed()
  52.     betcount = 0
  53.     print("Dare to continue..?")
  54. end
  55. --sets hi/lo
  56. if (lowhigh == 0) then
  57.     bethigh = false
  58. else
  59.     bethigh = true
  60. end
  61.  
  62. --change seed every 10 rolls/bets
  63. if (rollcount == 10) then
  64.     rollcount = 0
  65.     --resetseed();
  66.     print("-----------------------------------")
  67.     print("PROFIT:") print(profit)
  68.     print("-----------------------------------")
  69. else
  70.     rollcount = rollcount + 1
  71. end
  72.  
  73.  
  74. end
Advertisement
Add Comment
Please, Sign In to add comment