Squashie Posted September 9, 2019 Share Posted September 9, 2019 1 minute ago, strangestat said: Wait are Interrupters confirmed? No but Tre tagged them on the "trash night" post with weezer & FOB, so it's a pretty close, yes. Quote Link to comment Share on other sites More sharing options...
pacejunkie punk Posted September 9, 2019 Share Posted September 9, 2019 The thought of going online to buy tickets for this is stressful. I hope I can get a presale at least 2 Quote Link to comment Share on other sites More sharing options...
DrBare Posted September 9, 2019 Share Posted September 9, 2019 1 minute ago, pacejunkie punk said: The thought of going online to buy tickets for this is stressful. I hope I can get a presale at least out of curioisty, whats the best way to get pre sale? mobile plans? Mailing lists? any tips would be useful. Quote Link to comment Share on other sites More sharing options...
pacejunkie punk Posted September 9, 2019 Share Posted September 9, 2019 3 minutes ago, DrBare said: out of curioisty, whats the best way to get pre sale? mobile plans? Mailing lists? any tips would be useful. Depends on the event, but it’s best to sign up for everything — event socials, venue socials, band socials and promoter socials. Sometimes there are more than one. Sometimes credit card sponsors have them too. 1 Quote Link to comment Share on other sites More sharing options...
AngelBlue_ Posted September 9, 2019 Share Posted September 9, 2019 If the interrupters are in, this is truly Hella mega 1 Quote Link to comment Share on other sites More sharing options...
JRod Posted September 9, 2019 Share Posted September 9, 2019 The Interrupters! Now that’s what I’m talking about. Really hoping the interrupters are their openers on the all-important non FOB/Weezer leg. 1 Quote Link to comment Share on other sites More sharing options...
DrBare Posted September 9, 2019 Share Posted September 9, 2019 9 minutes ago, pacejunkie punk said: Depends on the event, but it’s best to sign up for everything — event socials, venue socials, band socials and promoter socials. Sometimes there are more than one. Sometimes credit card sponsors have them too. Who would I sign up to for the events and venues part? Quote Link to comment Share on other sites More sharing options...
susanananananaa Posted September 9, 2019 Share Posted September 9, 2019 8 minutes ago, pacejunkie punk said: Depends on the event, but it’s best to sign up for everything — event socials, venue socials, band socials and promoter socials. Sometimes there are more than one. Sometimes credit card sponsors have them too. Agreed. Since Idiot Nation is pretty abandoned I doubt anything will happen through there. Quote Link to comment Share on other sites More sharing options...
DrBare Posted September 9, 2019 Share Posted September 9, 2019 1 minute ago, susanananananaa said: Agreed. Since Idiot Nation is pretty abandoned I doubt anything will happen through there. I was already signed up to GD and interrupters mailing list. just signed up to weezer and FOB 1 Quote Link to comment Share on other sites More sharing options...
pacejunkie punk Posted September 9, 2019 Share Posted September 9, 2019 1 minute ago, DrBare said: Who would I sign up to for the events and venues part? Wait until the announcement tomorrow pick your venue and get on their mailing list and socials too. Also sign up to hellamegatour everywhere if you haven’t already (Facebook, IG, Twitter, website) Quote Link to comment Share on other sites More sharing options...
spider man. Posted September 9, 2019 Share Posted September 9, 2019 Interrupters officially have me interested. My SO loves them so I know he’ll want to go now too. Plus we’ve both wanted to see Weezer for a while. Don't mind me, I’ll just be super anxiously waiting to know how much tickets are going to cost to this crazy thing. 1 Quote Link to comment Share on other sites More sharing options...
ChrisE Posted September 9, 2019 Share Posted September 9, 2019 They already selling tickets for the Paris show? Quote Link to comment Share on other sites More sharing options...
DrBare Posted September 9, 2019 Share Posted September 9, 2019 (edited) 2 minutes ago, Tisu said: They already selling tickets for the Paris show? by looks of it, you can reserve tickets for a service fee. this France company seems to be jumping the gun at every corner... Now the media has it, they are doing this so when people get hyped, they go straight there to "reserve" tickets instead of waiting, and possibly forgetting. Edited September 9, 2019 by Khaleesi. Please remember to remove images when you quote, thanks! :) Quote Link to comment Share on other sites More sharing options...
purplebenny Posted September 9, 2019 Share Posted September 9, 2019 (edited) 3 minutes ago, Tisu said: They already selling tickets for the Paris show? Not a legit site. promotes gigs in the hope of confirmation Edited September 9, 2019 by Khaleesi. Please remember to remove images when you quote, thanks! :) Quote Link to comment Share on other sites More sharing options...
Asa. Posted September 9, 2019 Share Posted September 9, 2019 1 minute ago, Tisu said: They already selling tickets for the Paris show? I wouldn't trust that Quote Link to comment Share on other sites More sharing options...
susanananananaa Posted September 9, 2019 Share Posted September 9, 2019 2 minutes ago, Tisu said: They already selling tickets for the Paris show? 39€ per person? Am I reading that correctly? That's surprisingly cheap! Quote Link to comment Share on other sites More sharing options...
DrBare Posted September 9, 2019 Share Posted September 9, 2019 1 minute ago, susanananananaa said: 39€ per person? Am I reading that correctly? That's surprisingly cheap! Thats the SERVICE CHARGE ontop of ticket price. god knows how much the actual tickets will be if the service charge is £40 EDIT: ITS probably an inflated price as a sort of "reservation fee". Quote Link to comment Share on other sites More sharing options...
AngelBlue_ Posted September 9, 2019 Share Posted September 9, 2019 1 minute ago, susanananananaa said: 39€ per person? Am I reading that correctly? That's surprisingly cheap! That's not true Quote Link to comment Share on other sites More sharing options...
susanananananaa Posted September 9, 2019 Share Posted September 9, 2019 Just now, DrBare said: Thats the SERVICE CHARGE ontop of ticket price. god knows how much the actual tickets will be if the service charge is £40 Thanks for clarifying! Damn... let's wait and see what they cost tomorrow. Quote Link to comment Share on other sites More sharing options...
HAPPY ZOMBIE UNICORN Posted September 9, 2019 Share Posted September 9, 2019 I am looking into the Hella Mega Tour website code. I am not a javascript expert, but I can read some of it, and this should be the function controlling the authentication/login box. Short story: I think it's made in a way that it will never return anything but the error message/a page refresh. Now, this is what I understand it does, I can be offtrack so if someone has a better javascript knowledge please step in, we have a few hours before this is totally useless : r.Data.post({ <- This sends the password data to authenitcate headers: { "Content-Type": "application/json" <- This is the kind of data it needs to send }, url: n, <- This should be the url where it sends the data, but it's setted to "n", so it will never succeed data: r.JSON.stringify(a), <- This is the data it is sending success: function() { window.location.reload(true) <- This is what happens if the authentication succeed, a page refresh }, failure: function() { this._showErrorMessage(o("Please try again.")); <-This is what happens if it fails, it shows the error message this.get("contentBox").one('input[type="password"]').focus() } }, this) 1 Quote Link to comment Share on other sites More sharing options...
Ryan Posted September 9, 2019 Share Posted September 9, 2019 1 minute ago, J a c said: I am looking into the Hella Mega Tour website code. I am not a javascript expert, but I can read some of it, and this should be the function controlling the authentication/login box. Short story: I think it's made in a way that it will never return anything but the error message/a page refresh. Now, this is what I understand it does, I can be offtrack so if someone has a better javascript knowledge please step in, we have a few hours before this is totally useless : r.Data.post({ <- This sends the password data to authenitcate headers: { "Content-Type": "application/json" <- This is the kind of data it needs to send }, url: n, <- This should be the urls where it sends the data, but it's setted to "n", so it will never succeed data: r.JSON.stringify(a), <- This is the data it is sending success: function() { window.location.reload(true) <- This is what happens if the authentication succeed, a page refresh }, failure: function() { this._showErrorMessage(o("Please try again.")); <-This is what happens if it fails, it shows the error message this.get("contentBox").one('input[type="password"]').focus() } }, this) So it was designed so that people would try to get in, but never be successful because there is no actual webpage or correct password? That's fucking hilarious!! 2 Quote Link to comment Share on other sites More sharing options...
DrBare Posted September 9, 2019 Share Posted September 9, 2019 3 minutes ago, Ryan said: So it was designed so that people would try to get in, but never be successful because there is no actual webpage or correct password? That's fucking hilarious!! There is a website, but it is impossible to enter. (yet) Quote Link to comment Share on other sites More sharing options...
rev Posted September 9, 2019 Share Posted September 9, 2019 (edited) 15 minutes ago, J a c said: I am looking into the Hella Mega Tour website code. I am not a javascript expert, but I can read some of it, and this should be the function controlling the authentication/login box. Short story: I think it's made in a way that it will never return anything but the error message/a page refresh. Now, this is what I understand it does, I can be offtrack so if someone has a better javascript knowledge please step in, we have a few hours before this is totally useless : r.Data.post({ <- This sends the password data to authenitcate headers: { "Content-Type": "application/json" <- This is the kind of data it needs to send }, url: n, <- This should be the url where it sends the data, but it's setted to "n", so it will never succeed data: r.JSON.stringify(a), <- This is the data it is sending success: function() { window.location.reload(true) <- This is what happens if the authentication succeed, a page refresh }, failure: function() { this._showErrorMessage(o("Please try again.")); <-This is what happens if it fails, it shows the error message this.get("contentBox").one('input[type="password"]').focus() } }, this) If they made a dummy page that's kind of hilarious because i'm 100% wanting to crack it! Edited September 9, 2019 by rev Quote Link to comment Share on other sites More sharing options...
elephantstone Posted September 9, 2019 Share Posted September 9, 2019 1 hour ago, clusterbomb said: Definitley Huddersfield... everyone on SJM/Gigs&Tours who have done stadium tours recently have played there... Bon Jovi, Little Mix, Take That... Its happening Do you know of any more UK dates? Seems unlikely but I know Bon Jovi and Take That have played Ashton Gate in Bristol, another potential? Sorry to add to the deluge of questions! Quote Link to comment Share on other sites More sharing options...
The_real_st_jimmy Posted September 9, 2019 Share Posted September 9, 2019 Anyone have an estimated guess how much the tickets will go for? On the RevRad tour I only paid around $100 for pit tickets. I'm worried the tickets 'cause of Weezer and FOB will be more than that and I really wanna see Green Day again😖 7 hours ago, neverdone2000 said: When I saw this video all I could think was, “Why does it only have 980 views”? So when did it go private? Do they not want this to totally get out today? Oh that, and I like Billie’s head accessory. Heh, he looked adorable in it☺️ Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.