Search found 241 matches

by Milch
Wed Jun 16, 2010 12:40 am
Forum: General Gaming
Topic: The Official Exciting E3 News Thread
Replies: 20
Views: 3990

Re: The Official Exciting E3 News Thread

LeonBlade wrote:Nintendo = Awesome
Sony = Awesome
Microsoft = No games
Yeah, youre right.
The only thing that really pisses me of it the lack of competitive online games for the wii.
Anyway, I dont get why there is even an online modus in some games - you cant communicate with each other ( like MarioKart/Brawl )
by Milch
Wed Jun 16, 2010 12:34 am
Forum: Programming Discussion
Topic: In game console<SOLVED>
Replies: 3
Views: 408

Re: In game console

My console is a class and all of the other variables get registerd in a linked list with a string and a pointer to the real variable. Also, it has a bitflag if it should be saved in a file if the program is closed. It has a function called 'ToggleConsole' and whenever this is called, it opens/closes...
by Milch
Tue Jun 15, 2010 1:36 pm
Forum: General Gaming
Topic: The Official Exciting E3 News Thread
Replies: 20
Views: 3990

Re: The Official Exciting E3 News Thread

You forgot to post the new zelda game called 'The legend Of Zelda Skyward Sword'. http://www.youtube.com/watch?v=yazN4iO7z3U My oppinion on this: I looks gay as shit. I mean why did they made it look like WW? ARGHH I could rage sooo hard. I'm totally gonna buy this, but still - I WANT MAH ATMOSPHERE...
by Milch
Tue Jun 15, 2010 11:58 am
Forum: Game Development
Topic: My first game: A Zombie RPG
Replies: 163
Views: 48986

Re: My first game: A Zombie RPG

Lol at the virus name :D
Looks good so far, sub'd.
by Milch
Tue Jun 15, 2010 11:52 am
Forum: Game Development
Topic: Free Game Development Tools
Replies: 4
Views: 968

Re: Free Game Development Tools

by Milch
Sun Jun 13, 2010 6:07 am
Forum: Programming Discussion
Topic: learning programming
Replies: 7
Views: 661

Re: learning programming

2 errors here. double sqrt_of_n = sqrt((double) n); for (i=2;i<=sqet_of_n; i++) //there - it should be sqrt_of_n! if (n%i==0) { cout << i<< " "; get_divisors(n/i); return 0; //You declared the function as void, and wrote 'return 0'. Just write 'return' and it should be okay. } cout << n; }...
by Milch
Mon Jun 07, 2010 10:42 am
Forum: General/Off-Topic
Topic: CodeBlocks 10.5
Replies: 14
Views: 1568

Re: CodeBlocks 10.5

this new version is completely un usable for me on mac. COMPLETELY. when i press a in thinks im pressing command+a and selects all. and that for pretty much any key, so its impossible to edit a file. I think they even wrote that it is not stable at all. Code::Blocks for Mac is currently not as stab...
by Milch
Mon Jun 07, 2010 12:37 am
Forum: Game Development
Topic: Developer Contest - $100K Prize?!
Replies: 6
Views: 845

Re: Developer Contest - $100K Prize?!

Looks cool! I dont have enought times to read through the terms, but it seems legit. Have you heard about the Activision Indie Game Contest? I would link it, but Activision's site is written in flash - so I cant. Anyway, Activision is not so nice if you look at their terms. http://blog.wolfire.com/2...
by Milch
Mon Jun 07, 2010 12:26 am
Forum: General/Off-Topic
Topic: CodeBlocks 10.5
Replies: 14
Views: 1568

Re: CodeBlocks 10.5

I think its just sad that they didnt build in something like an update function - or at least some popup that notifies you if there is a new version available.
Anyway, I love Code::Blocks - though I never used it on a Mac.
by Milch
Sun Jun 06, 2010 5:55 am
Forum: Game Development
Topic: What projects are you currently working on?
Replies: 500
Views: 163794

Re: What projects are you currently working on?

Just got UDP broadcasting to work.
After like 4 tries when I finally reallized that sending lots of broadcasts in a second crashes my WLAN router D:
At least I know now how to take revenge as soon as somebody bitches at me :twisted:
by Milch
Sat Jun 05, 2010 7:50 am
Forum: General Gaming
Topic: Worst game you've ever played
Replies: 36
Views: 6940

Re: Worst game you've ever played

Superman 64!
I own it for the N64 and its sooo shitty.
I managed somehow to pass the level with the cars years ago ( back when I was like 10 ) and raged sooo hard because of the second fly level D:
by Milch
Fri Jun 04, 2010 12:25 pm
Forum: Programming Discussion
Topic: Question On Bytes and Sockets
Replies: 10
Views: 737

Re: Question On Bytes and Sockets

K-Bal wrote:
avansc wrote: a byte is just a word that means 8 sequential bits.
The standard just tells that a byte is the smallest word. It does not tell how much bits it has. Just for completeness ;)
I think ANSI-C99 reads that a byte are ATLEAST 8 bits :)
by Milch
Mon May 24, 2010 3:06 pm
Forum: Programming Discussion
Topic: How do YOU comment a source file?
Replies: 25
Views: 1798

Re: How do YOU comment a source file?

I'm working with CodeBlocks and a DoxyGen plugin, so I have comments like this in each header for the different functions: //////////////////////////////////////////////////////////// ///A supercool function /// \param data - takes a pointer to something /// \return a pointer to something different ...
by Milch
Mon May 24, 2010 2:51 pm
Forum: Programming Discussion
Topic: question: Why does main need parameters?
Replies: 14
Views: 957

Re: question: Why does main need parameters?

Avishaiozeri wrote: Edit: The games that people tell you to add things like "-window" and stuff to the shortcut path, to make them act differently, is this
the arg?
Yes.
So you can use the args for stuff like skipping the main menu and loading a level, starting the programm in window mode and so on.
by Milch
Mon May 24, 2010 11:47 am
Forum: Programming Discussion
Topic: question: Why does main need parameters?
Replies: 14
Views: 957

Re: question: Why does main need parameters?

This is for additional arguments for your program.
Like the '-console' for Source games to enable console on startup.

http://www.site.uottawa.ca/~lucia/cours ... ments.html