Sayabi
Country: Hong Kong
Registered: April 8, 2016
Last post: July 25, 2020 at 3:44 PM
Posts: 297
1 2 3 4 5 6

We got tokens though. It's not all for nothing.

posted about 6 years ago

!tmobilemvp Fleta

posted about 6 years ago

Great post poi, legend of the T2/T3 scene!

posted about 6 years ago

:candle: 123

We shall carry the FlagMeta legacy!

posted about 6 years ago

I've been looking very forward to the results, thanks a lot CamRa for running the survey and for the write-up, great job!

posted about 6 years ago

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.

posted about 6 years ago

RUNAWAY FIGHTING

posted about 6 years ago

I TOLD YOU THIS WAS GOING TO BE AN AWESOME MATCH

posted about 6 years ago

You have the best Twitter bio ever

posted about 6 years ago

uninstalling it

posted about 6 years ago

the Uprising PvE event from April 2017

Oh yessssss, I missed the Blackwatch Genji last time, now's the time to get it!

posted about 6 years ago

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

posted about 6 years ago

Great job enigma! Thanks a lot!

posted about 6 years ago

Congratulations!

posted about 6 years ago

Happy holidays everyone~

posted about 6 years ago

I want Bren and Sideshow to return, please Blizz make it happen!

posted about 6 years ago

Beware, I had the same but had to remove it, it kept activating on its own during Steam sales.

posted about 6 years ago

It was me, and the thread is here: https://www.over.gg/6770/temporary-spoiler-buttons

posted about 6 years ago

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.

posted about 6 years ago

Nooooooo not again ;-;

posted about 6 years ago

My favorite team vs. my second favorite team... I'm gonna enjoy watching this so much holy shit. Can't wait.

posted about 6 years ago

That's on the todo list! I'm gonna look into it tomorrow or this weekend

posted about 6 years ago

It's actually the name Clickbait gave to it I didn't feel like renaming it

posted about 6 years ago

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!

How to install

  • Install the extension Tampermonkey for whatever browser you're using.
  • Create a new script.
  • Add the code given at the end of the post.

To do

  • Display scores of Upcoming Matches and Completed Matches separately.
  • Add a "Hide" button? Like toggling scores? I don't know if that would be useful to you guys, please tell me.
  • Clean the code (I'm so sorry it's that messy)
  • Make extensions? Honestly that could be a fun exercise for me to learn how to do extensions for different browsers.
  • Add spoilers in tournament pages

Credits

  • Clickbait for the v0.1 of the script
  • enigma for making such an awesome website with such a clean code (honestly, it's so clean I've only got one remark about it)
  • Myself (nei) for typing this goddamn stupid ugly code while watching GLA vs. LDN

Changelog

  • 0.3 (latest): Adds a button to show the matches on homepage, also adding some styling to the buttons
  • 0.2: Hides the scores on match pages with a button to show them as well as maps results
  • 0.1: Hides the scores on the homepage

Code

// ==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.
    }
})();
posted about 6 years ago

Good idea I'll do it really quick and update my script

posted about 6 years ago

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

posted about 6 years ago

No, it's not you. Seeing such talent wasted makes me sad as well :(

posted about 6 years ago

Indeed, thanks!

posted about 6 years ago

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.

posted about 6 years ago

GuardiaN moving from Ukraine to Korea and from CS:GO to Overwatch, what a dedication for the game he truly loves

posted about 6 years ago

Predictions:

  1. Spitfire
  2. NYXL
  3. Fuel
  4. Dynasty
  5. Outlaws
  6. Valiant
  7. Fusion
  8. Dragons
  9. Gladiators
  10. Mayhem
  11. Shock
  12. Uprising

Now my favorite teams in order, and why I'm rooting (or not) for them:

  1. Fusion: ShaDowBurn fangirl btw, but also a big fan of Carpe, Boombox and Joemeister. Also really happy that Poko and Fragi got picked from Contenders. Finally I just happen to love physics so special mention to the name and logo.
  2. Outlaws: My TF2 boys Clockwork and Muma are in there! The FNRGFE squad is awesome, and their pickups are great too: Linkzr is one of my favorite players and streamers, Mendo is super nice, and SPREE and Rawkus have proven to be reliable players. Their YouTube channel is dope too (I love the "How well do you know your teammates" videos tbh). The logo, name and colors are awesome.
  3. Excelsior: Saebyeolbe, Pine and Ark are just outstanding and really nice to watch playing. I also can't wait to see Fl0w3r play. NY is also a really cool city. The whole branding of the team sucks though.
  4. Fuel: Basically the All-Star lineup of the League since they picked Seagull and xQc up, but out of all of them, Mickie definitely is my favorite, and Effect is 2nd only by a small margin. The rest of the cast is also really really cool, I wasn't expecting the custa pickup but I'm happy with it, he's a great player. Their team colors and logo are awesome, among my favorite in the League.
  5. Valiant: Immortals + uNKOE, SoOn and numlocked, seems like a great lineup to me. The last 3 additions are awesome (especially glad uNKOE and SoOn got picked up), and I particularly like Agilities. Branding is cool though I don't like the green that much, but it's really personal preference.
  6. Dynasty: With the addition of the 4 new DPS, I think they will achieve great things. I'm a big fan of Fleta and Bunny especially (and of course, the LH squad too). Their branding is probably the 2nd best in the League, with gold and black being sober but incredibly classy and stylish colors, especially together.
  7. Spitfire: GC Busan + C9 Kongdoo? That's a stacked mixup if I've ever seen one. I'm still a bit mad at GC Busan for winning over my boys RunAway, but heh, that's how things go, and I think overall they'll do amazingly well. Their branding is cool but not outstanding.
  8. Gladiators: Probably the roster I was the most surprised with (I wasn't expecting a mixup like this), but it looks really promising. Not particularly a big fan of any of the players though which is why they're so low. Their branding is great and their communication is on point.
  9. Dragons: I don't know any of those players tbh, but that's because I haven't been following anything from the chinese OW scene (except they all spam "666666666666" when something cool happens), which is why they're so low in my ranking. I'm just asking to be surprised though. Their branding is, in my opinion, the best in the League: name is simple but efficient, logo is great and colors (red and gold) are royal.
  10. Shock: Probably one of the most hated teams in the League, and I don't get why. The players look cool overall and I'm excited to see how they'll perform. Branding is cool yet I still don't get why "Shock"?????? Whatever.
  11. Mayhem: Honestly, I'm not a particularly big fan of the Misfits to begin with. If they perform, cool for them, but otherwise I won't care much. But their branding, oh god... It's the WORSE. Seriously, the logo is just too plain, and the colors just make the skins look like McDonald's toys. Red and yellow is only cool when red is dominant and yellow secondary, not the other way around. The only cool point about this is that I hope we'll get a McMcCree skin.
  12. Uprising: Sorry but only a few of those names ring only a small bell in my head, and their branding is also quite awful. Hence why they're my least favorite team.

(I think I never wrote this much on an over.gg post)

Discuss!

posted about 6 years ago

I joined, but didn't receive the confirmation email, RIP

posted about 6 years ago

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.

posted about 6 years ago

Really curious to see how the new Lunatic-Hai will perform tbh.

posted about 6 years ago

🕯

posted about 6 years ago

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.

posted about 6 years ago

RUNAWAY FIGHTING

I hope I'll be awake in time for this one!

posted about 6 years ago

RUNAWAY FIGHTING

Maybe we'll see Lucid play?

posted about 6 years ago

Big if true

posted about 6 years ago

Actually I'm on EU servers but I got low Diamond! I'll go for the EU team instead hahaha

posted about 6 years ago

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

posted about 6 years ago

Hey that sounds cool, can I join or do I need at least a star?

posted about 6 years ago

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.

posted about 6 years ago

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.

posted about 6 years ago

Happy Thanksgiving from EU, enjoy the cool meals and be nice to your family and friends everyone

posted about 6 years ago

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!

posted about 6 years ago

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!

posted about 6 years ago

fLAGs??? (sorry)

posted about 6 years ago
1 2 3 4 5 6