Script new version


SUBMITTED BY: jasonmiville

DATE: June 5, 2018, 6:59 p.m.

FORMAT: Text only

SIZE: 1.9 kB

HITS: 456

  1. --Martingale v.1
  2. --variable
  3. enablezz=true
  4. enablesrc=true
  5. base=0.001
  6. nextbet=base
  7. chance=49.95
  8. adress=A6J5mDZGLa5CZMPBambikEGWvBTpvKyQpG
  9. wamount=2
  10. kamount=10
  11. fee=1
  12. goal=balance+wamount+fee+kamount
  13. wincount=0
  14. wmultiply=1.000
  15. lmultiply=2
  16. startbalance=balance
  17. moneyvalue=0.003632
  18. invest=0
  19. amountinvest=10
  20. investcount=0
  21. investstart=balance
  22. investid='153930774'
  23. totalinvest=0
  24. --end variable
  25. function dobet()
  26. if invest==0 then
  27. investstart=balance
  28. end
  29. if win then
  30. chance=49
  31. if wincount==0 then
  32. nextbet=base*wmultiply
  33. wincount=wincount+1
  34. else
  35. nextbet=nextbet*wmultiply
  36. wincount=wincount+1
  37. end
  38. if goal<=balance then
  39. tosend=wamount+fee
  40. withdraw(tosend,'88579555')
  41. ching()
  42. print('')
  43. print('WITHDRAW COMPLETED!!')
  44. print('')
  45. goal=goal+kamount
  46. --investor script
  47. verifinvest=amountinvest*2
  48. if invest==1 and wamount<=investcount then
  49. if verifinvest<totalinvest then
  50. invest=0
  51. end
  52. totalinvest=string.format("%.8f",totalinvest+investcount)
  53. withdraw(totalinvest,investid)
  54. print('')
  55. print('INVESTOR WITHDRAW COMPLETED!!')
  56. print('')
  57. end
  58. --investor script end
  59. resetseed()
  60. end
  61. else
  62. chance=49.95
  63. nextbet = nextbet*lmultiply
  64. wincount=0
  65. end
  66. profit1=string.format("%.8f",balance-startbalance)
  67. print('')
  68. print('Balance: '..string.format("%.8f",balance))
  69. print('Real cash: '..string.format("%.4f",balance*moneyvalue)..' USD')
  70. print('profit: '..string.format("%.4f",profit1*moneyvalue)..' USD ('..string.format("%.8f",profit1)..' Doge)')
  71. if invest==1 then
  72. investprof=string.format("%.8f",balance-investstart)
  73. investcount=string.format("%.8f",(investprof*5)/100)
  74. print('profit investor: '..string.format("%.4f",investcount*moneyvalue)..' USD ('..string.format("%.8f",investcount)..' Doge)')
  75. end
  76. print('Goal: '..goal..' ('..string.format("%.2f",balance*100/goal)..' %)')
  77. print('')
  78. end

comments powered by Disqus