Ocean Hero Bottle Hack

Give you 1 quadrillion bottles every time you press a button!

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Ocean Hero Bottle Hack
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Give you 1 quadrillion bottles every time you press a button!
// @author       You
// @match        https://www.oceanhero.gg/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Create a button
    let button = document.createElement('button');
    button.innerHTML = 'Give Me 1 Quadrillion Bottles';
    button.style.position = 'fixed';
    button.style.top = '20px';
    button.style.left = '20px';
    button.style.padding = '10px 20px';
    button.style.fontSize = '18px';
    button.style.backgroundColor = '#008CBA';
    button.style.color = 'white';
    button.style.border = 'none';
    button.style.borderRadius = '5px';
    button.style.cursor = 'pointer';
    document.body.appendChild(button);

    // Add an event listener to the button
    button.addEventListener('click', function() {
        // Assuming `bottles` is the variable that tracks the bottle count
        // Update the bottle count by adding 1 quadrillion bottles
        if (typeof window.bottles !== 'undefined') {
            window.bottles += 1000000000000000;  // Adding 1 quadrillion bottles
        } else {
            alert('Unable to find the bottle count variable.');
        }
    });
})();