Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)TW
Posts
2
Comments
144
Joined
2 yr. ago

  • If you want to try a simpler MOBA, try Heroes of the Storm. The game does not get any love from Blizzard anymore, but out of all the MOBA's I know, it has the least minimal knowledge required to play.

  • MOBA as a genre didn't come from WC3. There were quite a lot of predecessors to DotA, both in WC3 itself and in first StarCraft, namely Aeon of Strife is believed to be the first popular MOBA custom map out there.

    Blizzard didn't decide that quirks of WC3 engine are dumb. Yes, they wanted to make a simpler MOBA, but the main reason for lack of funny stuff from WC3 is that they used Galaxy engine for the game, the same one StarCraft 2 was built upon.

    And HotS feels less complex not because of Galaxy's vs WC3's quirks (the former has plenty, too), but because of lack of gold and shop, shared experience and an actual tutorial at the beginning of the game.

  • I don't care about that, you said:

    Vivaldi was set as default in Manjaro Linux

    And it's not true.

    It was set as default for Cinnamon distribution, which is not even maintained by Manjaro developers, it's a community managed distribution.

  • So, it's default for Cinnamon distribution. That's like saying Amazon AppStore is default for Android just because some manufacturers install it by default. Consider reading the article before quoting it, please.

  • Excuse me? I switched to Manjaro with Xfce about 3 months ago, and if I wasn't high at the time and remember everything correctly, the default web browser was simply absent. Which is an excellent choice, in my opinion.

  • Well, if you stop listening to people who think it's a way to get really rich really fast (which it obviously isn't), cryptocurrencies are quite useful. International transfers are so much cheaper and easier with them.

  • As far as I know, Minecraft itself is avaliable for download publicly, you don't even need to patch it to play. You just need to supply it some fake account data and tell it to work offline.

    No official servers support, of course, but that's about it.

    The funny thing is, this mechanism came from Mojang, and at this point they can't even do anything about it. If they stop providing downloads without an account or implement some anti-piracy features, people will just use the latest official version and mod it. And it may be not even the latest one, there are tons of players on 1.7.10 and 1.12.2, just because modders love them.

    Sure, they can try and push their Bedrock version... But nobody is playing on that piece of crap.

  • I believe you can remove (default) with -disposition:stream 0 so, if you have three subtitle tracks, all marked as default, and you want only second with that mark, you'd do something like this:

    ffmpeg -i input.mkv -c copy -disposition:s:0 0 -disposition:s:2 0 output.mkv

    And if you want to mark a stream as default, you do -disposition:stream default.

  • I assume it creates some sort of save file in the current working directory?

    You may try changing the working directory via batch script, if you're on Windows.

    Make a text file, name it something like launch.bat (the actual name may be whatever you want, just make sure you leave the extention .bat) Paste this there:

     batch
        
    @echo off
    cd /d "%~dp0"
    start "" "game.exe"
    
      

    Be sure to replace game.exe with your game's .exe filename. Don't delete any double quotes, they are important.

    Put this text file near .exe file of your game, and make a shortcut of it to your desktop. You may rename a shortcut and choose an icon from your game's .exe file to make it pretty.

    After that just launch the shortcut as you normally would. If I'm correct, the game should create it's .bin file in the script directory and not in your desktop.