Advertisement
Loudclaw

Chathacks

Jan 5th, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. /* Monchomans chat hacks */
  2. importScriptPage('User:Monchoman45/ChatHacks.js', 'c');
  3.  
  4. importScriptPage('User:Joeytje50/ChatPMs.js', 'c');
  5.  
  6. {
  7. $("input[type=submit]").css("display","inline")
  8. $("input[type=submit]").click(function(){
  9. e = jQuery.Event("keypress")
  10. e.which = 13 // enter key
  11. $('textarea[name=message]').keypress(function(){}).trigger(e)
  12. })
  13. }
  14.  
  15. //LMGTFY Chat script
  16. //By Princess Platinum
  17.  
  18. $('[name="message"]').keypress(function (e) {
  19. if (e.which == 13) {
  20. var test = "/lmgtfy";
  21. if (this.value.indexOf(test) > -1) {
  22. var query = this.value.replace('/lmgtfy ', '');
  23. var query = query.replace(/ /g, "+");
  24. this.value = "http://www.lmgtfy.com/?q=" + query
  25. }
  26. }
  27. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement