Author Topic: New Door (JVS) Problem  (Read 628 times)

I am currently working on making some new doors to use for the JVS_Doors system.
So far I only have one door model, but I am unable to get it to even show up in-game.

My problem, I believe, has something to do with this:
Code: [Select]
Loading Add-On: JVS_Blastdown (CRC:-921960886)
Executing Add-Ons/JVS_Blastdown/server.cs.
Add-Ons/JVS_Blastdown/server.cs (0): Unable to find object: 'DoorSO' attempting to call function 'addDoorTypeFromFile'
0 datablocks added.

What am I suppose to do to fix this, and what would be the cause of it?
I thought it might have something to do with the server.cs, but it looks fine to me.
If I need to post the server.cs or Door code, let me know.

Any help would be appreciated.


Cheers, and good night for the next eight-or-so hours.

- Have you ensured that it's loaded JVS Doors first
- Are you using the latest Doors example code file

- Have you ensured that it's loaded JVS Doors first
- Are you using the latest Doors example code file
Space guy is always right.

- Have you ensured that it's loaded JVS Doors first
- Are you using the latest Doors example code file

Yes.
Yes.

Try changing your model with one of the default Wooden Door models. (+ debris/textures/etc.) Does it work?

EDIT: No you aren't.

You should be using DoorTypesSO, not DoorSO.

Code: [Select]
DoorTypesSO.addDoorTypeFromFile("Add-Ons/JVS_Doors/types/Door_Cabin.cs")
« Last Edit: May 14, 2009, 02:29:48 PM by Space Guy »

No you aren't.

You should be using DoorTypesSO, not DoorSO.

Code: [Select]
DoorTypesSO.addDoorTypeFromFile("Add-Ons/JVS_Doors/types/Door_Cabin.cs")

Got it working. Still have to make some simple adjustments on the model, but this helped. Thanks alot Space guy. =D