
Originally Posted by
powelln93
Whats the difference with c++ and d3d? What can I make with c++
Bad question.
D3D is... I believe a library (ugh I'm a noob at this). It allows you to render 3D models and polygons onto your screen to apear 3D. It makes it easier to display 3D worlds, rather than doing some kind of custom math to change 3D chordinates to 2D chordinates, you can let D3D render all your models for you.
BTW D3D stands for Direct 3D I believe.
CPP (C++) is the programing language. It allows you to code programs that would run on your computer. Using CPP you can access D3D, which would allow you to draw 2D Sprites and such or render 3D models/polygons on your computer.
Since this is a game hacking forum, D3D and CPP are the most commonly used terms so I wouldn't blame you for mixing them.

Originally Posted by
hhhjr1
true but what if he want to learn vb and cpp know more langues the better of a coder you are
Last time I checked, you only need 1 language to make a program. Honestly, knowing more languages can screw you over. VB and C++ are very different, by learning VB first it took me a while to get used to putting a semi-colon after every command. Also by learning .NET first, it is very difficult to start grasping pointers in CPP for me. I'm still trying to understand how pointers work as in .NET everything is managed with the concept of "Give the programmer as little control as possible".