Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Dexon's Follower Bustabit script. (http://dexontech.net)
- * Current status: ... Well, your win depends on the guy you're following.
- * Version 1.0.2
- * + When editing the variables, be careful to not remove any ';' or ',' character.
- */
- var username = "realhavok"; // Change this variable to the username of the user you which to follow.
- var bet = 100; // 100 bits. Change this to the amount of bits you want. (cannot contains decimals)
- engine.on('player_bet', function(data) {
- if(data.username.toLowerCase() == username.toLowerCase()){
- engine.placeBet((bet)*100, 10000, function(){});
- }
- });
- engine.on('cashed_out', function(data) {
- if(data.username.toLowerCase() == username.toLowerCase()){
- engine.cashOut();
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement