Page 1 of 1

FREE E-BOOK ON C PROGRAMMING

PostPosted: Wed Nov 18, 2009 9:44 pm
by krenisis
ok game editor here a small c book it covers some things you know and some you dont know.Check it out but 1st you have to learn game editor a bit because if not this will confuse you.I hope you learn something and enjoy.

Re: FREE E-BOOK ON C PROGRAMMING

PostPosted: Thu Nov 19, 2009 1:28 pm
by krenisis
its a little guide just take ur time in reading it

Re: FREE E-BOOK ON C PROGRAMMING

PostPosted: Wed Dec 02, 2009 12:00 pm
by Hblade
Thanks! :D

Re: FREE E-BOOK ON C PROGRAMMING

PostPosted: Fri Dec 11, 2009 9:10 pm
by krenisis
Iam looking for a free c++ e-book but they are all old. When i do find one i let you know

Re: FREE E-BOOK ON C PROGRAMMING

PostPosted: Sat Dec 12, 2009 1:05 pm
by Hblade
k Awesome :D

Re: FREE E-BOOK ON C PROGRAMMING

PostPosted: Mon Dec 14, 2009 3:29 am
by krenisis
anyone have a free c++ e-book to donate?

Re: FREE E-BOOK ON C PROGRAMMING

PostPosted: Tue Jul 27, 2010 6:59 pm
by Setokyo
A c++ E-book on what

Re: FREE E-BOOK ON C PROGRAMMING

PostPosted: Wed Jul 28, 2010 3:04 pm
by PWNED
Hi I didnt know where to put this...
I am having trouble using if to make events happen i.e. if var. Example = 1 is true then create actor bullet
Plz help!

Re: FREE E-BOOK ON C PROGRAMMING

PostPosted: Wed Jul 28, 2010 5:04 pm
by Game A Gogo
When checking for a condition, use the ==, >=, <=, >, <, != operators :)
ie:
Code: Select all
if(i)
{
    if((i>32&&i%12)||i==1)
    {
        //something
    }
    i++;
}

"i" being a variable

EDIT: Also, next time the place to post problems like this is in Support