Search found 24 matches

by MakazeGamer
Wed May 13, 2009 3:51 pm
Forum: General Gaming
Topic: Post every time you beat a game.
Replies: 629
Views: 852380

Re: Post every time you beat a game.

Yeah, I just beat Final Fantasy 7 for the 2348234876 time.

@Gyro, yeah lol I tried playing the demo on the 360 and it was probably one of the more harder games I have played.
by MakazeGamer
Mon Mar 09, 2009 3:35 pm
Forum: Programming Discussion
Topic: How to make c++ programs smaller?
Replies: 13
Views: 1020

Re: How to make c++ programs smaller?

Also, and this might be obvious but im just saying, that if you build it under the debug config it will be way bigger than if you build it under the release config. Now I have only used MCVS for the most part and I am not sure if other IDEs can change these configs or not.
by MakazeGamer
Thu Feb 26, 2009 8:08 pm
Forum: Programming Discussion
Topic: Game Design Ebooks.
Replies: 3
Views: 3842

Re: Game Design Ebooks.

I do not think that they accept eBooks here. You are probably going to have to close this thread.
by MakazeGamer
Fri Dec 26, 2008 7:11 pm
Forum: Programming Discussion
Topic: Is using a Game SDK considered "cheating" or Noob?
Replies: 9
Views: 1119

Re: Is using a Game SDK considered "cheating" or Noob?

Well the way I look at using SDKs is, why reinvent the same wheel when somebody has already done it for you. So I would not consider it cheating or noobish at all.
by MakazeGamer
Tue Dec 23, 2008 9:01 pm
Forum: Game Development
Topic: Project Vanquish
Replies: 3
Views: 934

Re: Project Vanquish

Upated again, added a little demo you guys can try out. look at the first post for the link.
by MakazeGamer
Sat Dec 06, 2008 1:39 am
Forum: Programming Discussion
Topic: anyone wanna make an UGH! remake?
Replies: 88
Views: 7114

Re: anyone wanna make an UGH! remake?

This is really really cool lol, I like how you guys document it sorta here so that way everybody can see it.
by MakazeGamer
Tue Dec 02, 2008 5:23 am
Forum: Programming Discussion
Topic: Is this a good programming practice
Replies: 31
Views: 3030

Re: Is this a good programming practice

yea i thought so... But what is so bad about doing that though ? Like what problems could i have in the long run ?
by MakazeGamer
Tue Dec 02, 2008 12:51 am
Forum: Programming Discussion
Topic: Is this a good programming practice
Replies: 31
Views: 3030

Is this a good programming practice

Ok so I keep running into LNK errors in VS. usually either 2001 or 2005. And usually with classes and header files.

But i wondered if it was a bad programming practice, for when you delcare classes that you declare them like this

Code: Select all

class ClassName
{
private:
public:
}ClassObject;
by MakazeGamer
Sat Nov 22, 2008 6:04 pm
Forum: Programming Discussion
Topic: Taking a stroll into Assembly Land...
Replies: 4
Views: 627

Re: Taking a stroll into Assembly Land...

What would you say about the 4th edition of the book ?, its the only one that i could find at our library.
by MakazeGamer
Tue Nov 11, 2008 10:00 pm
Forum: Game Development
Topic: Project Vanquish
Replies: 3
Views: 934

Re: Project Vanquish

OK so I updated the first post, posted a video of our Meeting that we had today over player stats
by MakazeGamer
Sat Nov 08, 2008 9:32 pm
Forum: Programming Discussion
Topic: Pointer Question..... C++
Replies: 23
Views: 2601

Re: Pointer Question..... C++

I think he is talking about something like this

Code: Select all

int Test1;
int Test2;
int* PointerTest = NULL;
int Input;

cout << "Enter 1 or 2: ";
cin >> Input;

if (Input == 1)
{
     PointerTest = &Test1;
}
else if (Input == 2)
{
     PointerTest = &Test2;
}
by MakazeGamer
Sat Nov 08, 2008 7:38 pm
Forum: Game Development
Topic: aprentice looking for someone....
Replies: 1
Views: 573

Re: aprentice looking for someone....

Hey you can join our team. We are currently look for Design/Concept people right now. We have enough programmers. If you are interested just hit me up a pm or MSN: dave10297@hotmail.com
by MakazeGamer
Sat Nov 08, 2008 7:15 pm
Forum: General/Off-Topic
Topic: Anyone else use a mac?
Replies: 19
Views: 1627

Re: Anyone else use a mac?

Yea i was using a hackintosh version of leopard. It was my real first experience of macs on my own outside of schools stupid limitations. And i would say that i was impressed..........for a little while but then it just felt like it was too much glamor to it making it look fancy and i just did not l...
by MakazeGamer
Sat Nov 08, 2008 5:08 am
Forum: Game Development
Topic: Project Vanquish
Replies: 3
Views: 934

Project Vanquish

Ok so me and a few other programmers are developing a Tex-Based RPG. We currently do not have any name for it yet as we are still kinda getting the members organized, repository structures, and just getting everybody on the same page. We just had a very first team meeting over MSN and we got a lot o...