This repository features some mods that I made for Shell Shockers. Enjoy!
(You'll need to install the Tampermonkey extension to use these mods)
// ==UserScript==
// @name Better Inventory | Shell Shockers
// @version 4.0
// @author Infinite Smasher
// @description Inventory Upgrades - new item themes, skin randomizer, UI improvements, and MOAR!
// @icon https://raw.githubusercontent.com/InfiniteSmasher/Better-Inventory/main/ico_egg.png
// @require https://raw.githubusercontent.com/InfiniteSmasher/Better-Inventory/main/htmlEdits.js
// @match *://*shellshock.io/*
// @run-at document-end
// ==/UserScript==
(function() {
let script = document.createElement('script');
script.src = 'https://cdn.jsdelivr.net/gh/InfiniteSmasher/Better-Inventory@latest/inventory.js';
document.head.appendChild(script);
let style = document.createElement('link');
Object.assign(style, {
rel: 'stylesheet',
href: 'https://cdn.jsdelivr.net/gh/InfiniteSmasher/Better-Inventory@latest/inventory.css'
});
document.head.appendChild(style);
})();
Legacy default weapon skins with a toggle for sound effects in the settings menu
// ==UserScript==
// @name Legacy Mode (w/ SFX Toggle in Settings) | Shell Shockers
// @version 4.0
// @author Infinite Smasher
// @description Go back in time with a settings toggle for the old in-game sound effects (2018/2019) and legacy default gun skins!
// @icon https://raw.githubusercontent.com/InfiniteSmasher/Legacy-Mode/main/ico_egg.png
// @match *://*shellshock.io/*
// @run-at document-body
// ==/UserScript==
(function() {
let script = document.createElement('script');
script.src = 'https://cdn.jsdelivr.net/gh/InfiniteSmasher/Legacy-Mode@latest/legacy2.js';
document.head.appendChild(script);
})();
Legacy default weapon skins and sound effects - always on!
// ==UserScript==
// @name Legacy Mode | Shell Shockers
// @version 3.0
// @author Infinite Smasher
// @description Go back in time with the old in-game sound effects (2018/2019) and legacy default gun skins!
// @icon https://raw.githubusercontent.com/InfiniteSmasher/Legacy-Mode/main/ico_egg.png
// @match *://*shellshock.io/*
// @run-at document-end
// ==/UserScript==
(function() {
let script = document.createElement('script');
script.src = 'https://cdn.jsdelivr.net/gh/InfiniteSmasher/Legacy-Mode@latest/legacy1.js';
document.head.appendChild(script);
})();
Egg color slider in inventory (locked for non-VIPs)
Coming Soon!
Egg color slider in inventory (always unlocked!)
Coming Soon!
// ==UserScript==
// @name Hide HUD | Shell Shockers
// @version 1.0
// @author Infinite Smasher
// @description Adds a toggle in the settings menu to hide the HUD elements (in-game/spectate UI)
// @icon https://raw.githubusercontent.com/InfiniteSmasher/Hide-HUD/main/ico_egg.png
// @match *://*shellshock.io/*
// @run-at document-end
// ==/UserScript==
(function() {
let script = document.createElement('script');
script.src = 'https://cdn.jsdelivr.net/gh/InfiniteSmasher/Hide-HUD@latest/hideHud.js';
document.head.appendChild(script);
})();
// ==UserScript==
// @name Speedrun Timer | Shell Shockers
// @version 1.0
// @author Infinite Smasher
// @description Adds a visible speedrun timer to the readouts while spawned - useful for speedruns ofc!
// @icon https://raw.githubusercontent.com/InfiniteSmasher/Speedrun-Timer/main/ico_egg.png
// @match *://*shellshock.io/
// @match *://*shellshock.io?*
// @run-at document-end
// ==/UserScript==
(function() {
let script = document.createElement('script');
script.src = `https://cdn.jsdelivr.net/gh/InfiniteSmasher/Speedrun-Timer@latest/timer.js?ts=${new Date().getTime()}`;
document.head.appendChild(script);
})();