C++
C++
Do you have to know C++ to use this engine? I'm a n00b to making games. My friends from school and I wanna make this, but I wanna use something that looks better than RPGMaker2k. I was just wondering if C++ is needed, and if so, is there any SIMPLE totorial to use it? Thanks for your time!
If you got lost on variables m8 you are going to have some problems. There's an app called Game Maker that has a DLL for Irrlicht. If I was you I would check it out, look in the forums and you will find a post. Otherwise you are really going to struggle with making any type of game without knowledge of C++.
DDL? you mean I could use GM with it instead of C++? Gosh I hope so hehe. The thing with the varibles, is that I didn't know how to use them, like, I knew I could put them in, but didn't know what they would do... but if I can use GM instead of C++.. that will be alwsome!(sp?) thanks, ill check it out
Check out the tutorials that come packaged with Irrlicht before saying C++ is too hard for you.
Also look at www.GameTutorials.com
and search around the net for some free books on C++.
There are heaps of sources for learning C++ easily.
I learnt but just going to nehe.gamedev.net and following his code and changing bits and pieces of it. That was years ago now but that is how I started.
Also check out your local library for C++ books - I'm sure they'll have something there
Also look at www.GameTutorials.com
and search around the net for some free books on C++.
There are heaps of sources for learning C++ easily.
I learnt but just going to nehe.gamedev.net and following his code and changing bits and pieces of it. That was years ago now but that is how I started.
Also check out your local library for C++ books - I'm sure they'll have something there
-= Want your C code to control real life robots? www.users.on.net/~symes =-
im sorry to have to ask this, but i need a little help. i got the compiler, and i'm downloading the engine, but there is something wrong. Dev C++ wont let me compile. it says there is an error somewhere. can someone help me? this is the code im trying to get to work.
#include <stdin.h>
main()
{
printf("Hello World\n");
}
can someone tell me whats wrong with that? im gettin fed up with this darn thing.
#include <stdin.h>
main()
{
printf("Hello World\n");
}
can someone tell me whats wrong with that? im gettin fed up with this darn thing.
-
- Posts: 386
- Joined: Thu Sep 25, 2003 12:43 pm
- Contact:
Code: Select all
#include <iostream.h>
using mamespace std;
int main()
{
cout<<"Hello World";
return true;
}