Search found 35 matches

by ultran00b
Mon Jan 21, 2008 11:09 pm
Forum: Beginners Help
Topic: What to use for an indoor/outdoor RPG?
Replies: 8
Views: 575

Just so you know, Rogerberg, IrrSpintz is defunct. In it's place is the 3Demon engine, located here.

Just to let you know.
by ultran00b
Sun Jan 13, 2008 8:06 pm
Forum: Beginners Help
Topic: IeventReciever error????[solved]
Replies: 16
Views: 774

Code: Select all

virtual bool OnEvent(SEvent event)
should be changed to

Code: Select all

virtual bool OnEvent(const SEvent &event)
I think...
by ultran00b
Wed Dec 05, 2007 1:57 pm
Forum: Beginners Help
Topic: LNK2019 error
Replies: 3
Views: 435

Why did you put libc.lib in your ignore list? Include BOTH ode.lib AND libc.lib and see what happens.
by ultran00b
Sun Dec 02, 2007 10:01 pm
Forum: Beginners Help
Topic: run time error
Replies: 2
Views: 185

This line I believe to be the problem: CIrrEventReceiver* rv = new CIrrEventReceiver(); I don't think that the programmer has to allocate his event receiver off the heap... In fact, I don't even think that your event receiver has to be a pointer. I usually use something like this, and it works for m...
by ultran00b
Sun Dec 02, 2007 9:52 pm
Forum: Beginners Help
Topic: irrlicht 1.4 & irrklang 1.0.2
Replies: 3
Views: 224

Weeeell, I probably should have been nicer, but I don't think that question was really too reasonable. And he doesn't need to know where to download irrKlang :D
by ultran00b
Sun Dec 02, 2007 2:42 pm
Forum: Beginners Help
Topic: irrlicht 1.4 & irrklang 1.0.2
Replies: 3
Views: 224

As to "How do I use irrlicht and irrklang together?", well, why don't you search around the forums? The search tool is a mighty weapon. But aside from that, I'll give you one hint: look at the irrlicht demo!!!
by ultran00b
Sat Dec 01, 2007 10:33 pm
Forum: Beginners Help
Topic: need help with two things
Replies: 8
Views: 393

Ugh... Well, you can learn C++ from a book, or from an online tutorial. Look on cplusplus.com for a few good ones. And as to where can you make music for your game, ummmm, you can compose it yourself :D
by ultran00b
Sat Dec 01, 2007 3:12 pm
Forum: Beginners Help
Topic: Mouse controls FPS camera - custom
Replies: 6
Views: 344

Rogerborg: At least it's not as big as JP's...
by ultran00b
Sat Dec 01, 2007 4:55 am
Forum: Beginners Help
Topic: Mouse controls FPS camera - custom
Replies: 6
Views: 344

The source code for the FPS camera can be found in the 'source' directory, in CCameraFPSSceneNode.h and .cpp.
by ultran00b
Fri Nov 30, 2007 8:30 pm
Forum: Project Announcements
Topic: Another interior demo
Replies: 14
Views: 1974

Wow dude!!! That's awesome. I use Blender a bit, but I can't model anything like this (at least not yet). By the way, since you used Yaf(a)ray, did you use it's awesome global illumination stuff?
by ultran00b
Fri Nov 30, 2007 7:25 pm
Forum: Beginners Help
Topic: Weird xml problem
Replies: 3
Views: 572

No Acki, Ambiera has a code example that shows how to do this, and you don't need the filesystem.
by ultran00b
Fri Nov 30, 2007 3:10 pm
Forum: Beginners Help
Topic: Enemy with health , armour ...
Replies: 7
Views: 619

I don't really support spoon-feeding people code, but I will provide a link to a tutorial here. And a few other words: "When in doubt, Google it!".
by ultran00b
Thu Nov 29, 2007 10:14 pm
Forum: Beginners Help
Topic: What version of VC++ do you guys use?
Replies: 19
Views: 757

Like hybrid said, don't mix IDE's with compilers. It is a personal pet peeve with me. Dev-c++ is an integrated development environment, NOT a compiler. By default, it uses GCC as it's compiler.
by ultran00b
Thu Nov 29, 2007 8:55 pm
Forum: Beginners Help
Topic: Hold shift to make the FPS camera go faster
Replies: 28
Views: 1242

The third argument of addCameraSceneNodeFPS lets you define the move speed of the camera. But there is NO member, "setMoveSpeed()", at least no public member.
by ultran00b
Thu Nov 29, 2007 5:40 pm
Forum: Beginners Help
Topic: CDemo.h:65: error: ‘audio’ has not been declared
Replies: 4
Views: 237

If you are a Java dev, use jIrr, the Java wrapper for Irrlicht.