FORUM ARCHIVED

Need help!

Discussion in 'Modding' started by mrdawn2, Mar 23, 2012.

  1. mrdawn2

    mrdawn2 Member

    So, me and my friend tried to mod DoD, but we cant figure out what we have done wrong. Could you tell us what we did wrong?
     

    Attached Files:

  2. FaxCelestis

    FaxCelestis Will Mod for Digglebucks

    You need to put <itemDB> </itemDB> around the contents of itemDB.xml, and <craftDB> and </craftDB> around the contents of craftDB.xml.
     
  3. mrdawn2

    mrdawn2 Member

    Could you make that more clear?
     
  4. FaxCelestis

    FaxCelestis Will Mod for Digglebucks

    The first line in itemDB.xml should be <itemDB>.
    The last line in itemDB.xml should be </itemDB>.

    The first line in craftDB.xml should be <craftDB>.
    The last line in craftDB.xml should be </craftDB>.
     
  5. mrdawn2

    mrdawn2 Member

    But they already are...
     
  6. FaxCelestis

    FaxCelestis Will Mod for Digglebucks

    Not in the code.txt file, they're not. But if they are in the proper files, then that should be okay. Where did you put the files themselves?
     
  7. mrdawn2

    mrdawn2 Member

    I have placed the files in gaslamp/games and there I placd the files
     
  8. FaxCelestis

    FaxCelestis Will Mod for Digglebucks

    Should be C:/[user]/documents/gaslamp games/mods/[mod name]
     
  9. mrdawn2

    mrdawn2 Member

    I don't have thath mod map?
     
  10. Ruigi

    Ruigi Will Mod for Digglebucks

    someone really needs to make a video tutorial.
     
  11. Kazeto

    Kazeto Member

    Or rather, mrdawn2 needs to read the modding guide...

    Mrdawn2, go and read the modding guide. You can find informations on how to install a mod successfully in said guide. You install your own mods just like you would any other ones.
    If you don't have the required folder, then create it. That is always the case.
     
  12. OmniaNigrum

    OmniaNigrum Member

  13. mrdawn2

    mrdawn2 Member

    Okay, so i kinda made the mod...
    Still not showing up.
    I made an "mod" map in the directory you gave me.
    I even compressed the mod....
    Please tell me whats off this time.
     

    Attached Files:

  14. OmniaNigrum

    OmniaNigrum Member

    As for the exact reason why it does not show, I am unsure. But it *Does* work if you simply extract it into the ..\mods\axes\.. subdirectory.

    Try for yourself. If it is in C:\pathhere\mods\axes.zip then you should extract it so the directories are inside the mods directory like this: C:\pathhere\mods\axes\items\.. and C:\pathhere\mods\axes\mod\..

    I will look at it further in a bit, but my Phenobarbital is kicking in and putting me to sleep. When I wake I will see if I can find exactly what you need to do. One thing that is immediately obvious is that tabs are negated in your text. What text editor are you using? And are you saving as ASCII or ANSI or some other format of text?
     
  15. mrdawn2

    mrdawn2 Member

    notepad and I don't understand what you say.
     
  16. OmniaNigrum

    OmniaNigrum Member

    Tabs are the big spaces that are actually a single character. They are a simple character that is represented by several spaces in most text editors. That is why most of the mods look like they do not use word wrap. (You can easily distinguish a tab from a series of spaces by trying to delete them. All the spaces in a given sequence disappear when you hit delete once, where it would take several strokes of delete to remove spaces making the clear spot in the text.

    There are actually several different types of tabs in files formats. Just like some plain text files look garbled in Windows Notepad while looking normal in Wordpad.

    I will elaborate more later. Sleep calls me now. :)
     
  17. mrdawn2

    mrdawn2 Member

    I have fixed now the part thath I can see the mod but I don't see the image of a axe I add thath can be crafted and not found.
     
  18. OmniaNigrum

    OmniaNigrum Member

    Odd. I am puzzled. (That usually means it is something obvious.)

    But the skills show when unzipped. I will check the rest and see if I can find them. Is the image missing, or the recipe itself?

    Is it a standard recipe or a secret recipe? (Secret meaning you have to discover it from a bookshelf somewhere before it is unlocked for that character.)

    You may want to look at other mods that add items and recipes to see how they handle it. Clockwork Knights is a pristine example of how to do such things right.
     
  19. hummie

    hummie Member

    Hi I am the friend of Mrdawn2 and I was posting on his acount and will give you again some Inforamtion.
    It is not a secret recipe it is standard so you can see it at the start if you have a anvil.
    But it odesn't show the images can you help me to make the recipe show it's image.
    I doesn't see the images of the ingriedients too.
    adn when I want to carft it my game crashes. ( when I have the ingriedients and lvl)
    I see the boxes but and I see the skill lvl I needbut I don't know sure of it works can you test it plz.
     
  20. FaxCelestis

    FaxCelestis Will Mod for Digglebucks

    ...I have found your problem.

    <craft>
    <output skill="3" name=" Demonic axe"/> <!-- RIGHT HERE IN THIS LINE, THERE IS A SPACE BETWEEN " AND DEMONIC. REMOVE IT -->
    <tool tag="smithing" />
    <input name="Dark Orb "/>
    <input name="Crude Stone Axe "/>
    <input name="Steel Ingot "/>
    </craft>
     
    OmniNegro likes this.