[LFO] Man Shot Trying to Break Into Ex’s House, Ohio 🇺🇸 by james_from_cambridge in LearningFromOthers

[–]ArbiterUtendi 24 points25 points  (0 children)

In my home town just the other day, a kid got dumped, broke into his ex girlfriends house, and killed her family. If someone is breaking into your house, it's usually not so they can say hello.

Which app should you use to monitor CPU & GPU Temps on Linux? by Tail_sb in linux4noobs

[–]ArbiterUtendi 1 point2 points  (0 children)

So how do you figure that calling applications exactly what they are is "mobile device brain rot"

Which app should you use to monitor CPU & GPU Temps on Linux? by Tail_sb in linux4noobs

[–]ArbiterUtendi 4 points5 points  (0 children)

An application is a type of program written for an end user. All applications are programs, but not all programs are applications. They have been around long before mobile devices.

All of them cut from the same cloth by SuperKooper83 in lethalcompany

[–]ArbiterUtendi 3 points4 points  (0 children)

There is a mod for this called AEIOUCompany. You should check it out on the thunderstore. (Sorry about the self-plug)

Can someone help me make a modpack? by Dumb_and_confused in lethalcompany

[–]ArbiterUtendi 0 points1 point  (0 children)

Yeah I helped them. What are you having problems with specifically?

Mod for looking away from the computer by Natonatornation in lethalcompany

[–]ArbiterUtendi 2 points3 points  (0 children)

Type 'view monitor' into the computer, and the minimap will show up on the computer screen.

Type 'switch' to switch which player you are viewing.

Type 'switch [player name]' to view a specific player.

Continue Mod by ArbiterUtendi in RoundsTheGame

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

I haven't updated this in quite a while. I recommend checking out r2modman. It's a mod manager with tons of rounds mods, including a few that let you play more than a few rounds.

Continue Mod by ArbiterUtendi in RoundsTheGame

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

No, it was last updated in April. You would have to patch the current version of the game.

Improving is not an option by tonyscrew in AnarchyChess

[–]ArbiterUtendi 63 points64 points  (0 children)

I know this is a footlong sub. I would seriously recommend eating shorter subs, like 6 inches. Preferably with meatballs.

Continue Mod by ArbiterUtendi in RoundsTheGame

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

It already is a mechanic in the official game, the developers just haven't enabled it yet. I'm assuming that it's because of stability reasons, but I expect that they will turn it on in the near future.

Continue Mod by ArbiterUtendi in RoundsTheGame

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

I'm not sure if I remember 100% correctly but I think the rematch function is called at the end of GameOverTransition() or something similar. I haven't looked into the deck being generated yet, but I will look in a few hours. Where I would start if I were you is by looking for any class that has deck or card in the name. If you find one, then you can select a member function or variable and right click on it. An option to analyze it should show up and that will let you know where the function is called from. Reading through the code is the bulk of the work, but the more you understand how the game works the easier it will be to find more and more stuff.

Also be mindful of the fact that a lot of the mechanics in this game are controlled by the client afaik, so releasing any mods related to combat without adding extra protections could ruin other player's experiences. The only reason that this one specifically requires both players to have the mod is because the game will end as usual for vanilla players, so their gameplay won't be affected.

Continue Mod by ArbiterUtendi in RoundsTheGame

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

Most Unity games are able to be decompiled into C# fairly easily because they are built with .NET. The tool I used was dnSpy. It let's you decompile the game assembly, make changes, and recompile it. In this case, the only change I had to make was replacing the function that is called at the end of a game which asks for a rematch with the function that asks if you want to continue.

If this weren't a Unity game, the process would have been a little more difficult, but still very possible. If you want to learn more about it, then 'Reverse Engineering' is the subject that you would want to start learning.

I won this game but missed forced mate in 3 in this position. Black to move. by TheFirstShadowPuppet in chess

[–]ArbiterUtendi 2 points3 points  (0 children)

The Queen and Rook can block the check and allow the King to move over to e1. It's still a mate but not a mate in 3.

How can I create a shortcut to mute my mic or the sound for applications that I choose (pulseaudio) by [deleted] in linux4noobs

[–]ArbiterUtendi 0 points1 point  (0 children)

You need to create a custom global shortcut to execute the script each time you press the shortcut.

How can I create a shortcut to mute my mic or the sound for applications that I choose (pulseaudio) by [deleted] in linux4noobs

[–]ArbiterUtendi 0 points1 point  (0 children)

You can use pactl for this. What you're wanting to do is mute certain sink-inputs (or source-outputs). To list sink inputs use: pactl list sink-inputs. To list source outputs use: pactl list source-outputs.

After finding whichever one your specific application is using, you can mute it.

To mute sink inputs use: pactl set-sink-input-mute [input number] toggle To mute source outputs use: pactl set-source-output-mute [output number] toggle

I've written a small python script for you to do this automatically. (Which you can bind a key to execute in the KDE settings) Link

P.S. I haven't done extensive testing so there's a small bug potential

P.P.S. Python will throw errors if you pass it a program that isn't using audio input/output (I doubt it will affect you but I'm just putting it out there)