ShellGuy Client

A Cheat Client For Shell Shockers

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

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

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

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

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

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         ShellGuy Client
// @namespace    http://tampermonkey.net/
// @version      V1
// @description  A Cheat Client For Shell Shockers
// @author       Ludum
// @match        *://shellshock.io/*
// @icon         none
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

     function createShellGuyClient() {
        var ShellGuyClient = document.createElement('div');
        ShellGuyClient.id = 'shellguy-clientV1';
        ShellGuyClient.style.position = 'fixed';
        ShellGuyClient.style.top = '20px';
        ShellGuyClient.style.middle = '20px';
        ShellGuyClient.style.zIndex = '9999';
        ShellGuyClient.style.background = '#fff';
        ShellGuyClient.style.border = '1px solid #000';
        ShellGuyClient.style.padding = '10px';

          var isDragging = false;
        var offsetX = 0;
        var offsetY = 0;

        ShellGuyClient.addEventListener('mousedown', function(e) {
            isDragging = true;
            offsetX = e.clientX - ShellGuyClient.getBoundingClientRect().left;
            offsetY = e.clientY - ShellGuyClient.getBoundingClientRect().top;
        });

        document.addEventListener('mousemove', function(e) {
            if (isDragging) {
                ShellGuyClient.style.left = e.clientX - offsetX + 'px';
                ShellGuyClient.style.top = e.clientY - offsetY + 'px';
            }
        });

        document.addEventListener('mouseup', function() {
            isDragging = false;
        });


        var title = document.createElement('h3');
        title.innerText = 'Shell Guy Client V1';
        ShellGuyClient.appendChild(title);

        var godModeButton = document.createElement('button');
        godModeButton.innerText = 'God Mode';
        godModeButton.addEventListener('click', function() {
            // Implement God Mode functionality here
            alert('God Mode Under Maintenance!');
        });
        ShellGuyClient.appendChild(godModeButton);

        var unlimitedAmmoButton = document.createElement('button');
        unlimitedAmmoButton.innerText = 'Unlimited Ammo';
        unlimitedAmmoButton.addEventListener('click', function() {
            // Implement Unlimited Ammo functionality here
            alert('Unlimited Ammo Activated!');
            var ammoAmount
            ammoAmount=99999999
        });
        ShellGuyClient.appendChild(unlimitedAmmoButton);

        document.body.appendChild(ShellGuyClient);
    }

    createShellGuyClient();
})();