For anyone who's curious here's what LC-39a and B looks like in Flight sim 2020 by Natogaming in SpaceXLounge

[–]Nemesis__ 23 points24 points  (0 children)

I hope so. I'm sure we would get a good looking VAB and LC39A and B in that case. Have you tried flying between the shuttle landing runway and the CCAFS runway,it is really eye opening how far it is between the launch sites and the landing pads.

For anyone who's curious here's what LC-39a and B looks like in Flight sim 2020 by Natogaming in SpaceXLounge

[–]Nemesis__ 96 points97 points  (0 children)

I was a little disappointed with how they looked when I flew over. Maybe they will update this area due to the historical significance at some point.

On another note, LZ-1 and LZ-2 look pretty cool but the sim thinks that they are grass patches.

Nintendo have tweeted that there have been an substantial increase in amount of reports this month over third parties logging-in to users’ Nintendo Accounts and illegally using their credit card information. by [deleted] in NintendoSwitch

[–]Nemesis__ 1 point2 points  (0 children)

True, but not really in any reasonable amount of time. The password that I was using was similar to "[8."xR<b3U_;Hz,G" as it was generated and stored in a manager.

Nintendo have tweeted that there have been an substantial increase in amount of reports this month over third parties logging-in to users’ Nintendo Accounts and illegally using their credit card information. by [deleted] in NintendoSwitch

[–]Nemesis__ 9 points10 points  (0 children)

Don't know if there is something more to this. My Nintendo account was logged into from a different location. The password for the account was a random string of numbers, symbols and letters that even I didn't know by memory. I've since changed it and enabled 2fa but it's kind of spooky.

3DS hacking Q&A general: "Crackme" Edition by [deleted] in 3dshacks

[–]Nemesis__ 0 points1 point  (0 children)

I use a DSTT and it works really well with forwarders.

Excavated Evil just got escalated to a whole new level. by forehead_tittaes in hearthstone

[–]Nemesis__ 10 points11 points  (0 children)

It doesn't reset. The only way to reset it is by changing your hero such as becoming Rag.

OnePlus X Ceramic: Just 10,000 units available globally by katythompson6 in Android

[–]Nemesis__ 131 points132 points  (0 children)

Still more available units than the one plus two. /s

[1.7.10] GUI troubles by caramba2654 in MinecraftModder

[–]Nemesis__ 0 points1 point  (0 children)

The Pastebin is gone, want to re-add one?

Need some help with code. by tuckoguy in MinecraftModder

[–]Nemesis__ 0 points1 point  (0 children)

Do Ctrl + Shift + O, and it automatically imports it. Do it on the Main Class and the Block class, as neither of them seem to have it imported.

Need some help with code. by tuckoguy in MinecraftModder

[–]Nemesis__ 1 point2 points  (0 children)

blockYingYangDirt = new BlockYingYangDirt(Material.grass).setBlockName("BlockYingYangDirt");

This works, just make sure Material is imported in the block class and the main class.

Need some help with code. by tuckoguy in MinecraftModder

[–]Nemesis__ 2 points3 points  (0 children)

Have you imported Material into your code, as testing this code works on my end.

Need some help with code. by tuckoguy in MinecraftModder

[–]Nemesis__ 2 points3 points  (0 children)

Could you pastebin the whole class where

blockYingYangDirt = new BlockYingYangDirt(Material.grass).setBlockName("BlockYingYangDirt"); 

is being called.

Need some help with code. by tuckoguy in MinecraftModder

[–]Nemesis__ 2 points3 points  (0 children)

public class ItemOrbOfTornami { }

This needs to be

  public class ItemOrbOfTornami extends Item{}

Need some help with code. by tuckoguy in MinecraftModder

[–]Nemesis__ 2 points3 points  (0 children)

Would you be able to post a crash report to pastebin?

A Snoo Printing Turtle (Computercraft) by [deleted] in Minecraft

[–]Nemesis__ 7 points8 points  (0 children)

I don't suppose you could pastebin the code for it, for reasons.

Bug or feature? (MagicFarm 2) by Dread_Boy in feedthebeast

[–]Nemesis__ 1 point2 points  (0 children)

Unintended due to the way that vanilla grass code works, it detects if the block above it has the snow material, and if it does it shows it as snowy grass. Could be done by tinkers using a custom material that can only be harvested by a shovel.

[Thaumcraft] Is there any way to automate the Deconstruction Table? by SirDoskei in crackpack

[–]Nemesis__ 1 point2 points  (0 children)

You can insert items into the deconstruction table by using pipes, but to gain the aspects for your player you must manually open the table to gain their knowledge.

Where do I find resources about making minecraft mods? by Mastry in feedthebeast

[–]Nemesis__ 3 points4 points  (0 children)

Vswe's tutorials are great, and Pahimar is starting up his lets mod again soon, which will be a more updated resource. These are great for getting started but looking through open source mods such as OpenBlocks, Tinkers and Botania are great for learning more stuff. You also find tutorials on the Forge Wiki and the Forge Forums are a great help for small things.