Rep Char Limit Bypasser

Bypass the character limit for giving people rep.

  1. // ==UserScript==
  2. // @name Rep Char Limit Bypasser
  3. // @namespace http://www.fuckboygamers.club
  4. // @version 2.0
  5. // @description Bypass the character limit for giving people rep.
  6. // @author Mr Whiskey
  7. // @match https://hackforums.net/reputation.php?action=*
  8. // @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js
  9. // ==/UserScript==
  10.  
  11. $(".button").click(function() {
  12. var txt = $('.textbox').val();
  13. if(txt.length >= 10)
  14. {
  15. // Do nothing
  16. }
  17. else
  18. {
  19. $( '.textbox' ).val(txt + "            ");
  20. }
  21. });