logo   login
right
Home Forums Downloads Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Forum Info
Forum Members: 18,639
Total Threads: 8,742
Posts: 95,491

Administrators:
DeeZire, Redemption

There are currently 55 users online.
Partner Links

Free Credit Repair

Learn the Ticket Broker Secrets
Advertisements


LOTR: Battle For Middle Earth I & II Editing Discuss any modding related issues to do with the Lord Of The Rings: Battle For Middle Earth I and II RTS games here.

Reply
 
LinkBack Thread Tools
Old 12-18-2004, 07:35 PM   #1 (permalink)
Senior Member
 
Join Date: Jun 2003
Posts: 462
Send a message via AIM to Kelso Send a message via MSN to Kelso
Default Art code issues

Is anyone else having issues implementing new w3d models? In particular I was trying to write some new structures and I was basically replacing existing structures' models. They always failed to appear. I noticed there is a new draw module- W3DScriptedModelDraw. This, I assume, allows you to use LUA in the art code. However simply changing the Model = tag to something new, and even exporting over the existing W3D model causes it to not show up ingame. After hunting around I noticed that you can put a W3DModelDraw module in front of a W3DScriptedModelDraw module. Not sure what the advantages of this are, but I tried to do that to declare the new model and the game crashed on start up, something about missing particle systems in game.dat. Anyone else having issues with this? I'm thinking it may be my RenX, but I'm not entirely sure.

It also appears, unfortunately, that we no longer get CrashDumpLog's like we did in Generals which makes finding bugs really fun... :/
Kelso is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-18-2004, 09:33 PM   #2 (permalink)
Administrator
 
DeeZire's Avatar
 
Join Date: Dec 2002
Posts: 1,913
Send a message via ICQ to DeeZire
Default

Are you using the -mod command line parameter?
DeeZire is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-18-2004, 11:22 PM   #3 (permalink)
Member
 
Join Date: Mar 2003
Location: USA
Posts: 85
Send a message via ICQ to Smartmlp Send a message via AIM to Smartmlp Send a message via MSN to Smartmlp Send a message via Yahoo to Smartmlp
Default

I dont know if its me or what, but I cant seem to get any of my custom w3d models into the game, if Im replacing ones or using new ones.
Smartmlp is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-18-2004, 11:25 PM   #4 (permalink)
Senior Member
 
Join Date: Jun 2003
Posts: 462
Send a message via AIM to Kelso Send a message via MSN to Kelso
Default

No, I'm using -preferLocalFiles

EDIT: I also did a reskin of the Gondor Soldier so he would look like a Roman infantryman. The armor skin turned out fine but the edited shield texture fails to appear, the old one is still there. I did the same thing for Faramir's shield, just to test it out, and his edited shield showed up ingame just fine. The Gondor Soldier shield texture is gumaarmsshield.dds correct?
Kelso is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-18-2004, 11:45 PM   #5 (permalink)
Senior Member
 
Join Date: Apr 2003
Location: Canada
Posts: 968
Send a message via MSN to Eradicator
Default

I know someone with the exact same problem. No w3d files exported from RenX will show in BFME. DZ, is it possible the file format has slightly changed and perhaps the w3d files need certain bones or sub objects to show up?
Eradicator is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-19-2004, 12:51 AM   #6 (permalink)
Senior Member
 
Join Date: Dec 2002
Location: Nod base
Posts: 172
Default

i have the same problem.i even tried just import generals w3d to GMAX then export it with same filename,but don't work.maybe our only hope is someone make a BFME GMAX script ...
ravage is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-19-2004, 01:36 AM   #7 (permalink)
Administrator
 
DeeZire's Avatar
 
Join Date: Dec 2002
Posts: 1,913
Send a message via ICQ to DeeZire
Default

Actually, the problem is much worse... I'll try to keep it simple.

Theres a file in the installation directory called asset.dat. Its a database reference table file containing a list of almost all of the w3d and associated texture assets in the game. If your model/texture/whatever isnt in the file, the game wont recognize it, even with the -mod parameter it seems. Even worse, it seems that the dat file instances the big files, so replacing an asset with another of the same name wont work....

Where youre having luck with some models/textures is probably an indication that its not listed in asset.dat so is not subject to the same scrutiny.
DeeZire is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-19-2004, 01:51 AM   #8 (permalink)
Senior Member
 
Join Date: Feb 2004
Posts: 872
Default

This is getting to the point where it's getting alittle freakin rediculas just to mod this game. Nice they included some generals coding but WTF is up with all this crap?

Well DAT files have a set character number. So if you add your models/ TGAs, will that upset that balance here. Will it accept a length other than the orginal DAT file?
Hostile is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-19-2004, 02:29 AM   #9 (permalink)
Senior Member
 
Join Date: Apr 2003
Location: Canada
Posts: 968
Send a message via MSN to Eradicator
Default

Quote:
Originally Posted by DeeZire";p=&quot View Post
Where youre having luck with some models/textures is probably an indication that its not listed in asset.dat so is not subject to the same scrutiny.
I was following you until this sentence. I thought you said if your file is not listed in the .dat the game won't use it so how would one get "lucky" by using art not listed in asset.dat?
So, am I to understand they went out of their way to program this uselessly annoying process to prevent custom art?
Eradicator is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-19-2004, 04:19 AM   #10 (permalink)
Administrator
 
DeeZire's Avatar
 
Join Date: Dec 2002
Posts: 1,913
Send a message via ICQ to DeeZire
Default

Possibly

IF
asset is listed in asset.dat file
THEN
fetch asset from BIG file (nowhere else) and use it in game
ELSE
you're screwed
DeeZire is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
ENUM issues and Upgrade.ini issues Azirahael Generals & Zero Hour Editing 1 01-22-2005 01:17 AM
Civvy Building $$ Code Issues (Blitz2) smurfbizkit Generals & Zero Hour Editing 1 07-11-2004 11:22 PM
dds transparency issues MisterGoid Generals & Zero Hour Editing 3 02-18-2004 02:17 PM
transparency issues - please help dbcooper Generals & Zero Hour Editing 7 11-19-2003 12:27 AM
RA2 Yuri Issues CitizenKane Red Alert 2 & Yuri's Revenge Editing 9 01-12-2003 03:49 PM


All times are GMT -4. The time now is 02:29 PM.


Design By: Miner Skinz.com
Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.