Guest User

Untitled

a guest
Jul 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. javascript:(function(){
  2. if (window.location.host != "tinychat.com") {
  3. alert('Redirecting you to tinychat to get needed information.\nPlease hit the bookmarklet again once the page is loaded.');
  4. window.location = "tinychatroomurl";
  5. } else {
  6. if(document.body.innerHTML.search("autoop") > 0 && document.body.innerHTML.search("avatarhash") > 0 && document.body.innerHTML.search("account:")) {
  7. var autoop = document.body.innerHTML.substr(document.body.innerHTML.search("autoop")+9,32);
  8. var avatarhash = document.body.innerHTML.substr(document.body.innerHTML.search("avatarhash")+13,32);
  9. var account = document.body.innerHTML.substr(document.body.innerHTML.search("account:")+10,30);
  10. account = account.substr(0,account.search("avatarhash:")-3);
  11. alert('Thanks, Redirecting you back to roomname');
  12. window.location = "embedurl?autoop=" + autoop +"&avatarhash=" + avatarhash + "&account=" + account;
  13. } else {
  14. alert('You are either not a moderator of this room or you are not logged in.');
  15. }
  16. }
  17. })();
Add Comment
Please, Sign In to add comment