Greasy Fork is available in English.

triep games played grinder

use it in ffa or 2teams - i will give you 250,069,420,000 stars if you grind to 100,000 games played

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         triep games played grinder
// @namespace    http://tampermonkey.net/
// @version      6.99
// @description  use it in ffa or 2teams - i will give you 250,069,420,000 stars if you grind to 100,000 games played
// @author       Zert
// @match        https://triep.io/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=triep.io
// @grant        none
// @run-at       document-start
// ==/UserScript==

let fakeEvent = new Event(''), realEvent = window.r = new Proxy({ __proto__:fakeEvent }, { get:(a, b, c) => b === 'isTrusted' || fakeEvent[b] })
let onclick = window.o = {}
let buttons = ['leave-game', 'continue-btn', 'play-btn'], click = function(e) {
  if(e.onclick) {
    e.onclick(realEvent)
    return
  }
  let id = e.className
  onclick[id] && onclick[id](realEvent)
}
HTMLElement.prototype.addEventListener = new Proxy(HTMLElement.prototype.addEventListener, { apply:function(a, b, c) {
  if(c[0] === 'click') {
    onclick[b.className] = c[1]
  }
  return Reflect.apply(a, b, c)
} })
setInterval(function() {
  buttons.forEach(id => click(document.getElementsByClassName(id).item(0)))
}, 10500)
setTimeout(function() { document.getElementsByClassName('circle').item(0).remove() }, 10000)