Search found 10 matches

by zentojamorn
July 7th, 2012, 6:44 am
Forum: Everything
Topic: Circle Collision issue
Replies: 8
Views: 3322

Re: Circle Collision issue

Please, read this >> http://www.planetchili.net/forum/viewtopic.php?f=3&t=2

I want to help you but I can't. Show the rest of your code so we can see what's wrong.
by zentojamorn
June 23rd, 2012, 3:45 am
Forum: Everything
Topic: I keep getting the error missing: ';' before '.' Help
Replies: 4
Views: 2265

Re: I keep getting the error missing: ';' before '.' Help

Errors are from struct that you declared in Game.h. You treat struct-name as variable. You code should be like struct Character { int lookingup_x; int lookingupt_y; int lookingleft_x; int lookingleft_y; int lookingdown_x; int lookingdown_y; int lookingright_x; int lookingright_y; }Fighter,BlueEnemy,...
by zentojamorn
June 17th, 2012, 3:34 pm
Forum: Everything
Topic: Thanks BroS!
Replies: 37
Views: 12624

Re: Thanks BroS!

Cheers! Finally, I'm not only one who hate him. :D I really hate that overpriced machine. It's really sad true story that most of people in my region think that MAC is the best computer. Instead of bought couple of supreme computer, they bought a MAC. Not only you're the great teacher, you're also t...
by zentojamorn
June 17th, 2012, 11:01 am
Forum: Everything
Topic: Thanks BroS!
Replies: 37
Views: 12624

Re: Thanks BroS!

Thanks again, MagnusOfMirrors for suggestion :) One thing I sad about my life is opportunity to educate about game programming. When I was your age, there was no ADSL in Thailand.(even today most of us still using 2.5g) The internet was ultra super slow. Neither game programmer who can suggested me ...
by zentojamorn
June 17th, 2012, 5:19 am
Forum: Everything
Topic: Thanks BroS!
Replies: 37
Views: 12624

Re: Thanks BroS!

MagusOfMirrors, In my opinion, every market that related to Computer is dangerous and highly competitive not only game programming. I understand it because I studied programming since i was 12 (now I'm 19). Everyone had the different dream and target. You might want be in big game corporation like E...
by zentojamorn
June 16th, 2012, 1:58 pm
Forum: Everything
Topic: Thanks BroS!
Replies: 37
Views: 12624

Re: Thanks BroS!

I am studying Computer Engineering in Thailand.
At this moment, I starting to gather my colleagues who interested in game programming.

Thank you Chili!! Without you, I might go deep in coding competition instead of fulfill my dream.
by zentojamorn
May 23rd, 2012, 4:35 pm
Forum: Everything
Topic: HELP! PLEASE!
Replies: 17
Views: 6816

Re: HELP! PLEASE!

I already searched your ERROR via internet. Most of solution say that it caused by lacking some component of VC2010 like ASP.net. (I don't know what it is..) Guy on this website (link below) can get rid of problem by installing his missing component. http://www.nopcommerce.com/boards/t/11800/21-inst...
by zentojamorn
May 22nd, 2012, 11:41 am
Forum: Everything
Topic: why are some of my lines yellow andd some white
Replies: 15
Views: 6846

Re: why are some of my lines yellow andd some white

Problem is in DrawLine function. Your variable name is misleading.
You should use PutPixel(x,y,r,g,bl) instead of PutPixel(x,y,r,g,b).
by zentojamorn
May 22nd, 2012, 7:39 am
Forum: Everything
Topic: Problem with lesson 8
Replies: 5
Views: 2684

Re: Problem with lesson 8

I didn't watch the whole tutorial in programming pooEater game but I recognize that "for" statement and arrays for poos comes after tutorial 8.
by zentojamorn
May 22nd, 2012, 4:36 am
Forum: Everything
Topic: Problem with lesson 8
Replies: 5
Views: 2684

Re: Problem with lesson 8

In this part of your program if( !( poo1IsEaten && poo2IsEaten && poo3IsEaten) ) { if( !poo1IsEaten ) { if( faceX + 20 > poo1X && faceX < poo1X + 24 && faceY + 20 > poo1Y && faceY < poo1Y + 24 ) { poo1IsEaten = true; } DrawPoo( poo1X, poo1Y ); } if( !poo2IsEaten ) { if( faceX + 20 > poo2X && faceX <...