[in beta-testing] Gats.io right click for spacebar

This script is under developpement. an old version of it works but not for shield here: https://greasyfork.org/fr/scripts/433998-in-beta-testing-gats-io-right-click-for-spacebar?version=987557. I'm currently having issues with the mouse event, google chome has changed it to pointer and it is not easy to handle it but i'm trying my best.

Från och med 2022-09-19. Se den senaste versionen.

// ==UserScript==
// @name         [in beta-testing] Gats.io right click for spacebar
// @version      2.3.1.4
// @description  This script is under developpement. an old version of it works but not for shield here: https://greasyfork.org/fr/scripts/433998-in-beta-testing-gats-io-right-click-for-spacebar?version=987557. I'm currently having issues with the mouse event, google chome has changed it to pointer and it is not easy to handle it but i'm trying my best. 
// @author       Rayan223
// @match        https://gats.io
// @icon         none
// @grant        none
// @license MIT
// @namespace https://greasyfork.org/users/825882
// ==/UserScript==

document.body.insertAdjacentHTML("beforebegin",'<div><p id="clic">0</p></div>')

var cm = 0

document.addEventListener("contextmenu",function(){
    ++cm
    setTimeout(() => {cm=0},500)
})

document.addEventListener("pointerdown",function(){
    ++cm
    if (c>1){
        document.getElementById('clic').textContent = '1'
    }
})