Advertisement
Guest User

chaturbate auto tipper

a guest
Jul 1st, 2017
15,051
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Open your javascript console (Control - Shift - J for Chrome and Firefox) and paste the following code into the the command line. The command line is at the bottom of the screen that has a ">" on the left. Change the variables to alter the amount tipped.
  2.  
  3. let timeout = 250; // time between tips in milliseconds
  4. let tokens = 10; // number of tokens to tip
  5. let tip_amount = 1; // number of tokens per tip
  6. let username = "caabcaab"; // user to tip
  7.  
  8. for(i=0;i<tokens;i++) { setTimeout(function() { $.post("https://chaturbate.com/tipping/send_tip/" + username + "/", {'csrfmiddlewaretoken':$.cookie('csrftoken'), tip_amount: tip_amount})}, i*timeout)}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement