Search found 9 matches

by Riceman
Wed Oct 07, 2009 5:17 pm
Forum: Beginners Help
Topic: Switched from Dev-C++ to MSVC++ Express, and...
Replies: 5
Views: 612

I guess you're using the wrong Irrlicht or irrKlang DLL in your bin directory. You may also have the wrong working directory set in MSVC, try copying the compiled exe manually and running it from windows explorer.

Cheers

This was the problem.

I had the wrong irrlicht.dll file in the Debug ...
by Riceman
Wed Oct 07, 2009 4:47 pm
Forum: Beginners Help
Topic: Switched from Dev-C++ to MSVC++ Express, and...
Replies: 5
Views: 612

It crashes right after this line:

Code: Select all

IrrlichtDevice *device = createDevice(videoType,resolution, 32, false, false, false, &receiver); 
As far as I'm able to tell, this is correctly put together....
by Riceman
Wed Oct 07, 2009 4:26 pm
Forum: Everything 2d/3d Graphics
Topic: Looking for a 3D Modeler
Replies: 9
Views: 3575

Then there's rigging and animation....

I don't think Dorth was particularly kind in his reply. However, his sentiment stands; it will be difficult to convince a modeler to spend the time necessary to create a batch of fully rigged and animated models on a game unless he's really invested in the game.
by Riceman
Wed Oct 07, 2009 4:06 pm
Forum: Beginners Help
Topic: Switched from Dev-C++ to MSVC++ Express, and...
Replies: 5
Views: 612

Still haven't been able to figure this one out.

Anyone have at least a guess?
by Riceman
Mon Oct 05, 2009 1:17 pm
Forum: Project Announcements
Topic: Star Ruler
Replies: 34
Views: 18432

Very impressive. I look forward to seeing what you can do with it.

I'm not thrilled with the font choices.... the font for the menu options at the top of the screen (EMPIRE, PLANET INFO, etc.) is way too generic for such an iconic part of the GUI. Verdana, is it? I'd suggest using a bulkier, more ...
by Riceman
Mon Oct 05, 2009 1:06 pm
Forum: Game Programming
Topic: Developing super hero
Replies: 3
Views: 2127

Sounds like a single-player version of Champions Online, but with better character development.

That's a really ambitious project. Good luck!
by Riceman
Mon Oct 05, 2009 3:25 am
Forum: Beginners Help
Topic: Switched from Dev-C++ to MSVC++ Express, and...
Replies: 5
Views: 612

Switched from Dev-C++ to MSVC++ Express, and...

...my program promptly broke.

Everything is linked correctly (I believe), and my program compiles, but when I try and run it it gives me the old "Windows needs to close ...." message.

As a test, I compiled and ran a few of the tutorials successfully. I also compiled and ran an irrKlang tutorial ...
by Riceman
Tue Dec 30, 2008 9:25 pm
Forum: Everything 2d/3d Graphics
Topic: MMORPG style character customization
Replies: 8
Views: 3542

MMORPG style character customization

I'm looking to produce a single-player RPG using Irrlicht. Among the many features I plan to include is the ability to customize your character's appearance.

There are two ways I could go about this - mesh deformation and texture manipulation.

In the first case, I would need to set up morph ...
by Riceman
Tue Dec 30, 2008 8:44 pm
Forum: Beginners Help
Topic: Memory requirements and level creation/loading
Replies: 5
Views: 666

Similarly, is it incumbent on the coder to write code for a "perpetual" world - that is, a game world that only loads what the player has in his immediate area - or does Irrlicht have an existing library or module that provides this?