TEXT   94   0
   191   1.37 KB   37

everfree pony spin 2.0

By Guest
Created: 9th January 2023 07:27:06 AM
21st December 2025 06:21:36 PM

  1. 1. open js console while standing in the spot you want to spin on
  2. 2. make sure the focus is not on the chat window or it won't work
  3. 3. Paste this into js dev console:
  4.  
  5. function simulateKey (keyCode, type, modifiers) {
  6. var evtName = (typeof(type) === "string") ? "key" + type : "keydown";
  7. var modifier = (typeof(modifiers) === "object") ? modifier : {};
  8. var event = document.createEvent("HTMLEvents");
  9. event.initEvent(evtName, true, false);
  10. event.keyCode = keyCode;
  11. for (var i in modifiers) {
  12. event[i] = modifiers[i];
  13. }
  14. document.dispatchEvent(event);
  15. }
  16. let currentState = 0;
  17.  
  18. function progress() {
  19. simulateKey(32);
  20. simulateKey(currentState+37, 'up');
  21. currentState = (currentState+1)%4;
  22. simulateKey(currentState+37);
  23. }
  24.  
  25. 4. to start spinning, enter:
  26. let interval = setInterval(progress, 650)
  27.  
  28. 650 is time per spin - 650ms. Note that due to lag lower values are likely to look like random movements elsewhere and only look good for you.
  29.  
  30. 5. To stop spinning, enter
  31. clearInterval(interval)
  32. (to start spinning again, repeat step 4 without the 'let' word)
  33.  
  34. (it may be a good idea to prepare the stop command in the input field)
  35. if you're in safari, click just 'errors' at the top of the dev console, because the flood of logs will crash the dev console eventually otherwise.
  36. (possibly same for other browsers)
  37. alternatively, just restart the tab

Experiment R41NB0W D45H

by Guest

Cannon for sale

by Guest

"Hard blush" MLP/EG WallflowerxAnon Greentext

by Guest

Icarus (One Shot) by Dumoney

by Guest

Bubble Trouble

by Guest