Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var BaseTweet = "I am testing a twitter bot!"; //What your tweet says, a number will be added at the end automatically since you can't post duplicate tweets on twitter
- function a(){
- document.getElementsByClassName("js-compose-text compose-text scroll-v scroll-styled-v scroll-styled-h scroll-alt padding-al")[0].value = BaseTweet+" "+Math.floor(Math.random() * 1000);
- setTimeout(b,20);
- }
- function b(){
- if (typeof document.getElementsByClassName("js-send-tweet-button js-spinner-button js-show-tip btn btn-positive-on-blue btn-extra-height is-disabled") !== "undefined") {
- document.getElementsByClassName("js-send-tweet-button js-spinner-button js-show-tip btn btn-positive-on-blue btn-extra-height is-disabled")[0].setAttribute("class","js-send-tweet-button js-spinner-button js-show-tip btn btn-positive-on-blue btn-extra-height");
- }
- document.getElementsByClassName("js-send-tweet-button js-spinner-button js-show-tip btn btn-positive-on-blue btn-extra-height")[0].click();
- setTimeout(a,500);
- }
- a();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement