Geometry Dash Cheat Example

Exemple de script pour activer des fonctionnalités de triche dans Geometry Dash (exemple théorique seulement)

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name        Geometry Dash Cheat Example
// @namespace   http://tampermonkey.net/
// @version     0.3
// @description Exemple de script pour activer des fonctionnalités de triche dans Geometry Dash (exemple théorique seulement)
// @match       *://*.geometrydash.com/*
// @grant       none
// ==/UserScript==

(function() {
    'use strict';

    class GeometryDashCheat {
        constructor() {
            this.invincible = true;
            this.speed = 2; // Vitesse augmentée
            this.highJump = true; // Activer le saut élevé
            this.teleportToEnd = true; // Activer la téléportation à la fin
        }

        enableInvincibility() {
            if (this.invincible) {
                console.log("Invincibilité activée: Vous ne pouvez plus mourir.");
                // Code pour rendre le joueur invincible
                // Exemple (théorique): window.player.invincible = true;
            }
        }

        setSpeed(speed) {
            this.speed = speed;
            console.log(`Vitesse augmentée à ${this.speed}.`);
            // Code pour changer la vitesse du joueur
            // Exemple (théorique): window.player.speed = this.speed;
        }

        enableHighJump() {
            if (this.highJump) {
                console.log("Saut élevé activé.");
                // Code pour augmenter la hauteur des sauts
                // Exemple (théorique): window.player.jumpHeight = 1000; // Valeur théorique
            }
        }

        teleportToEnd() {
            if (this.teleportToEnd) {
                console.log("Téléportation à la fin du niveau activée.");
                // Code pour téléporter le joueur à la fin du niveau
                // Exemple (théorique): window.player.x = window.level.endX;
                // Exemple (théorique): window.player.y = window.level.endY;
            }
        }

        activateAllFeatures() {
            this.enableInvincibility();
            this.setSpeed(this.speed);
            this.enableHighJump();
            this.teleportToEnd();
        }
    }

    // Exemple d'utilisation
    const cheat = new GeometryDashCheat();
    cheat.activateAllFeatures();
})();