Welcome, Guest. Please login or register.

Login with username, password and session length

 
Advanced search

1411535 Posts in 69382 Topics- by 58438 Members - Latest Member: isabel.adojo

May 02, 2024, 12:28:26 PM

Need hosting? Check out Digital Ocean
(more details in this thread)
TIGSource ForumsPlayerGeneralFight Thread Pollution! Post here if it's not worth a new thread!!!
Pages: 1 ... 976 977 [978] 979 980 ... 1393
Print
Author Topic: Fight Thread Pollution! Post here if it's not worth a new thread!!!  (Read 2328632 times)
Udderdude
Level 10
*****


View Profile WWW
« Reply #19540 on: December 19, 2014, 02:44:08 PM »

Krampus is the Santa Claus we deserve.
Logged
s0
o
Level 10
*****


eurovision winner 2014


View Profile
« Reply #19541 on: December 19, 2014, 03:05:55 PM »

btw people dressing up as krampus only really happens in rural areas


(aka 95% of austria)
Logged
s0
o
Level 10
*****


eurovision winner 2014


View Profile
« Reply #19542 on: December 19, 2014, 03:19:59 PM »

also did u know that here in austria baby jesus brings the presents on christmas eve?

this is actually an early protestant tradition (because the worship of saints is considered idolatry or sth in protestantism, so obv santa aka st nicholas is out of the question), which is really strange because austria is a catholic country. welp actually it isnt because a lot of austria was protestant during the 16th and early 17th century. unfortunately, the ruling dynasty (the hapsburgs) were catholic, so the "counter-reformation" ended up forcefully re-converting austria to catholicism.
Logged
Boreal
Level 6
*


Reinventing the wheel


View Profile
« Reply #19543 on: December 19, 2014, 07:42:34 PM »





I'm not sure how to describe this, but it's worth the watch.
Logged

"In software, the only numbers of significance are 0, 1, and N." - Josh Barczak

magma - Reconstructed Mantle API
gimymblert
Level 10
*****


The archivest master, leader of all documents


View Profile
« Reply #19544 on: December 19, 2014, 09:35:16 PM »



 Facepalm
Logged

Mittens
Level 10
*****

.


View Profile WWW
« Reply #19545 on: December 19, 2014, 10:25:08 PM »

I just bought a 3DS, tell me what the most crucial game(s) are!
Logged

gimymblert
Level 10
*****


The archivest master, leader of all documents


View Profile
« Reply #19546 on: December 19, 2014, 10:44:00 PM »




real hover board take 2
this one isn't magnetic and work everywhere
DAMN 20XX !!
Logged

shinygerbil
Blew Blow (Loved It)
Level 10
*


GET off your horse


View Profile WWW
« Reply #19547 on: December 20, 2014, 03:28:23 AM »

I just bought a 3DS, tell me what the most crucial game(s) are!
A link between worlds is a good Zelda (it's not spirit tracks LOL)
Smash bros if you don't have a Wuu
Bravely Default if you like jrpgs
Pokemons are the best iterations for years
Picross series are great little puzzles
(Everyone raves about Steamworld Dig but I didn't like it at all :s)
I'm sure there are more that I'm missing?
Logged

olücæbelel
s0
o
Level 10
*****


eurovision winner 2014


View Profile
« Reply #19548 on: December 20, 2014, 03:35:58 AM »

Quote
I'm sure there are more that I'm missing?

Shin Megami Tensei 4
Super Mario 3D Land
Kid Icarus
Animal Crossing
Both the Ocarina of Time and Starfox remakes are good
Logged
gimymblert
Level 10
*****


The archivest master, leader of all documents


View Profile
« Reply #19549 on: December 20, 2014, 08:33:18 AM »

majora mask
Logged

Udderdude
Level 10
*****


View Profile WWW
« Reply #19550 on: December 20, 2014, 10:04:20 AM »

Kid Icarus Uprising

I seriously can't get my hands on a copy of this game, even bare cartridge, for less than $60.  It's just absurd.
Logged
s0
o
Level 10
*****


eurovision winner 2014


View Profile
« Reply #19551 on: December 20, 2014, 10:53:53 AM »

i didn't realize it was that rare. WTF

glad i bought it when it was new then, because it's really really excellent. basically sin & punishment 3. or alternately, basically the first good starfox game in 100 years.

Logged
Udderdude
Level 10
*****


View Profile WWW
« Reply #19552 on: December 20, 2014, 11:05:24 AM »

The worst thing is that I have a PAL version cart that I can't even play.  Goddamn region lock.  All of my hate.  Sending hate rays over the internet in Nintendo's general direction RIGHT NAO. >:O
Logged
SirNiko
Level 10
*****



View Profile
« Reply #19553 on: December 20, 2014, 03:50:24 PM »

Wow, yeah, the prices on Amazon are crazy.

Gamestop has it for under forty bucks used. You should check there. I just checked online and a few stores within half an hour of me have used copies, so you might be able to get one at your local store.

It's a game deserving of being pricy, at least. Fun multiplayer and the plot would feel right at home in a Saturday morning cartoon series.
Logged
Mittens
Level 10
*****

.


View Profile WWW
« Reply #19554 on: December 20, 2014, 03:51:03 PM »

The worst thing is that I have a PAL version cart that I can't even play.  Goddamn region lock.  All of my hate.  Sending hate rays over the internet in Nintendo's general direction RIGHT NAO. >:O

Oh oh! sell that to me please, I am PAL region (australia)
I have an NTSC cart of the original smash bros 64 if anyone wants that

I really like the look of Bravely Default, I think I will get that and Smash Bros to start
Logged

Boreal
Level 6
*


Reinventing the wheel


View Profile
« Reply #19555 on: December 20, 2014, 10:12:48 PM »

I just wrote the stupidest and yet most clever FizzBuzz of my entire programming career.

Code:
#include <stdio.h>

int main() {
    int i = 0;
    while(i++ < 100) {
        printf("%d\r", i);
        printf((i%3 == 0) ? "Fizz" : "");
        printf((i%5 == 0) ? "Buzz" : "");
        printf("\n");
    }
    return 0;
}
Logged

"In software, the only numbers of significance are 0, 1, and N." - Josh Barczak

magma - Reconstructed Mantle API
shellbot
Guest
« Reply #19556 on: December 21, 2014, 03:35:29 AM »

I just wrote the stupidest and yet most clever FizzBuzz of my entire programming career.

Code:
#include <stdio.h>

int main() {
    int i = 0;
    while(i++ < 100) {
        printf("%d\r", i);
        printf((i%3 == 0) ? "Fizz" : "");
        printf((i%5 == 0) ? "Buzz" : "");
        printf("\n");
    }
    return 0;
}


Ah, a prime example of the old: "The professor might give me a higher mark if I do this"
Logged
shellbot
Guest
« Reply #19557 on: December 21, 2014, 03:46:14 AM »

Also, I just hit Level 1!
Am I cool now guys...?

Guys? Beg
Logged
Praying Mantis
Level 3
***



View Profile
« Reply #19558 on: December 21, 2014, 07:10:47 AM »

What's this, people talking about 3DS games?

I'll recommend a few that haven't been mentioned:
- Luigi's Mansion 2
- Fantasy Life
- Pilotwings Resort

Also I'm serious about Pilotwings; the game is underrated and often overlooked. Get the game pre-owned from EB for like $15 and enjoy a well made flight sim on 3DS.
Logged
SirNiko
Level 10
*****



View Profile
« Reply #19559 on: December 21, 2014, 07:30:44 AM »

I'll second Luigi's Mansion. The multiplayer mode is fantastic: You can either play it as a solo endless mode, or have fun playing as a group without a lot of heartache over lousy players. The gimmick of collecting all the themed boss ghosts was a brilliant reward system. The single player mode also does a good job of adding replay value with hidden collectables and per-level grades.

Kid Icarus is the best game on the console, though. Do what you can to score a copy.
Logged
Pages: 1 ... 976 977 [978] 979 980 ... 1393
Print
Jump to:  

Theme orange-lt created by panic