GTA game progress

Ok ill post some videos on youtube.

and just to let you know c++ is a complacated lanuage its not like blender

Yup. I know. :slight_smile:

ok I have the video created but its proccessing
and keep in mind that this is my second video so
its not going to be the best tutorial in the world but
ill try and teach you but to tell you the truth im still learning myself
its a huge lanuage

Thanks man. I appreciate it. :smiley:

You need to be able to code something without visualizing it if you want to get into game development. You could pick up UDK which is a VERY resourceful engine. Although not for the feint of heart.

Ok go to google



then type in antiRTFM c++
and you should come up with this


click the link I have circled


and it should take you to this page
click on the video and start waching!:smiley:

Ok this is just to let you know how c++ code looks like

//beginning of code

void init()
{
allegro_init(); // starts the game engine
install_keyboard(); // allows us to use the keyboard
set_gfx_mode(GFX_AUTODETECT_WINDOWED,640,480,0,0); // creates a window
set_color_depth(32); // sets the color depth
}

int main()
{
init();
BITMAP* bmp = create_bitmap(640,480);
int x = 0;
int y = 0;

while(!key[KEY_ESC])
{
if(key[KEY_LEFT])
x–;

if(key[KEY_RIGHT])
x++;

if(key[KEY_UP])
y–;

if(key[KEY_DOWN])
y++;

draw_sprite(bmp,player,x,y);
blit(bmp,screen,0,0,0,0,bmp->w,bmp->h);
}
destroy_bitmap(bmp);

return 0;

}
END_OF_MAIN()

//end of code

I see. Thanks man!

Need a designer/modeler for this?

need a designer/modeler for what?

This game that you posted about in the game forum, where people come to recruit team members. It seems like an interesting project and i love designing urban things.

sure can you make some models of people?

Im pretty bad at modeling people, Im better at buidlings and such :stuck_out_tongue:

[B]NoPainNoGain --You know C++ like for real???

Dude I could use you, that is if you actually know C++.

If you help me with coding, I’ll help you with anything in Blender, I can do it all (except Python).

So, think about it, email me at Micahsking(at)Gmail(dot)com

[/B]

@Micah702 hmmm c++ isnt the greatest language there is, it depends on the application of things. If you want to learn how to make a blender project you should learn python. If you want to get into serious programming and spend years learning something, go into C++. If you want an ever changing environment where new things popup each day and languages can change almost completely, go the web route. It all depends on what you want to do.

yeah i know c++
what do you need?