
Originally Posted by
rolls
Rofl you guys are noob, with c++ you can only make games like pinball E.C.T 70-80's games
In order to make a game like nexons combat arms, you need to have knowloage in multiple language, i have no idea if it is possible to make a game like combat arms with c++, but i guarantee that you have have shit graphics, I think they do have SOME, very little but some C++, You can see that has in the mountains in snow Vally, and even maby with 3d vision (Program) and c++ they can make a few pipes E.C.T, but the weapons must of been with 3D Vision, its so obvious when you know how to use it, because of the angles E.C.T
But you need more than 2 people to make a a game like nexon, you need at least 10 people + one person who knows about every language, not much, but has to know
One simple question: What the hell are you talking about?
First of all, it's not C++ that makes the graphics "shitty". The graphics are determined in part by the power of your GPU (Graphic Processing Unit (or graphic card...)) and by the details of the models and environment. Models are your body, your weapons, even some misc. items in the game can be considered models. And the environment is the map, the light, the shadow, the effects, movable objects...
Now secondly, the models and environment (which together are your graphics and that are put in use by a graphic engine) are made with other programs. Because those other programs are much more powerful for graphic design. BUT, in general the rest of the game is made with C++. You just integrate your models, your environment and your media (sounds, videos) to your C++ project. C++ will basically make the game run... Meaning that it will make the models and the environment react with a given action. For example, when you run in CA, you press 'Shift' to do it. Now, in C++ you can determine that when the user presses 'Shift', the player runs.
(The engine is really the BIG part of the game). Mostly coded in C++, but more and more programmers start coding it in python, simply because what would take 40 lines of code in C++ would take 6 in python.
And of course, it's way longer than just that... That is just an overview of the whole thing.