A comment on Can anyone make a script for this game? by MerciNarcisse was reported 2025-02-06 for Spam
You can change the controls to make them more convenient. I won't write cheats, if I could, I would have written one for myself a long time ago for Aviator Game
// ==UserScript==
// @name Deeeep.io Control Optimizer
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Optimizes controls for better gameplay in Deeeep.io
// @author YourName
// @match *://deeeep.io/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Custom key bindings
const customKeys = {
boost: 'Shift', // Boost activation
ability: 'Q', // Special ability
chat: 'Enter', // Chat activation
};
// Function to simulate key presses
function sendKeyEvent(keyCode, type = 'keydown') {
let event = new KeyboardEvent(type, { keyCode: keyCode, bubbles: true });
document.dispatchEvent(event);
}
// Key event listener
document.addEventListener('keydown', function(event) {
switch (event.key) {
case customKeys.boost:
console.log('Boost activated!');
sendKeyEvent(32); // Simulates pressing the "Space" key for boost
break;
case customKeys.ability:
console.log('Ability used!');
sendKeyEvent(69); // Simulates pressing the "E" key for special ability
break;
case customKeys.chat:
console.log('Chat opened!');
sendKeyEvent(13); // Simulates pressing "Enter" for chat
break;
}
});
console.log('Deeeep.io Control Optimizer loaded successfully!');
})();
Repost of deleted comment with same link: https://greasyfork.org/scripts/463092-%E7%99%BE%E5%BA%A6%E7%BD%91%E7%9B%98%E5%85%8D%E8%BD%AC%E5%AD%98%E6%92%AD%E6%94%BE%E8%A7%86%E9%A2%91/discussions/273420#comment-556984.
MerciNarcisseBanned (the reported user) has made:
This report has been upheld by a moderator.