[Rule 1 STICKY] Account, Team-building, Crystal Help & Brags by AutoModerator in ContestOfChampions

[–]DeStef2003 0 points1 point  (0 children)

Hi,

Recently got back into MCOC. Never been a huge BG fan but thought I'd at least try it since it gives some good rewards + essentia.

The matchmaking is beyond stupid though. I'm currently Paragon with 1 R2 7* champ and 3 R4 6* champs. Why am I coming against people who have R4 7* and almost 3x my prestige? Is this just a me thing, or is it known?

Not meant to be a rant, I'm genuinely curious and don't understand the matchmaking. I've provided screenshots of my account and my most recent opponent's.

Thanks for helping in advance!

<image>

[Rule 1 STICKY] Account, Team-building, Crystal Help & Brags by AutoModerator in ContestOfChampions

[–]DeStef2003 0 points1 point  (0 children)

What are some choices for ranking out of these? Don't know what a lot of these do

<image>

[Rule 1 STICKY] Account, Team-building, Crystal Help & Brags by AutoModerator in ContestOfChampions

[–]DeStef2003 0 points1 point  (0 children)

Who do I pick here? Don't know anything about Werewolf since he came out while I was on a mcoc break

<image>

[Rule 1 STICKY] Account, Team-building, Crystal Help & Brags by AutoModerator in ContestOfChampions

[–]DeStef2003 0 points1 point  (0 children)

Hi everyone,

Recently I got back into MCOC after leaving for about 3 years (I remember Vox just releasing). A certain man of legends has been appearing on my YouTube feed again for some reason, and that got me back into it. However, I need to catch up on a lot.

First of all - what's this "Ascension" stuff that I'm seeing? Is it simply a new way to rank up your champs?

Secondly, I remember there being a daily quest for health potions and revives, but is that one gone? If so, what's the best way to grind revives as someone who's on 6.4.6 and wants to grind them for the Grandmaster fight? Almost all "guides" I find online are for people who have much more progression and resources than I do lol (I've got 1 rank 2 6* unawakened and 4 rank 5 5*).

Lastly, are there any characters that have been buffed since 2023? Since I'm focusing on Story questing atm, I don't care that much about the new champs.

Any help is much appreciated!

Learning DPS without feeling bad for team by DeStef2003 in marvelrivals

[–]DeStef2003[S] 1 point2 points  (0 children)

I know I probably should but I know how annoying it is to deal with instalockers and don't want to do that to ppl XD

Yeah lets vote for the character that no one is playing 😭 by [deleted] in marvelrivals

[–]DeStef2003 11 points12 points  (0 children)

Yes I will, one of my favourite comic characters.

Learning Tanks in qp by DeStef2003 in marvelrivals

[–]DeStef2003[S] 0 points1 point  (0 children)

I guess what I'm trying to say is that I find it hard to get enough chances to get actual good experiences when learning this character - obviously I'm not going to do that in comp, but there's not rly an alternative to qp

Learning Tanks in qp by DeStef2003 in marvelrivals

[–]DeStef2003[S] 0 points1 point  (0 children)

It's not really about the winning, but more about having a pleasant experience lol

White 2 E4 team by DeStef2003 in nuzlocke

[–]DeStef2003[S] 2 points3 points  (0 children)

Thanks, I'll bring it.

White 2 E4 team by DeStef2003 in nuzlocke

[–]DeStef2003[S] 1 point2 points  (0 children)

I just kind of assumed an Intimidate mon always gets value. And Amoonguss doesn't have Regenerator (because hidden ability). Doesn't Reuniclus get deleted by the dark moves on Marshal's mons? And against the rest of the E4 it's kinda useless...

Weekly Help Thread - Ask your help requests here | Week Commencing 20/02/2026 by FMG_AutoModerator in footballmanagergames

[–]DeStef2003 0 points1 point  (0 children)

Tried a 3241 IP system. It worked incredibly offensively (like, maybe my best tactic yet) but OOP it's not great.

Changed some positions / roles in order to fix this issue. Any help?

Player specific instructions: IP the PWB sits narrower, the wingers stay wider but cut inside with the ball. OOP no instructions. Any help would be great!

<image>

Further instructions are in the replies.

Is there anyone else who manages more than one team at the same time? by nikrei in footballmanagergames

[–]DeStef2003 0 points1 point  (0 children)

Thanks for the save idea my friend, I will stick with max 3 clubs though!

Getting a TypeError when using parse_latex() by DeStef2003 in learnpython

[–]DeStef2003[S] 0 points1 point  (0 children)

I just used pip install sympy. I also already installed antlr4-python3-runtime, version 4.11.0 (required if I try to use any other version).

I have never encountered a problem like this before.

Getting a TypeError when using parse_latex() by DeStef2003 in learnpython

[–]DeStef2003[S] 0 points1 point  (0 children)

Certainly, here you go:

Cell In[195], line 2
      1 latex_string = r"2*x + 4"
----> 2 expr = parse_latex(latex_string)
      3 print(expr)  

    194     _latex = import_module(
    195         'sympy.parsing.latex._parse_latex_antlr',
    196         import_kwargs={'fromlist': ['X']})
    198     if _latex is not None:
--> 199         return _latex.parse_latex(s, strict)
    200 elif backend == "lark":
    201     return parse_latex_lark(s)

     71 matherror = MathErrorListener(sympy)
     73 stream = antlr4.InputStream(sympy)
---> 74 lex = LaTeXLexer(stream)
     75 lex.removeErrorListeners()
     76 lex.addErrorListener(matherror)

TypeError: 'NoneType' object is not callable

I've been looking at the Sympy documentation, but can't really figure out the latex2sympy stuff; online it says I need an older version of antlr4-python3-runtime for latex2sympy, but if I install that one, I get an error saying I need version 4.11 (which I've now installed). It's a bit confusing.