Lottery Ticket Generator

Generates 6 random numbers

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 or Violentmonkey 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         Lottery Ticket Generator
// @namespace    neopets
// @version      2020.01.18.2
// @description  Generates 6 random numbers
// @match        http://www.neopets.com/games/lottery.phtml
// @require      https://code.jquery.com/jquery-3.5.1.min.js
// ==/UserScript==

$("form[action='process_lottery.phtml'] table").css({"width" : "auto"}).find("tbody tr").append(`&nbsp;<td style="padding:10px;"><button id="randomTicket" type="button">Random</button></td>`);

const genNum = (min, max) => Math.floor(Math.random() * max) + min;

const genTicket = () => {
    let ticket = [];
    for (let i = 0; i < 6; i++) {
        let randomNumber = genNum(1, 30);
        while (ticket.includes(randomNumber)) {
            randomNumber = genNum(1, 30);
        }
        ticket.push(randomNumber);
    }
    ticket.sort((a, b) => a - b);
    return ticket;
};

$("#randomTicket").on("click", function (event) {
    event.preventDefault();
    const ticket = genTicket();
    $("form[action='process_lottery.phtml'] table input").each(function (index, element) {
        $(element).val(ticket[index]);
    });
}).click();