We got tokens though. It's not all for nothing.
Country: | Hong Kong |
Registered: | April 8, 2016 |
Last post: | July 25, 2020 at 3:44 PM |
Posts: | 297 |
We got tokens though. It's not all for nothing.
Great post poi, legend of the T2/T3 scene!
:candle: 123
We shall carry the FlagMeta legacy!
I've been looking very forward to the results, thanks a lot CamRa for running the survey and for the write-up, great job!
Not only it did live up to my expectations (was not expecting much tbh), it actually blew them up. I'm now super hype to follow esports as much as I did before, back when I was super into the TF2 scene. The matches were awesome and my boys from Philly made me even more happy to be a Fusion fan given their awesome performance so far.
RUNAWAY FIGHTING
I TOLD YOU THIS WAS GOING TO BE AN AWESOME MATCH
You have the best Twitter bio ever
uninstalling it
the Uprising PvE event from April 2017
Oh yessssss, I missed the Blackwatch Genji last time, now's the time to get it!
God damn poi with the amazing report once again
BenBest and Hidan in the same team jeff bless I'm gonna root for them I think
I want Bren and Sideshow to return, please Blizz make it happen!
Beware, I had the same but had to remove it, it kept activating on its own during Steam sales.
It was me, and the thread is here: https://www.over.gg/6770/temporary-spoiler-buttons
Perhaps they'd try to get Rawkus and Carpe before Fusion and Outlaws got them?
I don't think so, ShaDowBurn and Carpe are starting to get well known as a duo and work great together so if you'd want one you'd probably also like to get the other. Not sure about Rawkus though.
Also for the Paris team, it was entirely possible to make an all french roster since ex-Rogue has a huge reputation in France (which is something that pisses me off: in a lot of esports I feel like french always isolate themselves from the rest of the scene, often creating their own local scenes and even sometimes creating their own closed scene) already so that would make local fans really happy. I definitely don't know why no one did it, honestly, you had the players, the results and both local and global fanbase. My guess is that Rogue hold onto their roster for too long trying desperately to get a spot in the scene (and they would probably have bought Las Vegas which would've been a shame) so no one could/wanted to buy the whole roster, which is why it fell apart.
My favorite team vs. my second favorite team... I'm gonna enjoy watching this so much holy shit. Can't wait.
That's on the todo list! I'm gonna look into it tomorrow or this weekend
It's actually the name Clickbait gave to it I didn't feel like renaming it
So because it has been asked a lot, and that Clickbait made a quick fix, and I enhanced it, and I actually enhanced it a lot, I decided to make a thread about it so people could give feedback easier.
I'm glad to introduce you: (temporary) Over.gg scores spoilers buttons!
Note: The scores will take some time before getting hidden (only some milliseconds) so spoilers can still happen, so just don't look at the score areas before the end of the page loading!
// ==UserScript==
// @name Stop Spoiling Me Daddy v0.3
// @namespace https://www.over.gg/user/nei
// @version 0.3
// @description Hides scores on over.gg and adds a button to show them
// @author nei (based on Clickbait's one)
// @match https://www.over.gg/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
if($('.h-match-team-score').length) // Checks if we're on the homepage
{
$('.h-match-team-score').hide(); // Hides the score on homepage
$('.wf-module-header:contains("upcoming matches")').parent().before('<input type="button" value="SHOW SCORES" class="spoiler-button" onclick="$(\'.spoiler-button\').hide(); $(\'.h-match-team-score:not(:contains(no_score))\').show();" style="color:#888; font-family: \'Roboto\', sans-serif; font-size: 10px; width: 240px; height: 25px; margin-bottom:5px;">'); // Adds button to toggle score on home page's matches
}
if($('.match-header-vs-score').length) // Checks if the score on the match page is displayed (i.e. if the match is ongoing/over). We won't hide it nor show the spoiler button if it isn't.
{
$('.match-header-vs-score').hide(); // Hides the score on match page
$('.game-switch-map').hide(); // Hides the map name. If there is "N/A", you can guess the score in a way, so I removed it. Yes, I am THAT bored.
$('.game-stats').hide(); // Hides the map results
$('.match-header-vs-note').first().after('<input type="button" value="SHOW" class="spoiler-button" onclick="$(\'.spoiler-button\').hide(); $(\'.game-switch-map\').show(); $(\'.game-stats\').show(); $(\'.match-header-vs-score\').show();" style="color:#888; font-family: \'Roboto\', sans-serif; font-size: 10px; margin:11px;">'); // Adds the "Show button" on match page. And yes, the way I add it is ugly.
}
})();
Good idea I'll do it really quick and update my script
Awesome job! Thanks a lot!
However, I was bored while waiting for Gladiators vs Spitfire, so I got to work and I enhanced it!
It's been a while I haven't touched JS, and god I forgot how much I hated JS. I've done this in such a dirty way, but I'm too lazy to do it correctly tbh.
It adds a spoiler button on the match pages and you have to click it to show the score and the maps results. Takes some time though so the score and results briefly appears, I can't fix this. All I can suggest is don't look at that area while the page loads.
Also, it won't show the "Show" button if there is the match isn't live/over (basically, if no score is displayed).
Here's the code:
// ==UserScript==
// @name Stop Spoiling Me Daddy v0.2
// @namespace https://www.over.gg/user/nei
// @version 0.2
// @description Hides scores on the over.gg homepage and adds a button to show it on match pages
// @author nei (based on Clickbait's one)
// @match https://www.over.gg/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('.h-match-team-score').hide(); // Hides the score on homepage
if($('.match-header-vs-score').length) // Checks if the score on the match page is displayed (i.e. if the match is ongoing/over). We won't hide it nor show the spoiler button if it isn't.
{
$('.match-header-vs-score').hide(); // Hides the score on match page
$('.game-switch-map').hide(); // Hides the map name. If there is "N/A", you can guess the score in a way, so I removed it. Yes, I am THAT bored.
$('.game-stats').hide(); // Hides the map results
$('.match-header-vs-note').first().after('<input type="button" value="Show" id="spoiler-button" onclick="$(\'#spoiler-button\').hide(); $(\'.game-switch-map\').show(); $(\'.game-stats\').show(); $(\'.match-header-vs-score\').show();">'); // Adds the "Show button" on match page. And yes, the way I add it is ugly.
}
})();
EDIT: added hiding map results as well
EDIT 2: god I'm such a nerd I added hiding the map names as well because seeing "N/A" makes the score easily guessable and also because I'm SO BORED
EDIT 3: I made a thread for it: https://www.over.gg/6770/temporary-spoiler-buttons
No, it's not you. Seeing such talent wasted makes me sad as well :(
Uprising with the team of literal no-names higher ranked than Gladiators and Fusion 🤔
NYXL in 7th 🤔 🤔 🤔
That's gotta be the biggest troll of this thread.
RUNAWAY FIGHTING
GuardiaN moving from Ukraine to Korea and from CS:GO to Overwatch, what a dedication for the game he truly loves
Predictions:
Now my favorite teams in order, and why I'm rooting (or not) for them:
(I think I never wrote this much on an over.gg post)
Discuss!
I joined, but didn't receive the confirmation email, RIP
Just saying but have you guys even thought the issue was not getting 6 players but the 6 correct players? Imagine if you only have 4 supports, 2 tanks and no DPS so no ShaDowBurn nor Carpe who are the star DPS players, would you still go with it and take the risk of having a worst reputation than with not going at all?
Really sad though, I was rooting for them and excited to se them play tbh.
Really curious to see how the new Lunatic-Hai will perform tbh.
Looks dope but there's someone missing there, it's only 5 people. I think Unfixed or Gods are in and Hafficool is the flex, so something like:
DPS: Zombs and Unfixed
Tank: FCTFCTN
Flex: Hafficool
Supports: Greyy and Forsak3n
Or swapping zombs and Hafficool.
RUNAWAY FIGHTING
I hope I'll be awake in time for this one!
RUNAWAY FIGHTING
Maybe we'll see Lucid play?
Actually I'm on EU servers but I got low Diamond! I'll go for the EU team instead hahaha
I'd love to be in! I can play mainly projectile DPS (Genji, Junkrat, Pharah, also Doomfist even though he's kinda weak), Widowmaker and Tracer. I can also play Flex Support as Ana, Zenyatta and I need to train a bit my Moira too. I played in several teams back in TF2 and in Overwatch too, but I'm looking for something less grind-y and more of a "we just hang out and have fun" team :D
Hey that sounds cool, can I join or do I need at least a star?
Such a shame, APEX had amazing production value with hyping intros perfectly suited, especially for the Korean audiences. Hope Blizzard can pull it to that level or will let OGN do their OGN stuff, otherwise a lot of people will be disappointed.
DPS: aKm, Architect, Buds, AKTM
Flex: Emongg, zappis
Tank: KnOxXx, FCTFCTN
Support: Hidan, Roolf, Adam, CLAIRE
Bring more love to the japanese World Cup underdogs, they deserve it! I don't know if they're proficient enough in english though, that's the only thing I'm concerned about.
Happy Thanksgiving from EU, enjoy the cool meals and be nice to your family and friends everyone
Remappable buttons is something I'm also looking forward a lot, more than the shape. So I think I'm gonna go with the Rival 310. Thanks!
Thanks for all your suggestions! Apparently Zowie mice are really popular out there hahaha. The SteelSeries Rival 310 caught my eye too though, so I'm not sure for which one I'm gonna go.
I got a look at the Zowies and I think the EC2-B looks really cool. For now I'm hesitating between this one and the Rival 310.
I'm not in a hurry though, so I'll take more suggestions if more come before taking my decision. Thanks again for you help so far!
fLAGs??? (sorry)