Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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.
- let timeout = 250; // time between tips in milliseconds
- let tokens = 10; // number of tokens to tip
- let tip_amount = 1; // number of tokens per tip
- let username = "caabcaab"; // user to tip
- 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