Lottery Ticket Generator

Generates 6 random numbers

< Lottery Ticket Generator 피드백으로 돌아가기

질문/댓글

§
게시: 2023-07-07

wouldn't show on the site and threw in some errors post http tp https change so added in a line

// ==UserScript==
// @name Lottery Ticket Generator
// @namespace neopets
// @version 2020.01.18.2
// @description Generates 6 random numbers
// @match https://www.neopets.com/games/lottery.phtml
// @require https://code.jquery.com/jquery-3.5.1.min.js
// ==/UserScript==
/* eslint-disable */
$("form[action='process_lottery.phtml'] table").css({"width" : "auto"}).find("tbody tr").append(` Random`);

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();

§
게시: 2023-11-08

thank you! I noticed the same error with http instead of https.

답글 게시

답글을 게시하려면 로그인하세요.

长期地址
遇到问题?请前往 GitHub 提 Issues。