Advertisement
NotADeveloper

Untitled

Mar 29th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. // Script Name: The Borderline
  2. // Author: Landrew 03-29-2017
  3. // Donations sent to Landrew
  4.  
  5. var CashoutPercentage=124;
  6. var CashoutPercentageBase=CashoutPercentage;
  7. var LossCount=0;
  8. var BitsToBet=300;
  9. var TomTomVersion =1; //set to 1 to use loss correction
  10. var SierraVersion =0; //set to 1 to increase on win
  11. var BitsToBetBase=BitsToBet;
  12. engine.on('game_starting', function(data) {
  13. if (engine.lastGamePlay() == 'LOST') {
  14. LossCount++;
  15. CashoutPercentage=CashoutPercentageBase;
  16. BitsToBet=BitsToBetBase;
  17. if (TomTomVersion==0){
  18. if (LossCount > 3) {
  19. BitsToBet=BitsToBetBase*4;
  20. LossCount =1;
  21.  
  22.  
  23. }
  24. } else {
  25. BitsToBet=BitsToBetBase;
  26. }
  27.  
  28.  
  29.  
  30. } else {
  31. LossCount=0;
  32. if(SierraVersion==1) {
  33. // BitsToBet*=1.01;
  34. CashoutPercentage++;
  35. } else {
  36. BitsToBet*=0.9;
  37. }
  38.  
  39.  
  40. }
  41. engine.placeBet(Math.floor(BitsToBet)*100 ,Math.floor(CashoutPercentage));
  42. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement