HornsTownChanger

Just Chnages the player gender on charater creation page load thats it (after character creation turn off the script!)

  1. // ==UserScript==
  2. // @name HornsTownChanger
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.1
  5. // @description Just Chnages the player gender on charater creation page load thats it (after character creation turn off the script!)
  6. // @author ARSE
  7. // @match https://hornstown.com/php/gamelink.php?c=*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. var xmlhttp = new XMLHttpRequest();
  13. xmlhttp.onreadystatechange = function() {
  14. if (this.readyState == 4 && this.status == 200) {
  15. document.getElementById("Player-avatar").innerHTML = this.responseText;
  16. }
  17. };
  18. xmlhttp.open("GET", "player-avatar.php?changeSex=a", true);
  19. xmlhttp.send();
  20. })();