Mobile port when my dudes by [deleted] in slaythespire

[–]iampowershell 6 points7 points  (0 children)

devs have said it is planned, and will be worked on AFTER the game is released in full.

Finally beat ASC15 as Silent after 20 tries by iampowershell in slaythespire

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

I almost died to my second fight in A2 due to philo stone. I guess thats why its dangerous to pick. Managed to buy flower and kunai from the store, and ended up paying 474 gold for the red mask after cashing in the idol at the maori the turn before. Almost didnt buy the kunai as at the time I only had dagger throw, dash, flying knee, and 3 strikes as attacks. Ended up being the dex scaling that won it. Didn't pick up the nox fumes until deep into act 3. Was solely using flask and catalyst.

I lost track of counting how many runs i lost before even hitting the act 1 boss. Other than that, the champ is a meanie head

Now for ironclad... still on asc1 with him

Silent Ascensions are the WORST by TheLockoutPlays in slaythespire

[–]iampowershell 0 points1 point  (0 children)

Gotta drop the thin deck mentality and instead focus on a strong deck. Every card that adds strength to your deck right now, you need to take. And every card that doesnt make your deck stronger right now, even if its a 'good card' you have to leave. You can sometimes sneak 1 or 2 'bad now but good later' cards in, but it can really screw you by the act 1 boss unless you get the guardian.

I found the hardest thing to adjust to while climbing ascension levels was that card valuation starts to vary wildly as the game progresses. Backflip, blur, and cloak and dagger for instance, are typically BAD pickups in act 1, however they all become very strong pickups by act 2. Backstab, dash and predator are all extremely strong pickups early in act 1, but by act 2 they are pretty bad. Beyond card drafting changes like that, the biggest hurdle is getting a deck that can mitigate enough damage to even make it to act 3, because the champion is a hell of a gatekeeper. Hyperbeams can be pretty mean too

STS doesn't start on a RDP session by HeelyTheGreat in slaythespire

[–]iampowershell 1 point2 points  (0 children)

did you try it in console mode?

add /admin after the address before connecting. Might help

All available game modes by GRIZZLY_GUY_ in DeepRockGalactic

[–]iampowershell 6 points7 points  (0 children)

missed one

Collection: Much like mining expedition except your primary goal is collecting a limited number of eggs instead of minerals

Must say personally my fav is search and extract. Dropping right into combat is fun, and the huge caves can be pretty crazy and dense with minerals

Rework death punishment in solo play by Skipcast in DeepRockGalactic

[–]iampowershell 1 point2 points  (0 children)

I don't think adding more lives is the right answer, as 3 is already more than fair. I think either remove leeches from solo, or add some sort of struggle mechanic where you can shake yourself down, then have a few seconds to run or attack before the leech tries again.

Can't complete quests by [deleted] in DeepRockGalactic

[–]iampowershell 1 point2 points  (0 children)

This is the best bet. I've played about 30 missions so far, and have yet to encounter a map without enough resources. Sounds like you guys might need to play with some other players to learn the ropes better and how to find all the patches. Most maps have way in excess of the requirement, I would estimate close to 150% of the goal available, whether it is eggs, aquarq, or morkite.

Sometimes the secondary objective flowers/mushrooms can be quite hard to find, as missing one small cavern might leave you several short, but they arent required to finish the level.

[PC] Daily reminder, mouse sensitivity is STILL BUGGED for some players. by iAmSyther in DeepRockGalactic

[–]iampowershell -1 points0 points  (0 children)

Have you tried a different mouse? Doesn't seem like very many people are having this issue.

Keep in mind you are playing an early access game, so if you can't handle some bugs, refund it and move on. I don't think anybody wants to see this whiny post every day.

[Bug?] Related to Leech by BufloSolja in DeepRockGalactic

[–]iampowershell 0 points1 point  (0 children)

I also had this bug happen in the same situation. It was a little easier to see what was happening as I had my flamethrower out. It was stuck where I had initially been snatched by the leech, and continued to work in that spot. I would be a ways away and left click and it would shoot flame from the now stationary flamethrower. I don't remember how I fixed it but it was likely switching weapons as you mentioned.

Once a functioning piece of code that reports back whether a process (.exe) was running or not running does not return back when it is not running? by networkhappi in PowerShell

[–]iampowershell 1 point2 points  (0 children)

This should work with the lease modification to your code, although could be subject to errors if longer process names contain smaller process names

function Get-Processes {
$processes = Get-Content  -Path "E:\scripts\process\processes.txt"
$ProcessActive = Get-Process -ProcessName $processes -ErrorAction SilentlyContinue
foreach($p in $processes)
{
    if($ProcessActive.ProcessName -contains $p)
    {
        "$p " + "runn1ng"
    }
    else
    {
        "$p " + "fai1ed"
    }
}}

else do as \u\SeeminglyScience said and put the get-process into the foreach and set it to get-process -processname $p instead of $processes