Advertisement
TheJewishJuggernaut

pdjd

Mar 31st, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. //STARTUP BOT CODE
  2. userLabel(1, "BetPerSec");
  3. userLabel(2, "BetPerMin");
  4. userLabel(3, "BetPerHour");
  5. userLabel(4, "BetPerDay");
  6. userLabel(5, "ProfitPerBet");
  7. userLabel(6, "ProfitPerMin");
  8. userLabel(7, "ProfitPerHour");
  9. userLabel(8, "ProfitPerDay");
  10. botBaseBet=0;
  11. botBaseGame=10;
  12. botBaseMulti=1;
  13. botBaseType=0;
  14. res
  15.  
  16. //MAIN BOT CODE
  17. if(botDidWin){
  18. botBaseBet=botCurrBalance*0.0000015;
  19. resetToBase();
  20. } else {
  21. if(botCurrLossRun === 1) {
  22. botCurrMulti = 1.12;
  23. }
  24. botCurrBet = (botCurrBet * botCurrMulti);
  25. }
  26. userValue(1, (botTotalBets/botTotalSeconds).toFixed(2)); //Gets bets/s average
  27. userValue(2, (botTotalBets/botTotalSeconds*60).toFixed(2)); //Gets bets/min average
  28. userValue(3, (botTotalBets/botTotalSeconds*3600).toFixed(2)); //Gets bets/hour average
  29. userValue(4, (botTotalBets/botTotalSeconds*86400).toFixed(2)); //Gets bets/day average
  30.  
  31. userValue(5, (botTotalProfit/botTotalBets).toFixed(7)); //Gets profit/bet average
  32. userValue(6, (botTotalProfit/botTotalSeconds*60).toFixed(7)); //Gets profit/min average
  33. userValue(7, (botTotalProfit/botTotalSeconds*3600).toFixed(7)); //Gets profit/hour average
  34. userValue(8, (botTotalProfit/botTotalSeconds*86400).toFixed(7)); //Gets profit/day average
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement