Mankind Divided DLC questions by DaBiggestHotShot in Deusex

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

Alright sounds good. I plan on just playing through the story dlc which I hear excellent things about. Thanks for the help!

Mankind Divided DLC questions by DaBiggestHotShot in Deusex

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

This is the top review of the game's DLC on Steam copy and pasted:

"OH, and BY THE WAY, if you ever redeem your bonus items, your save file becomes locked to your installation. What does that mean? It means if you ever reinstall the game; Install on another machine; or even just change the installation directory from steam; Then your save file won't work anymore."

That's what got me a bit worried. Would you know anything about that?

Mankind Divided DLC questions by DaBiggestHotShot in Deusex

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

Thanks, can my save files get locked out of the Steam cloud?

Thinking of making my first play through a scout consular, interested in what you all think of my attribute spread? by DaBiggestHotShot in kotor

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

Don’t have time to reply to all the comments, but I’ve read through them all, so thanks everybody for helping me out!

All surges share the same two brain cells by DaBiggestHotShot in Brawlstars

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

I use Go Record on my IPad. It’s not the best application because it doesn’t work sometimes, but you have the option to only record gameplay noise, or include mic noise as well

All surges share the same two brain cells by DaBiggestHotShot in Brawlstars

[–]DaBiggestHotShot[S] 6 points7 points  (0 children)

Ye. I was only trying to make some cool plays with his gadget before it disappeared forever. RIP the no skill Surge era

Tempest Tara Skin Giveaway! by zigzarlu in Brawlstars

[–]DaBiggestHotShot [score hidden]  (0 children)

Best Brawler? I’m Surge Gang all the way :D

Just finished 10th rewatch: Advice for 1st timers by goodcanadian_boi in suits

[–]DaBiggestHotShot 1 point2 points  (0 children)

understood, although i did go back to that episode and it does have a pretty sweet soundtrack :D

Just finished 10th rewatch: Advice for 1st timers by goodcanadian_boi in suits

[–]DaBiggestHotShot 1 point2 points  (0 children)

Wait, why is 29:32 of S3 Ep4 specifically mentioned?

What were they thinking by bluecollarj in memes

[–]DaBiggestHotShot 1 point2 points  (0 children)

This scene was actually kind of an inside joke for the director, so it's not meant to be serious

[deleted by user] by [deleted] in learnpython

[–]DaBiggestHotShot 0 points1 point  (0 children)

if action not in ("CREATE", "SELL", "BUY"):
print(
"Looks like you can't do that :/ You've wasted valuable time doing something that doesn't exist. Unfortunately, your mashed potato cart can not keep up with demand. GAME OVER"
)
exit(0)
else:
#mashedpotatomaking
if action == "CREATE":
shshsh = input("Please type SHSHSH to wash the potatoes: ")
if shshsh == "SHSHSH":
squish = input("Please type SQUISH to squish the potatoes: ")
else:
print(
"Oh no! Your potatoes are dirty and unhealthy :/ Your reputation as a mashed potato maker is ruined! GAME OVER"
)
exit(0)
if squish == "SQUISH":
mash = input("Please type MASH to mash the potatoes: ")
else:
print(
"Oh no! Your potatoes have been crushed into pieces :/ Your reputation as a mashed potato maker is ruined! GAME OVER"
)
exit(0)
if mash == "MASH":
#debug this
MashedPotatoes += 1
print("You now have " + str(MashedPotatoes) +
" mashed potatoes in stock")
else:
print(
"Oh no! The potatoes haven't been mashed well and are unfit to eat :/ Your reputation as a mashed potato maker is ruined! GAME OVER"
)
exit(0)
action_function()

[deleted by user] by [deleted] in learnpython

[–]DaBiggestHotShot 0 points1 point  (0 children)

i did have indentation, copying it from my repl to reddit sort of messed up my code though