Game Development Community

Environmental content animated objects failure

by Heron Huang · in General Discussion · 10/11/2003 (2:23 am) · 2 replies

Hi all,
I just got BraveTree's new environmental content pack, following the documents(copy dts ,their texture and the Scripts into the right folders).I can see rocks and grasses but I cann't see butterfly,birds and fish ,all animated objects failed to load into the scene.The console log file is :
.............
InitNaturePack()
NaturePack: Found 4 paths.
fps/server/scripts/nature_package.cs (40): Unable to instantiate non-conobject class AIPlayer.
NaturePack Error: Failed to create Butterfly for path 0!
fps/server/scripts/nature_package.cs (40): Unable to instantiate non-conobject class AIPlayer.
NaturePack Error: Failed to create BrookTrout for path 1!
fps/server/scripts/nature_package.cs (40): Unable to instantiate non-conobject class AIPlayer.
NaturePack Error: Failed to create brooktrout for path 2!
fps/server/scripts/nature_package.cs (40): Unable to instantiate non-conobject class AIPlayer.
NaturePack Error: Failed to create BlackBird for path 3!
CADD: 1433 local
...............

I cann't got what i am wrong or some steps missed,Any suggestion?
Many thanks in advance,
Yours Heron

#1
10/11/2003 (3:57 am)
You need to add AIPlayer.cc (in engine/game folder) to MSVC++ to compile it.
#2
10/11/2003 (10:20 am)
Hi Chris,
Many thanks to you for your help,but new problem happened after I added AIPlayer.cc to the project and recompiled it,that's the new log :
.........
InitNaturePack()
NaturePack: Found 4 paths.
NaturePack: Created Butterfly for path 0.
fps/server/scripts/nature_package.cs (51): Unknown command setEnergyLevel.
Object (1411) AIPlayer -> AIConnection -> GameConnection -> NetConnection -> SimGroup -> SimSet -> SimObject
fps/server/scripts/nature_package.cs (52): Unknown command setShapeName.
Object (1411) AIPlayer -> AIConnection -> GameConnection -> NetConnection -> SimGroup -> SimSet -> SimObject
fps/server/scripts/nature_package.cs (67): Unknown command setTransform.
Object (1411) AIPlayer -> AIConnection -> GameConnection -> NetConnection -> SimGroup -> SimSet -> SimObject
NaturePack: Created BrookTrout for path 1.
fps/server/scripts/nature_package.cs (51): Unknown command setEnergyLevel.
Object (1412) AIPlayer -> AIConnection -> GameConnection -> NetConnection -> SimGroup -> SimSet -> SimObject
fps/server/scripts/nature_package.cs (52): Unknown command setShapeName.
Object (1412) AIPlayer -> AIConnection -> GameConnection -> NetConnection -> SimGroup -> SimSet -> SimObject
fps/server/scripts/nature_package.cs (67): Unknown command setTransform.
Object (1412) AIPlayer -> AIConnection -> GameConnection -> NetConnection -> SimGroup -> SimSet -> SimObject
NaturePack: Created brooktrout for path 2.
fps/server/scripts/nature_package.cs (51): Unknown command setEnergyLevel.
Object (1413) AIPlayer -> AIConnection -> GameConnection -> NetConnection -> SimGroup -> SimSet -> SimObject
fps/server/scripts/nature_package.cs (52): Unknown command setShapeName.
Object (1413) AIPlayer -> AIConnection -> GameConnection -> NetConnection -> SimGroup -> SimSet -> SimObject
fps/server/scripts/nature_package.cs (67): Unknown command setTransform.
Object (1413) AIPlayer -> AIConnection -> GameConnection -> NetConnection -> SimGroup -> SimSet -> SimObject
NaturePack: Created BlackBird for path 3.
fps/server/scripts/nature_package.cs (51): Unknown command setEnergyLevel.
Object (1414) AIPlayer -> AIConnection -> GameConnection -> NetConnection -> SimGroup -> SimSet -> SimObject
fps/server/scripts/nature_package.cs (52): Unknown command setShapeName.
Object (1414) AIPlayer -> AIConnection -> GameConnection -> NetConnection -> SimGroup -> SimSet -> SimObject
fps/server/scripts/nature_package.cs (67): Unknown command setTransform.
Object (1414) AIPlayer -> AIConnection -> GameConnection -> NetConnection -> SimGroup -> SimSet -> SimObject
CADD: 1416 local
............
need your help.Thanks
Best regards,
Yours Heron