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 - Serge

Pages: 1 ... 38 39 40 41 42 43 44 [45] 46 47 48 49 50 51 52 ... 103
881
General Support / Re: Windows 7 Issues
« on: August 27, 2010, 08:29:52 PM »
Sounds like a virus to me.

882
Existing Games / Re: Video Game Ladies you have the hots for
« on: August 27, 2010, 08:25:01 PM »
Then


Go to Garrysmod.org and search Alyx.



Now I don't have to GTFO :D

Older than Gabe Newell the internets.

883
Existing Games / Re: Video Game Ladies you have the hots for
« on: August 27, 2010, 07:49:27 PM »

884
Off-Topic Discussion / Re: GTM Radio
« on: August 27, 2010, 07:45:45 PM »
Here's a sneak peek.

885
Off-Topic Discussion / Re: GTM Radio
« on: August 27, 2010, 07:09:24 PM »
Alright, a proper website is going public soon, just need to fix a few things. After that, it just needs to get populated with songs. Since the software is written in a very conservative manner, I have to accept every new artist and song.

886
Existing Games / Re: Video Game Ladies you have the hots for
« on: August 27, 2010, 07:05:46 PM »
Serge, go to garrysmod.org and...

Oh wait...


* Hydro shakes fist at the "You must have Gmod to see the downloads" thing

I have an account on garrysmod.org.

889
Existing Games / Re: What Games Are You Playing Now?
« on: August 26, 2010, 07:05:06 PM »
Uhm.

Team Fortress 2 (http://reddit.com/r/tf2lemmings)
L4D2
Just Cause 2

That's about it. I rarely play games, anywy.

890
Off-Topic Discussion / Re: GTM Radio
« on: August 26, 2010, 06:14:57 PM »
Windows media player cannot play the file is there anything else i can use?

Stream is down right now, that's why you can't connect.

891
Off-Topic Discussion / Re: GTM Radio
« on: August 26, 2010, 05:44:51 PM »
Stream closing, service time beggining. I'll now keep messing around with the stream disregard that (I need to make sure my software works).

892
Existing Games / Re: Video Game Ladies you have the hots for
« on: August 26, 2010, 05:42:25 PM »
Well... Hayley Williams was featured as a playable character in Guitar Hero: World Tour... Does she count?

NSFW

But you've probably seen this already.

894
Discussion / Re: The Ranks- Fourth Tally (VOTES ARE IN!)
« on: August 26, 2010, 05:37:02 PM »
lol nobody voted for me.

And that makes me a saaaaad panda.

895
Off-Topic Discussion / Re: GTM Radio Show/Wild Card
« on: August 26, 2010, 02:34:37 PM »
Mr Jackhammer Dong.

Why did I laugh so hard?

896
Chatterbox / Re: Poor Sparkey, he should have known better
« on: August 26, 2010, 12:12:33 PM »
im the condom

THEN WHO WAS PHONE?!

897
Chatterbox / Re: Stupidity
« on: August 26, 2010, 11:42:33 AM »

898
Chatterbox / Re: Poor Sparkey, he should have known better
« on: August 26, 2010, 10:19:58 AM »
Only in the bible belt...

899
Discussion / Re: A question...
« on: August 26, 2010, 10:05:56 AM »
Random function. I'm guessing it calls a random number between 0 and 1

Functions don't call. You call functions, and they return a value.

In C and C++, functions are defined like so:
Code: [Select]
returnValueType functionName(argument1Type argument1, argument2Type argument2, ...etc...) {
    //function code goes here
}
//example, although you usually don't have to write this, most OS's do this for you already
int rand() { //return type integer, no arguments
    // insert linear congruential generator implementation here
}

and are called like this:

Code: [Select]
returnValueType someVariable = functionName(argument1, argument2);
//example
int someRandomNumber = rand();
// new value of type int, set it to the result of a rand() call
someRandomNumber = someRandomNumber % 10;
// set someRandomValue (notice the type is given only when a variable is first referenced, this is called declaring a variable) to its previous value, but with modulo operator of 10 applied to it

In this case, when you call rand(), it returns a pseudorandom integer between 0 and RAND_MAX, a constant depending on your OS / environment / compiler / position of the planets.

900
Off-Topic Discussion / Re: GTM Radio
« on: August 26, 2010, 09:42:09 AM »
See, foobar is awesome.

Pages: 1 ... 38 39 40 41 42 43 44 [45] 46 47 48 49 50 51 52 ... 103