gazzamc / rwc2023_script

Ticket bot for RWC23

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rugby World Cup 2023 Ticket Bot

This is a small Javascript script that will grab tickets from the ticket portal and add them to the basket, then redirect when certain conditions are met.

Disclaimer

This "bot" was written for educational purposes. It won't guarantee anything but may improve your chances of
obtaining a ticket. Any misuse of the tool, and consequences of such actions are your own responsibility.

Use at your own risk!

Features

* Set Desired amount of tickets
* Set Max Price per ticket
* Get Notified by Telegram bot (extra setup), with cart ticket details.
* Auto Reloads on Throttle, no tickets. Set and forget!
* Prioritises Multi-Packs

Setup

This has been tested and developed using Google Chrome, so I highly recommend that browser for the best results.

  • Install Extension - Scripty

  • Be sure to login to your RWC account before running the script

Ticket Portal

  1. Create New Script

  2. Paste the contents of add_tickets.js into the "Javascript Code" box

  3. Changed options to the following:

Expand for image

  1. Click "Update"

  2. Enable the script with the slider option

  3. Navigate to the ticket portal you wish to run this script on

eg.

    https://tickets.rugbyworldcup.com/en/resale_{Match}

Cart

  1. Create New Script

  2. Paste the contents of cart_timer_notifier.js into the "Javascript Code" box

  3. Changed options to the following:

Expand for image

  1. Click "Update"

  2. Enable the script with the slider option

Telegram Bot

Replace the TELEGRAM_TOKEN and TELEGRAM_CHAT_ID with your own:

   const ENABLE_TELEGRAM = true;
   const TELEGRAM_TOKEN = "replace-this-with-token";
   // Get chat_id from https://api.telegram.org/bot<api-key>/getUpdates
   const TELEGRAM_CHAT_ID = 123456;

Get the bot token by following the guide HERE

About

Ticket bot for RWC23


Languages

Language:JavaScript 100.0%