Advertisement
Ypleitez

Untitled

Oct 10th, 2023
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1.  
  2. betcalc = 0.2
  3.  
  4. -------------------------------------------
  5.  
  6. bethigh = false
  7. stopnow = false
  8. first = true
  9. done = true
  10. chance = 20
  11.  
  12. if (betcalc < 0.01) then print("Silakan atur betcalc kemudian restart skrip") stop() end
  13.  
  14. base = balance * (betcalc / 100000)
  15. curbet = base * 1.35
  16. nextbet = base
  17. target = 100-- Coin
  18. tprofit = balance + target
  19.  
  20. function dobet()
  21.  
  22. if(balance >= tprofit) then stop()
  23. print("Selamat jajan paha :v")
  24.  
  25.  
  26. end
  27.  
  28. base = balance * (betcalc / 100000)
  29.  
  30. if (first) then
  31. if(stopnow) then stop() end
  32. if !Win then
  33. chance = math.random(20,25)
  34. resetseed()
  35. bethigh=!bethigh
  36.  
  37.  
  38. nextbet = curbet
  39. first = false
  40. done = true
  41. end
  42. end
  43.  
  44. if(!first and !done) then
  45. if(stopnow) then stop() end
  46. if win then
  47. chance = math.random(20,25)
  48. resetseed()
  49. curbet = base * 1.35
  50. nextbet = base
  51. first = true
  52. done = true
  53.  
  54.  
  55. else
  56. curbet = curbet * 1.9
  57. nextbet = curbet
  58. chance = math.random(45,47)
  59. resetseed()
  60. bethigh=!bethigh
  61.  
  62.  
  63. end
  64. end
  65. done = false
  66. end
  67.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement