Search found 244 matches

by XxWalKaxX
October 26th, 2012, 5:34 pm
Forum: Everything
Topic: Help with Intermediate Lesson 2
Replies: 4
Views: 1982

Re: Help with Intermediate Lesson 2

upload your solution
by XxWalKaxX
October 24th, 2012, 5:44 pm
Forum: Everything
Topic: Lesson 8... problem drawing the FACE!
Replies: 9
Views: 3538

Re: Lesson 8... problem drawing the FACE!

lol some where on here is a program that Lux made that will take sprites and put to them into PutPixel for you, Chili demonstrates it in one of the tuts
by XxWalKaxX
October 20th, 2012, 7:49 pm
Forum: Everything
Topic: Wish all videos were as Easy as Chillis to follow
Replies: 5
Views: 2171

Re: Wish all videos were as Easy as Chillis to follow

Hmm I use tchar in my windows practice thing. #include <tchar.h> static TCHAR somename[] =
_T("blah blah blah"); Then when you use your variable do so without the brackets. For example, GameName = somename;
by XxWalKaxX
October 20th, 2012, 2:58 am
Forum: Everything
Topic: Lesson 8... problem drawing the FACE!
Replies: 9
Views: 3538

Re: Lesson 8... problem drawing the FACE!

just keep watching the tuts, chili teaches how to load bmp files
by XxWalKaxX
October 15th, 2012, 5:56 pm
Forum: Everything
Topic: Plumet Game
Replies: 13
Views: 7152

Re: Plumet Game

Good job, I thought it was fun. Only feedback I have is maybe start to increase the difficulty sooner.
by XxWalKaxX
October 15th, 2012, 5:46 pm
Forum: Everything
Topic: Lesson 8... problem drawing the FACE!
Replies: 9
Views: 3538

Re: Lesson 8... problem drawing the FACE!

This stuff can be confusing at first, but no worries, it will all come together one day and you'll typing your fingers off xD.
by XxWalKaxX
October 11th, 2012, 11:48 am
Forum: Everything
Topic: HELP!
Replies: 6
Views: 2779

Re: HELP!

do you have pirated version that you tried to register?
by XxWalKaxX
October 10th, 2012, 4:30 am
Forum: Everything
Topic: need help on my first game
Replies: 9
Views: 4584

Re: need help on my first game

//delclare the following in game.h bool keyPressedLastFrame //game.cpp, in Game::Game set keyPressedLastFrame( false ) if( !keyPressedLastFrame ) { if( kbd.LeftIsPressed() ) { doSomeShit(); keyPressedLastFrame = true; } else { keyPressedLastFrame = false; } } else if( !( kbd.LeftIsPressed() ) ) { k...
by XxWalKaxX
October 10th, 2012, 4:19 am
Forum: Everything
Topic: HELP!
Replies: 6
Views: 2779

Re: HELP!

It's hard to help you without your solution. Be sure to follow the forum rules on how to upload your solution.
by XxWalKaxX
October 9th, 2012, 9:37 pm
Forum: Everything
Topic: need help on my first game
Replies: 9
Views: 4584

Re: need help on my first game

keyPressedLastFrame = false; if( !keyPressedLastFrame) { if( kbd.wIsPressed) { doSomething; keyPressedLastFrame = true; } else { keyPressedLastFrame = false } } else if (!kbd.wIsPressed() ) { keyPressedLastFrame = false; }