Search found 25 matches

by Rhys
Thu Oct 01, 2009 10:58 pm
Forum: Programming Discussion
Topic: Begineer projects.
Replies: 13
Views: 1049

Re: Begineer projects.

Solving linear graphs would be a nice one to program, it would help me with about a month of homework, heh.
by Rhys
Wed Sep 30, 2009 4:08 pm
Forum: Programming Discussion
Topic: Begineer projects.
Replies: 13
Views: 1049

Re: Begineer projects.

I'm up to creating my own functions. Not sure how much I can do with that.
by Rhys
Wed Sep 30, 2009 1:07 pm
Forum: General/Off-Topic
Topic: I came :D
Replies: 14
Views: 1257

Re: It came :D

Haha nice shirt. I've always wanted to have my own shirt. I'll put it on my to-do list. Regarding game related shirts, do any of you guys have any/many? I've never owned one, and I've never seen any on sale, I really wanna' get one. I've had band shirts, but never a game shirt, and I want one! As a ...
by Rhys
Wed Sep 30, 2009 12:27 pm
Forum: Programming Discussion
Topic: Begineer projects.
Replies: 13
Views: 1049

Begineer projects.

Hello, I'm a beginner programmer learning C++, I bought a book a few months ago but haven't really made much progress, the problem is; I really, really want to. The book I'm learning from; "C++ Without Fear" is a pretty good book, it takes a while to explain some of the things but that's p...
by Rhys
Sat Jun 27, 2009 12:19 am
Forum: Programming Discussion
Topic: Hitting a brick wall.
Replies: 8
Views: 685

Re: Hitting a brick wall.

if (mood == "good" || mood == "Good"){ Ah, thanks, thought that might be a bit of a problem. #include <string> and cout << "Well, hello, " << name << ", how are you?" << endl << endl; I recommend using cin.ignore() after each cin to kill the newline in the bu...
by Rhys
Fri Jun 26, 2009 12:00 pm
Forum: Programming Discussion
Topic: Hitting a brick wall.
Replies: 8
Views: 685

Hitting a brick wall.

Can someone please clarify why this isn't working, I don't really understand why, I think it's the if and else statement. #include <iostream> using namespace std; int main(void) { // Variables. string name; string mood; system("TITLE Conversing with Sam"); cout << "Hi. What is your na...
by Rhys
Sun Jun 14, 2009 4:50 am
Forum: Current Events and Science/Technology
Topic: Project Nay-Tal
Replies: 27
Views: 4452

Re: Project NATAL

Both of these looks amazing, and I personally think that the talk with Milo wasn't scripted, while the video was exactly that, a recorded video I don't see a reason to lie. Only issues I see are latency, in the video featuring Milo you can see that when the girl puts her hand in the water it's a bit...
by Rhys
Sun Jun 14, 2009 4:28 am
Forum: Programming Discussion
Topic: Where should an 11-12 year old Start?
Replies: 47
Views: 2787

Re: Where should an 11-12 year old Start?

Start by navigating windows.
by Rhys
Sun Jun 14, 2009 12:19 am
Forum: General/Off-Topic
Topic: Where did it all begin for you?
Replies: 45
Views: 23383

Re: Where did it all begin for you?

One day while playing a game, and idea popped into my head; "I'm gonna make a game!" I contacted some friends and we decided to make a small 3D game, little do I know that for our ability, 0, that was impossible. But, of course, with my stupid idea I went on and started learning some progr...
by Rhys
Sun Jun 14, 2009 12:14 am
Forum: Game Development
Topic: What puts you "In the mood" to dev?
Replies: 30
Views: 4528

Re: What puts you "In the mood" to dev?

Well, as I'm thinking of finding a games programming career, that's really my major drive. But I can't do any coding if I've just woken up, which is probably bad, as I wake up from 11am - 4pm. I generally start programming when it get's dark, around 7pm, grab myself 2 or 4 litres of homebrand coke, ...
by Rhys
Sat Jun 13, 2009 12:34 pm
Forum: Programming Discussion
Topic: Text RPG.
Replies: 7
Views: 645

Re: Text RPG.

Thanks!
by Rhys
Sat Jun 13, 2009 11:46 am
Forum: Programming Discussion
Topic: Text RPG.
Replies: 7
Views: 645

Text RPG.

Hello, Myself and a friend have decided to team up and create a text based RPG, both for fun and for educational purposes. The game we're making will be based on Mortal Online, a next-gen MMORPG in development, it's a project for us, and the games community. Here's some of the features I'm thinking;...
by Rhys
Thu May 21, 2009 2:04 am
Forum: Programming Discussion
Topic: Help on a game.
Replies: 15
Views: 1500

Re: Help on a game.

Thanks for the help, the programming book I ordered just arrived, that should help. :)
by Rhys
Tue May 19, 2009 6:18 pm
Forum: Programming Discussion
Topic: Help on a game.
Replies: 15
Views: 1500

Re: Help on a game.

//"Correct" if x is greater than 5 and the user answers 'yes' //"Correct" if x is less than 5 and the user answers 'no' if ( (input == "Y" && x > 5) || (input == "N" && x < 5) ){ cout << "Correct!"; } else { cout << "Wrong."...
by Rhys
Tue May 19, 2009 7:42 am
Forum: Programming Discussion
Topic: Help on a game.
Replies: 15
Views: 1500

Help on a game.

Hi, I haven't been programming for very long, and this is my first project that has a goal, and isn't copied from a tutorial. The game I'm trying to make is simple, you couldn't get it wrong if you tried, but it's just me teaching myself. What I want to happen is for the user to input a value for x,...