Search found 228 matches

by Maevik
Mon Apr 06, 2009 8:50 pm
Forum: Game Development
Topic: My new youtube series
Replies: 25
Views: 3945

Re: My new youtube series

Tried that a few times. Campaigns always die out :( That's the hardest part, especially when you're out of school and have to ballance bills / jobs / girls with four other dudes... My group is about play our 12th installment of our 4th ed campaign. We didn't think it would get that far, but now tha...
by Maevik
Mon Apr 06, 2009 2:21 pm
Forum: Programming Discussion
Topic: getline() Can Bite My Ass!!!
Replies: 6
Views: 501

Re: getline() Can Bite My Ass!!!

Thanks, but that just made the program behave the same as when I only used getline()

It seems as though, if getline() is in a loop, it will only pause the program for user input on the first run through the loop.
by Maevik
Mon Apr 06, 2009 2:19 pm
Forum: General Gaming
Topic: Epic Letdowns in Gaming
Replies: 40
Views: 7544

Re: Epic Letdowns in Gaming

MadWorld, Here's a big fucking chainsaw arm, dont use it though, it wont get you points. Instead, run away from the enemies looking for trash cans and sign posts. I don't know if it's called MadWorld cause it pisses you off, or because the game designer was clinically insane. elaborated here: http:/...
by Maevik
Mon Apr 06, 2009 2:01 pm
Forum: Programming Discussion
Topic: getline() Can Bite My Ass!!!
Replies: 6
Views: 501

getline() Can Bite My Ass!!!

So, I'm working some of the practice programs in my C++ book. These ones have to do with sort / search algorithms; I finished the ones on arrays, and now I'm doing vectors. I was working on my search function when I came across this problem. It's driving me mad... while( !quit ) { cout << "Ente...
by Maevik
Mon Apr 06, 2009 1:03 pm
Forum: General/Off-Topic
Topic: posting from my psp
Replies: 12
Views: 923

Re: posting from my psp

I've made posts (including this one) from my sidekick slide.
by Maevik
Sun Apr 05, 2009 9:21 pm
Forum: Programming Discussion
Topic: Need Help
Replies: 4
Views: 511

Re: Need Help

heh, I just like when someone has an easy question that I may actually know the answer to :D
by Maevik
Sun Apr 05, 2009 9:15 pm
Forum: Programming Discussion
Topic: Need Help
Replies: 4
Views: 511

Re: Need Help

cout ( as well as cin , endl etc... ) is part of the namespace "std" Therefore, in order to use it you must either use the namespace: using namespace std; or use the identifier std::cout; It should work as: #include <iostream> using namespace std; void main() { cout << "WTF?????"...
by Maevik
Sun Apr 05, 2009 8:19 pm
Forum: General/Off-Topic
Topic: I CAN HAS eBAY? LOL!
Replies: 4
Views: 749

Re: I CAN HAS eBAY? LOL!

Damn, I envy you guys. I married a packrat. We're slowly working through some of the habits, but I swear I wake up in a cold sweat some nights screaming "THE KNICK-KNACKS!!! OH SWEET JESUS THEY'RE EVERYWHERE!!!"
by Maevik
Sun Apr 05, 2009 7:27 pm
Forum: Programming Discussion
Topic: SDL help
Replies: 24
Views: 2293

Re: SDL help

You can also clean up the root directory by putting them in a folder. In your code you would need to change the opening function call to something like
example.open( "files//ball.bmp" );

where files is a folder in your root directory.
by Maevik
Sun Apr 05, 2009 1:46 pm
Forum: Programming Discussion
Topic: SDL help
Replies: 24
Views: 2293

Re: SDL help

Put ball.bmp in the test file
by Maevik
Sun Apr 05, 2009 1:20 am
Forum: Programming Discussion
Topic: push_back, square( )ect.ect.
Replies: 32
Views: 3244

Re: push_back, square( )ect.ect.

How many data are you trying to take as input? Currently you prompt the user 3 times, but only store the first two values into your vector. Your first while loop should look something more like while( tempArray.size() < x ) { cin >> temp; tempArray.push_back(temp); } where x is the number of values ...
by Maevik
Sat Apr 04, 2009 8:00 pm
Forum: General/Off-Topic
Topic: Official "Hello, World! (I'm new!)" thread
Replies: 821
Views: 624426

Re: Official "Hello, World! (I'm new!)" thread

Do you play bass guitar K-Bal? I do. :) Well, you can watch my videos and get yourself an impression ;) Christ there's a lot of musicians here! I was the guitarist/songwriter for a Long Beach local band with my brother. The drummer and I commited to college while my brother and the other guys are s...
by Maevik
Sat Apr 04, 2009 6:33 pm
Forum: General/Off-Topic
Topic: What, and what NOT to get tattood
Replies: 29
Views: 2769

Re: What, and what NOT to get tattood

I have a celtic crescent moon on my forearm. My wife has a matching piece of a sun with a slavic solar wheel. We got them for our 6th anniversary.

Image
by Maevik
Sat Apr 04, 2009 12:39 pm
Forum: Programming Discussion
Topic: [SOLVED]SDL Compiling Problems
Replies: 4
Views: 509

Re: SDL Compiling Problems

It looks like you dont have the libraries linked in your dependencies. I'm not sure how to do this for code::blocks or Dev C++, but if you follow every step of his first tutorial you should be golden. Also, I wouldn't recomment just copying lazyfoo's code. Only in the first tutorial (maybe two) does...
by Maevik
Fri Apr 03, 2009 4:24 pm
Forum: Programming Discussion
Topic: Damn I/O!! ( HELP PLEASE! )
Replies: 17
Views: 2473

Re: Damn I/O!! ( HELP PLEASE! )

I think it's your & after the string variable in the first argument. The buffer should not be an adress, and even if it were I would think the & would have to be in front.