Advertisement
Guest User

Ogario sin captcha

a guest
Nov 16th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Free Agar.io Bots (OGARio Version)
  3. // @version 1.0.10
  4. // @description Free open source agar.io bots with OGARio
  5. // @author Nel & szymy (OGARio deobfuscated by ReF)
  6. // @grant GM_xmlhttpRequest
  7. // @run-at document-start
  8. // @match *://agar.io/*
  9. // @connect pastebin.com
  10. // @connect cdn.ogario.ovh
  11. // ==/UserScript==
  12.  
  13. if(location.host === 'agar.io' && location.pathname === '/'){
  14. location.href = `https://agar.io/ogario${location.hash}`
  15. return
  16. }
  17.  
  18. function modifyHTML(html){
  19. return html
  20. .replace('<head>', '<head><script src="https://bundle.run/buffer@5.2.1"></script><script src="https://pastebin.com/raw/z9hBsFYi"></script>')
  21. .replace('https://cdn.ogario.ovh/v4/beta/ogario.v4.js', 'https://ex-script.com/fstyle/ogario/OGARio.core.js')
  22. }
  23.  
  24. if(!navigator.userAgent.includes('Chrome/') || Number(navigator.userAgent.match(/Chrome\/(\d+)/)[1]) < 76) window.stop()
  25.  
  26. GM_xmlhttpRequest({
  27. method: 'GET',
  28. url: 'https://cdn.ogario.ovh/v4/beta',
  29. onload(res2){
  30. document.open()
  31. document.write(modifyHTML(res2.responseText))
  32. document.close()
  33. }
  34. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement