Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. var username = "teteral"; // Change this variable to the username of the user you wish to follow.
  2. var bet = 200; // 100 bits. Change this to the amount of bits you want. (cannot contains decimals)
  3.  
  4. engine.on('player_bet', function(data) {
  5. if(data.username.toLowerCase() == username.toLowerCase()){
  6. engine.placeBet((bet)*100, 10000, function(){});
  7. }
  8. });
  9.  
  10. engine.on('cashed_out', function(data) {
  11. if(data.username.toLowerCase() == username.toLowerCase()){
  12. engine.cashOut();
  13. }
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement