Sunday, August 29, 2021

Recent Questions - Arqade

Recent Questions - Arqade


What carries over into ng+?

Posted: 28 Aug 2021 07:38 PM PDT

One of the first times I played Golden Sun TLA I found a code that imported information from Golden Sun, that appeared to either be highly optimised, or potentially modded. The giveaway was that there were two Cleric Rings available, though the wiki only says it is obtainable once, and must be transferred to TLA via a code.

Can I get another one by playing a NG+ cycle?

What FIFA year is being played in this video?

Posted: 28 Aug 2021 10:22 PM PDT

In this this video Dude Perfect is playing FIFA with dunk tanks. The gameplay looks a lot different from FIFA 21, and it makes me curious: What year of FIFA are they playing?

Didn’t transfer previous PS3 account’s saved data to new account before deleting it. Is there any way to get that data back?

Posted: 28 Aug 2021 03:28 PM PDT

I created a new user account, but I did not transfer the saved data to the new account before deleting the original. Due to this machine being used before I purchased it, the account was one the original owner created. I don't know how to get back into the original account. I can still see the data saved in the "Saved Data Utility," but when I try to copy it to my portable hard disk, it says I'm unable to transfer the files.

Is there any way to get that data back?

Which of the games allow picking the father's age and how low can it go? Also how do I view his age?

Posted: 28 Aug 2021 12:25 PM PDT

I've heard that in the Princess Maker games, you can make the father really young, I think 18 is the youngest he can be? I'm not sure.

But I checked out a playthrough of the third game, and I have the fifth game, it seems age selection isn't a choice, while the second game seems to have it, through a number line going from 0 to 9?

And possibly also for the first game, but I can't read the Japanese for that...

However, even if those are the options I think they are... I can't see the effects. A.k.a I dunno how to check his age?

Or do I only learn it when he has a birthday? Which I'm not sure was selected either?

How do I win on the Contamination gamemode in Splitgate?

Posted: 28 Aug 2021 10:56 AM PDT

I have a weekly challenge to win 3 matches of Contamination. It's basically infected from other games, where a team of Zombies only have bats and portals, attacking survivors with Carbines, Shotguns, and no portals.

I have won rounds as both the Zombies and Survivors, but the counter for the challenge has not increased. How do I win rounds of Contamination?

How Can I fix this error to join servers in minecraft

Posted: 28 Aug 2021 09:17 AM PDT

Please help me about this minecraft server when I joining the minecraft any server this error shown up 'Failed to Log in:The authentication servers are currently not reachable. Please try again'. Anyone have any solution?

How does one mines a glacier tile?

Posted: 28 Aug 2021 06:19 PM PDT

It seems that it is possible only later in game. I'd suppose that this is conditional to the discovery of a certain technology, but I cannot seem to find a reference to that effect.

Does anyone knows ?

Do enemies in Void Bastards respawn? Can I make it stop?

Posted: 28 Aug 2021 10:14 AM PDT

While playing Void Bastards I noticed that there were no one after I killed everybody in a room. After a few minutes, I returned to that room and there were some a janitor or tourist (can't remember) there, even after I locked surrounding doors.

Do they respawn after some time? Is there a way to stop it?

I can't connect to servers because authentication servers are down

Posted: 29 Aug 2021 04:06 AM PDT

Every time I connect to a premium server on my mac, it says that authentication servers are down. I asked my brother to join the same ip and he managed to get in. Me and my brother are on the same internet connection. I have no firewall. I tried doing the sudo nano /etc/hosts terminal but I see no lines mentioning "mojang".firewall is off

Any Legit way to Obtain a Shiny Zygarde?

Posted: 28 Aug 2021 12:59 PM PDT

Is there any way to obtain a shiny Zygarde legitimately? If not, is anybody willing to trade for one? I'll post my friend code if so. Thank you!

Can you encounter an Unown not in the 28 Unown species? [closed]

Posted: 28 Aug 2021 03:00 PM PDT

I encountered an Unown and I don't remember it in the 28 unknown species so fast in Pokémon Gold.

Unown encounter

(Java Minecraft 1.13) How to summon a splash water bottle with no gravity?

Posted: 28 Aug 2021 07:03 PM PDT

Right now, I'm making a "Fire Hose" item which shoots splash water bottles. I've got the velocity and everything working but for some reason it falls much quicker than I expected, and the trajectory is as if I've thrown it. I've tried the NoGravity tag but it isn't working, so if there is a way to get it to go where the cursor is pointing aside from raycasting and spawning it in at that block that would be great. Here's my function to shoot it: the summon command is on line two:

#summon water  summon minecraft:potion ^ ^ ^1 {NoGravity:1,CustomName:"\"firewandwater\"",Potion:{id:"minecraft:splash_potion",Count:1,tag:{Potion:"minecraft:water"}}}    #get player and water data into scoreboards  execute as @s store result score @s fwx run data get entity @s Pos[0] 100  execute as @s store result score @s fwy run data get entity @s Pos[1] 100  execute as @s store result score @s fwz run data get entity @s Pos[2] 100    execute as @e[name=firewandwater] store result score @s fwx run data get entity @s Pos[0] 100  execute as @e[name=firewandwater] store result score @s fwy run data get entity @s Pos[1] 100  execute as @e[name=firewandwater] store result score @s fwz run data get entity @s Pos[2] 100    #subtract the two to get a momentum/velocity and put into water's scoreboard  execute as @e[name=firewandwater] store result score @s fwx run scoreboard players operation @s fwx -= @p fwx  execute as @e[name=firewandwater] store result score @s fwy run scoreboard players operation @s fwy -= @p fwy  execute as @e[name=firewandwater] store result score @s fwz run scoreboard players operation @s fwz -= @p fwz    #tp the water so it's like it's going from eye position  execute as @e[name=firewandwater] at @s run tp @s ~ ~1.62 ~    #put the subtracted value into the potion's Motion  execute as @e[name=firewandwater] store result entity @s Motion[0] double 0.01 run scoreboard players get @s fwx  execute as @e[name=firewandwater] store result entity @s Motion[1] double 0.01 run scoreboard players get @s fwy  execute as @e[name=firewandwater] store result entity @s Motion[2] double 0.01 run scoreboard players get @s fwz    #reset the scoreboards  scoreboard players reset @e fwx  scoreboard players reset @e fwy  scoreboard players reset @e fwz  execute run scoreboard players reset firewandClicks  execute run scoreboard players set @e firewandClicks 0    #reset customName so ater isn't affected by new ater  execute as @e[name=firewandwater] at @s run data merge entity @s {CustomName:""}  

The water should be hitting the top of the brick wall, but instead it hits the middle: enter image description here

How long will food stay hot in The Long Dark?

Posted: 28 Aug 2021 10:35 PM PDT

I have cooked Pinnacle Peaches. How soon must I eat them before they will no longer provide the bonus for being hot?

In the NES version of Tetris, how much faster is a soft drop?

Posted: 29 Aug 2021 03:39 AM PDT

In terms of frames, how much faster is a soft drop in Tetris for the NES?

Like, on level 0, the piece moves down one cell every 48 frames. When you soft drop the piece, is there a specific equation for how fast it falls?

Like, if x = the normal frames between cell drop and y = the frames between each cell drop during a soft drop, is there an equation for y in terms of x?

Can you change your party's starting positions?

Posted: 28 Aug 2021 09:06 AM PDT

In most battles, it would be advantageous for one party member to start in one spot as opposed to another. Is it possible to swap their start locations or influence it in any way?

Would it give me more armor if i would use Lightweight Alloys with Hull Reinforcement Package,

Posted: 28 Aug 2021 10:00 AM PDT

I am currently flying Imperial courier and I am very happy with it. I was checking the outfitting setups on the edshipyard.com and I start to wonder, would it give me the better armor if I buy two hull reinforcment modules, 190 armor each, and use Lightweight Alloys instead of Military Grade Composite?

Currently I am using Military Grade Composite bulkheads with no hull reinforcement modules, and it looks like it gives me 280 armor and it waight 8t. While with Lightweight Alloys I would have 144 base armor (no additional weight), and I could buy two hull reinforcement modules (4t each). This set up would give me 524 armor and it would weigh the same as Military Grade Composite bulkheads.

So my question is, "does it really work this way?" Does the hull reinforcement module give the same armor as bulkheads or is it calculated differently?

What does swords icon mean after attack in Might and Magic Heroes VI?

Posted: 28 Aug 2021 12:05 PM PDT

sometimes after an attack in combat in HoMM VI, I see not only damage dealt/units died counts, but also Swords icon with a number appear.

What does it mean?

Is it ever explained in universe how the three races can use the same resources?

Posted: 29 Aug 2021 02:23 AM PDT

It is somewhat feasible to assume that Terrans and Protoss use the same Materials for building their stuff. But how do the Zerg fit into this? It seems strange to me that the Zerg use the very same resources that Terrans and Protoss.

I do not remember that there was ever a satisfactory explanation of this in game. I have to admit though that my last playthrough of Starcraft 1 has been several years ago, so I do not remember if it was mentioned there.

Where can I find the lexicon machine for "Discerning the Transmundane"?

Posted: 29 Aug 2021 03:21 AM PDT

I'm on the quest Discerning the Transmundane, but I can't find the room with the lexicon machine.

In Blackreach, I've found the Debate Hall, Silent Ruin, Halls of Rumination, and War Quarters, but haven't found it yet. I've been running around this place for over an hour now!

Where, in relation to the giant golden globe, can I find the machine?

No comments:

Post a Comment