Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - blueblur121

Pages: 1 ... 183 184 185 186 187 [188] 189 190 191 192 193 ... 565
2806
Games / Re: Sonic the Hedgehog Megathread | Home of the Brobotniks
« on: August 23, 2014, 11:25:03 PM »
PC version

That's the same port.

2807
i think if metal sonic was in the only difference is that he has a variation of a final smash and that his down b is an infinite version of zelda's neutral b but can move around slightly.
All of his A moves would be the same, but his B moves would all be different.

His neutral B would be that diamond shield thing from SA2.
His up B would be chaos control. (So he could do a sort of short-range warp)
His side B would be the electric dash from Sonic CD.
His down B would be the slower electric charge also from Sonic CD.

And his final smash should be a slower version of Sonic's but he can fire projectiles.

2808
Games / Re: Sonic the Hedgehog Megathread | Home of the Brobotniks
« on: August 23, 2014, 11:06:23 PM »
OK so the IOS version is okay
Name one Sonic CD port better than it.

2809
Off Topic / Re: Help me with Java.
« on: August 23, 2014, 09:05:53 PM »
Alright thanks.

2810
Off Topic / Re: Mus is le buying a 3ds thread
« on: August 23, 2014, 09:04:30 PM »
It is also used for non Mii Plaza games.
For example Animal Crossing: New Leaf sends a copy of your house to people you streetpass and vice versa for you to check out, and also buy items from.
And Pokemon Mystery Dungeon uses it to provide items to strangers.
Plus Pokemon X/Y uses it for something I can't recall.

There are a whole bunch of games which utilise it in some way or another, plus 3DS apps, like Letterbox (although that might have changed after the whole Letterbox kerfuffle. Not sure).
And some games use streetpass to allow you to fight a bot with their items or send you their high score or something.

2811
Games / Re: Sonic the Hedgehog Megathread | Home of the Brobotniks
« on: August 23, 2014, 09:01:11 PM »
The mobile and the PC versions are the same dumbass
Wait, they ported Taxman's version to PC? I had no idea. Did they do the same with Sonic 1 and 2?

2812
Off Topic / Re: Mus is le buying a 3ds thread
« on: August 23, 2014, 08:56:01 PM »
what even is streetpass?
am new to 3dsing
Streetpass is when you are near someone else who has a 3DS and later you get to play games with their mii in the mii plaza. And some games use streetpass to allow you to fight a bot with their items or send you their high score or something.

In order to streetpass someone, both 3DS systems must be in sleep mode. While the systems are communicating, their mii appears in your mii plaza to play games and things.

2813
Off Topic / Re: if you were a superhero, what would your name be
« on: August 23, 2014, 08:54:03 PM »
Are you implying that I'm not a superhero?

2814
Off Topic / Re: Help me with Java.
« on: August 23, 2014, 08:49:35 PM »
Bump.

2815
Games / Re: Sonic the Hedgehog Megathread | Home of the Brobotniks
« on: August 23, 2014, 08:28:38 PM »
it came with every other game there
Oh, I see. Get the mobile version then.

2816
Off Topic / Re: Mus is le buying a 3ds thread
« on: August 23, 2014, 07:56:42 PM »
oh and starfox 64 3d
Do a very nausiating barrel-roll.

2817
Games / Re: Sonic the Hedgehog Megathread | Home of the Brobotniks
« on: August 23, 2014, 07:53:15 PM »

2818
Off Topic / Re: Mus is le buying a 3ds thread
« on: August 23, 2014, 07:28:45 PM »
There's this really good game on the e-store that you may have heard of. It's called Super Mario Bros.

2819
Off Topic / Help me with Java.
« on: August 23, 2014, 06:50:25 PM »
Code: [Select]
import java.util.Scanner;

public class CoordSpace {
// Defining class "Point"
public static class Point {
int x;
int y;
int z;
String name;
// Creating void method called "translate" used to add to the x, y, and z variables
void translate(int px, int py, int pz) {
x += px;
y += py;
z += pz;
}
// Creating void method called "coordinates" used to print the Point's current location
void coordinates() {
String orderedTriple = "(" + x + ", " + y + ", " + z + ")";
System.out.println(orderedTriple);
}
}
// Defining method "InputLine"
public static void InputLine() {
// Prompting the user to input a command.
System.out.println("Please input command. Type 'help' to see a list of commands.");
// Assigning user input to string "command"
Scanner input = new Scanner(System.in);
String command = input.nextLine();
if (command == "help") {
System.out.println("add -- Adds a point to the space.");
System.out.println("remove -- Removes a point from the space");
System.out.println("list -- Lists all points");
System.out.println("exit -- Exits the program");
} else if (command == "add") {
System.out.println("Please enter the name of the newly created point");
command = input.nextLine();
// PLACEHOLDER create a point and set variable name to the previous input
System.out.println("Please enter x axis coordinate for this point");
command = input.nextLine();
// PLACEHOLDER add an x coordinate to the previously mentioned point
System.out.println("Please enter y axis coordinate for this point");
command = input.nextLine();
// PLACEHOLDER add a y coordinate to the previously mentioned point
System.out.println("Please enter z axis coordinate for this point");
command = input.nextLine();
// PLACEHOLDER add a z coordinate to the previously mentioned point.
System.out.println("Your point has been added to the space");
} else {
System.out.println("Invalid command");
}
}
// Defining main method
public static void main(String[] args) {
// Creating new Point called "origin" that lies at the coordinates (0, 0, 0)
Point origin = new Point();
origin.x = 0;
origin.y = 0;
origin.z = 0;
origin.name = "Origin";
InputLine();
}
}
Okay, so I made this little class called CoordSpace that is supposed to keep a database of points with three coordinates and a name. The problem that I'm having is that when I tested it, both the "help" and "add" commands return the "invalid command" output. But when I have it output the command variable to the console, it outputs the last input just like it should. I don't know what the problem is here, and I've been looking around the internet for a solution and haven't found anything.

I have a feeling that I'm just being stupid and forgot something important.

2820
Off Topic / Re: ALS Ice Bucket chalange
« on: August 23, 2014, 06:29:34 PM »
This is no longer raising awareness. This is now just a fad.

Pages: 1 ... 183 184 185 186 187 [188] 189 190 191 192 193 ... 565