Comments

Commented 16 years ago2008-05-04 12:26:07 UTC in journal: #5044 Comment #58635
n

So where do you program? On wordpad?
Commented 16 years ago2008-05-04 12:09:53 UTC in vault item: Comboman Comment #16614
Very cool map! Im sure it would be very fun multiplayer.
Commented 16 years ago2008-05-04 11:45:28 UTC in journal: #5044 Comment #58627
n
Commented 16 years ago2008-05-04 11:18:46 UTC in journal: #5044 Comment #58640
If you enter the letter 'n' it will output this:
You shure?
Are you retard? you can only use N/Y!!!
Commented 16 years ago2008-05-04 11:17:30 UTC in news: TWHL Wiki Comment #98502
..oooh..
Commented 16 years ago2008-05-04 11:07:48 UTC in vault item: Warcoast Comment #16613
Still ain't working.
Commented 16 years ago2008-05-04 10:47:31 UTC in journal: #5044 Comment #58624
WHO?
Commented 16 years ago2008-05-04 10:38:15 UTC in journal: #5044 Comment #58626
NO ME!
Commented 16 years ago2008-05-04 10:34:26 UTC in journal: #5047 Comment #39747
I love goldrush, it's perfect for snipers and spies =)

PS My friends watched Iron Man and they say is full shit
Commented 16 years ago2008-05-04 09:10:14 UTC in journal: #5044 Comment #58642
ME!
Commented 16 years ago2008-05-04 09:08:12 UTC in vault item: Warcoast Comment #16612
Shit. Fixed.
Commented 16 years ago2008-05-04 08:35:31 UTC in vault item: Warcoast Comment #16611
Broken url....
Commented 16 years ago2008-05-04 08:01:55 UTC in journal: #5044 Comment #58623
U
Commented 16 years ago2008-05-04 07:46:27 UTC in news: TWHL Wiki Comment #98501
HL_G: No?

You don't copy other people's work for your own website, especially if they both have the same purpose.
That's just bad.
Commented 16 years ago2008-05-04 07:45:10 UTC in journal: #5044 Comment #58625
U.
Commented 16 years ago2008-05-04 07:42:56 UTC in journal: #5047 Comment #39746
I agree on all points.
The tight spaces are a bit annoying when playing as a spy, which is pretty much the only class I play, but once you figgure out how to get past them there are some seriously good spy enviroments.
Goldrush ftw.
Commented 16 years ago2008-05-04 04:47:32 UTC in journal: #5044 Comment #58622
potatis when the first case is true the break will stop analyzing the next cases, so since there is nothing alce to analyze after last case there is no point of adding another break; I know its not an elegant code it could be writed in many other ways but you wont run out of ram, this shit its like a big loop but its stoped by switch so it wont eat ur ram neither cpu.
Commented 16 years ago2008-05-04 02:37:52 UTC in news: TWHL Wiki Comment #98500
cant you just "copy and paste" the ones in slackiller.com?......
Commented 16 years ago2008-05-04 02:01:37 UTC in journal: #5047 Comment #39743
"Didn't catch what happens after the credits, but whatever."

I did, you weren't missing too much. I can spoil it if you wish. :P

But yeah, it wasn't a bad movie at all, definately a lot like Transformers, fun and over-the-top.

Gold Rush isn't bad, fun gameplay idea, but how I wish it didn't look exactly like Dustbowl. :(
Commented 16 years ago2008-05-03 22:32:01 UTC in journal: #5046 Comment #48712
Nice.
Which high-school did you go to?
Is it in the northeast somewhere?
Commented 16 years ago2008-05-03 21:32:08 UTC in journal: #5046 Comment #48711
Cool!

Also, i saw Priapism on the page. Someone I knew from highschool is in that band. Talk about long-tim-no-see. :D
Commented 16 years ago2008-05-03 20:03:01 UTC in journal: #5044 Comment #58639
"There is no point of using break; after last case" No, but after "You shure?".

"For the ram thing its easy to use Sleep(100)" thats not what I meant. If a function calls itself, without terminating itself, some memory are still left, and it will be, always, if the instance of the function is not terminated. And every time you call the function more and more memory will be used. It's like saying "every time you think of a throw a ball, throw another one". Eventually there will be to many balls.
It doesn't really matter if you hold down enter, or just use the program as you are supposed to be using it. Use a while statement instead.
Commented 16 years ago2008-05-03 19:26:27 UTC in journal: #5044 Comment #58621
-potatis i'm calling main that after it ends to start again. I havnt forgot anything. There is no point of using break; after last case.For the ram thing its easy to use Sleep(100). but its just like saing typeing /me dosent work:O.
-spike Switch can aslo be made with If. If you like programming/or want to learn C++ its a good choice, its portable and you dont need frameworks like vb.net. If you dont know the basics cygwin is useless.
Commented 16 years ago2008-05-03 19:11:39 UTC in journal: #5041 Comment #48707
I had the day wrong.
lmao.
Commented 16 years ago2008-05-03 18:06:48 UTC in journal: #5044 Comment #58634
I don't kinow what's case and switch, lol, Well I'll download CygWIN and see what happens. Classes are too difficult :_(
Commented 16 years ago2008-05-03 17:56:34 UTC in journal: #5044 Comment #58638
Why are you calling main() at the end of main()?
If you hold down enter that you will eventually run out of RAM.
And I think you forgot some break; statements...
Commented 16 years ago2008-05-03 15:52:48 UTC in journal: #5044 Comment #58620
#include <iostream>
using namespace std;
int main(){
char yesno;
system("color b");
cout << "Hello? i'm Spike te programator" << endl;
cout << "Do i suck or not?: y/n" << endl;
cin >> yesno;
switch(yesno)
{
case 'y' :
cout << "No hes a good one" << endl;
break;
case 'n' :
cout << "You sure?" << endl;
default:
cout << "Are you retard? you can only use N/Y!!!" << endl;
}
system("pause");
system("CLS");
return main();
}
Commented 16 years ago2008-05-03 15:51:23 UTC in journal: #5042 Comment #54716
ducky!
Commented 16 years ago2008-05-03 15:13:30 UTC in journal: #5044 Comment #58637
And... what's the problem?
Install CygWIN and the gcc-g++ package, then open the cygwin console and write this:
g++ -o /test.exe /spikes_project_main.cpp
Just like you would do if you were running linux/os x.
Commented 16 years ago2008-05-03 13:52:05 UTC in journal: #5044 Comment #58633
It's for an university project, to compile it on Linux console. I have windows vista on my pc. I just want to create a main program and some classes and then link all the .o to have the .exe (yeah I'm a programming noob)

EDIT: well... I want to compile it on windows, not just linux
Commented 16 years ago2008-05-03 13:37:24 UTC in journal: #5044 Comment #58612
Try Visual Basic .NET 2005.
I can help you to get started. I've been .NETting for about two years.
VB.NET is much easier to master and learn, but keep in mind that you can't use it for HL SDK programming.

Your choice.
Commented 16 years ago2008-05-03 13:24:09 UTC in journal: #5044 Comment #58632
C++
Commented 16 years ago2008-05-03 13:19:51 UTC in journal: #5044 Comment #58611
What language?
Commented 16 years ago2008-05-03 13:18:12 UTC in journal: #5044 Comment #58619
Shut it U
This r mai base
Commented 16 years ago2008-05-03 13:14:31 UTC in journal: #5044 Comment #58636
SPIDER PIG SPIDER PIG, DOES WHATEVER A SPIDER PIG DOES, CAN HE SUCK, AS MUCH AS SPIKE? NO HE CANT, HES A PIG, WATCH OUT, HERE COMES THE SPIDERPIIIG
Commented 16 years ago2008-05-03 13:12:49 UTC in journal: #5042 Comment #54724
:Y
Commented 16 years ago2008-05-03 13:08:31 UTC in journal: #5044 Comment #58618
PEW PEW
SILENCE
GOODBYE SPIDERMAAAAAN

OH LOOK! IT'S SPIDERMAN! SHOOT HIM!

LOOKS LIKE YOU ARE A BOORN LOOOOOSSSEEER
Commented 16 years ago2008-05-03 12:58:04 UTC in journal: #5044 Comment #58615
NOW I'VE GOT U! U ARE NO MATCH FOR ME! I'LL SHORT CIRCUIT U! WHAT WAS THAT! THAT! WAS MY SPIDER WEB!
Commented 16 years ago2008-05-03 12:46:54 UTC in journal: #5044 Comment #58631
u SUCK AS MUCH AS PROGRAMMING
Commented 16 years ago2008-05-03 12:46:30 UTC in journal: #5044 Comment #58613
U.
Commented 16 years ago2008-05-03 12:43:23 UTC in journal: #5044 Comment #58617
u.
Commented 16 years ago2008-05-03 12:41:11 UTC in journal: #5044 Comment #58630
u
Commented 16 years ago2008-05-03 12:39:35 UTC in journal: #5044 Comment #58616
no U
This comment was made on an article that has been deleted.
Commented 16 years ago2008-05-03 11:53:51 UTC in journal: #5042 Comment #54720
D:
Commented 16 years ago2008-05-03 07:13:37 UTC in journal: #5042 Comment #54715
:(
Commented 16 years ago2008-05-03 04:05:33 UTC in news: TWHL Wiki Comment #98499
This is the first step in making TWHL more community oriented. Anyone can edit the wiki (changes will have to be approved the mods that we're hiring) so it should prove to be a great resource. I love the fact we have an error guide now too. :D
Commented 16 years ago2008-05-03 04:02:16 UTC in journal: #5042 Comment #54704
:x
Commented 16 years ago2008-05-02 20:49:21 UTC in journal: #5041 Comment #48710
What year will this be?
This years May 3 is a Saturday...
Commented 16 years ago2008-05-02 19:59:19 UTC in journal: #5042 Comment #54708