Any new modders need help?

Freeform discussion about anything related to modding Transcendence.
Post Reply
schilcote
Militia Captain
Militia Captain
Posts: 726
Joined: Sat Feb 02, 2008 7:22 pm

If any beginner needs help with a mod, I'm usually on IRC around 9 to 11. Or you could post in this thread asking me for help. If anybody needs something explained, just ask.
[schilcote] It doesn't have to be good, it just has to not be "wow is that the only thing you could think of" bad
User avatar
Little Modder
Commonwealth Pilot
Commonwealth Pilot
Posts: 51
Joined: Sun Mar 29, 2009 3:43 pm
Location: Somewhere over the rainbow...

Yes. Can you explain me what means this error:

Unknown image: d646f11d ?
If you cannot say something nice about somebody, you better don't say anything.
-Don't believe me?!? Check it out!! (not recommended)
User avatar
Atarlost
Fleet Admiral
Fleet Admiral
Posts: 2391
Joined: Tue Aug 26, 2008 12:02 am

That looks like a 32 bit int in hex so it's probably a UNID unless you normally name things in gobeldygook. It's in the user range, not the core game so it's a mod. Do a case insensative search of every mod you've added since you started getting the error.

You should find something like

Code: Select all

	<!ENTITY rsShipInterior				"0x0000F002">
The raw UNID should only show up in the !ENTITY tag. If it shows up anywhere else replace it with the entity. (rsShipInterior in the example)

search for the entity

You should find something like

Code: Select all

<Image UNID="&rsShipInterior;"		bitmap="ShipInterior.jpg"			loadOnUse="true" />
I think a missing file gives a error with the file name instead of the UNID so your image tag is probably faulty. Post the image tag. I may be remembering the error on file load incorrectly so make sure the file's in your Extensions directory. If there's a path it's a relative path from the Extensions directory.
Post Reply