liamsheppard / fastest-tix-boi-ever

πŸŽ†

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Haha who want tix quick??

Just fill ur details and boom

var firstNames = ["", "", "", ""]
var lastNames = ["", "", "", ""]
var dobDay = ["", "", "", ""] // Make sure its always 2 long, so 01, 02, 03
var dobMon = ["", "", "", ""] // Make sure its always 2 long, so 01, 02, 03
var dobYr = ["", "", "", ""]
$(".first-name").each(function (index) { $(this).val(firstNames[index]) })
$(".last-name").each(function (index) { $(this).val(lastNames[index]) })
$("select[name='dob-day']").each(function (index) { $(this).val(dobDay[index]) })
$("select[name='dob-month']").each(function (index) { $(this).val(dobMon[index]) })
$("select[name='dob-year']").each(function (index) { $(this).val(dobYr[index]) })
$("#DataCollectionForms1").val("NO") // Potentially not that accurate year-to-year
$("#accept-terms-conditions").attr("checked", "checked") // Potentially not that accurate year-to-year

Example

var firstNames = ["Hebe", "Kermit", "Max", "Doctor"]
var lastNames = ["Jebes", "Croaky", "Power", "Zoidberg"]
var dobDay = ["31", "03", "07", "23"] // Make sure its always 2 long, so 01, 02, 03
var dobMon = ["10", "11", "01", "03"] // Make sure its always 2 long, so 01, 02, 03
var dobYr = ["1990", "1992", "1999", "1995"]
$(".first-name").each(function (index) { $(this).val(firstNames[index]) })
$(".last-name").each(function (index) { $(this).val(lastNames[index]) })
$("select[name='dob-day']").each(function (index) { $(this).val(dobDay[index]) })
$("select[name='dob-month']").each(function (index) { $(this).val(dobMon[index]) })
$("select[name='dob-year']").each(function (index) { $(this).val(dobYr[index]) })
$("#DataCollectionForms1").val("NO")
$("#accept-terms-conditions").attr("checked", "checked")

Notes from 2018

  • 3 Day sold out by 9:06, whole event by like 9:30
  • Refreshed at about 8:58 and it put us into the green room.
    • Refresh seems to be what you're supposed to do to get in there?
  • Didn't try incognito or multiple different browsers to get multiple chances on each computer, not sure if it works or not.

About

πŸŽ†


Languages

Language:JavaScript 100.0%