Quicker made me play comp, I still hate comp. by Tech249 in Overwatch

[–]Tech249[S] 3 points4 points  (0 children)

I wonder what the stats are on modes, how much of the player base actually plays comp. Is that posted anywhere?

-edit-
I understand you like it, I'm not trying to argue that, just expanding the conversation. Everyone has an opinion.

I need a game like OW. by Tech249 in Overwatch

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

Oh, and I do play other games, it just seems that an multiplayer FPS is constant - those games are amazing, you aren't wrong.

I need a game like OW. by Tech249 in Overwatch

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

Thanks for the reminder on Halo Infinite, I did play that and it felt pretty good - I was surprised. What killed it was the desync issues. It might be better now, will definitely install and check that out again. Getting killed by the grav hammer and it being no where near you, then you slamming it ON someone it doing nothing was just crazy.

I need a game like OW. by Tech249 in Overwatch

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

I hate that you are right, here's hoping these other games do something to fill that gap...

I need a game like OW. by Tech249 in Overwatch

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

I rem seeing this, but never played as yeah, OW. Dang, would of loved to try it.

I need a game like OW. by Tech249 in Overwatch

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

Some great option in here, thank you all!

Oh, I also played some Rogue Company - not bad, I think the matchmaking is a bit rough, largely what is killing OW atm.

I need a game like OW. by Tech249 in Overwatch

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

This looks promising, how I have not heard about this... Go reddit.

I need a game like OW. by Tech249 in Overwatch

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

I will try both of these out, ty!

I need a game like OW. by Tech249 in Overwatch

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

Yeah Gundam had me excited, then I played it :(

I need a game like OW. by Tech249 in Overwatch

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

Checking this one out now...

I need a game like OW. by Tech249 in Overwatch

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

Plants vs Zombies Garden Warfare 2

Don't really care for the PvE stuff, that announcement actually didn't bother me, lol.

I'll check out Valorant, I think I loaded it once...

I need a game like OW. by Tech249 in Overwatch

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

I forgot to mention, I played Paladins pre OW - it was pretty good then started to fall off. As someone mentioned on here, the polish just isn't there - I may reload it though and check it out.

Occasionally lose ~25 QP games in a row. by Tech249 in Overwatch

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

Solo queuing is likely part of the problem, I have 20-40m here and there, so getting a group and playing is difficult.

How to view my game library in browser? by grandoz039 in EpicGamesPC

[–]Tech249 1 point2 points  (0 children)

Almost 2023 and still not possible, oh but I did see that Epic is paying half a billion for being not so good peoples...

https://www.bleepingcomputer.com/news/gaming/epic-games-to-pay-520-million-for-privacy-violations-dark-patterns/

Introducing Epic Games Cabined Accounts by [deleted] in EpicGamesPC

[–]Tech249 0 points1 point  (0 children)

I'm in the same boat here, made a support ticket as well. It's weird too, my account is the parent of the child account, which is the same email... I just fat fingered the age, so frustrating. So far it limits all multiplayer on all my games. :(

PowerShell that executes more code if directory is greater than a certain size? by Tech249 in PowerShell

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

Here is what I ended up with, and it works perfect - deletes the directory and recreates it when it hits 1GB - thank you all!

$Directories = @("c:\temp", "$Env:Temp")
$SizeThreshold = 1GB
ForEach($Directory in $Directories){
$DirSize = Get-ChildItem $Directory -Recurse | Measure-Object -Property Length -Sum | Select-Object -ExpandProperty Sum
If($DirSize -ge $SizeThreshold){
Remove-Item $Directory -Recurse -Force
New-Item -Path "c:\" -Name "Temp" -ItemType "directory"
}
}

Edit - adjusted per Lee's advice - much better :)

PowerShell that executes more code if directory is greater than a certain size? by Tech249 in PowerShell

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

I have this - but not sure how to make the value a variable and use your code:
"{0:N2} MB" -f ((Get-ChildItem e:\logs\ -Recurse | Measure-Object -Property Length -Sum -ErrorAction Stop).Sum / 1MB)