360haven works best with JavaScript enabled
Dark Souls Modding Discussion Only! - Page 33
Loading
Register
Page 33 of 96 FirstFirst ... 8232829303132333435363738435883 ... LastLast
Results 257 to 264 of 763
  1. #257
    polluxval

    Re: Dark Souls Modding Discussion Only!

    Mangekyou_S

    thanks to you. based on ur guide and the programs u mentioned i finally was able to modify my items with hex without messing with the file size wich always turned the save corrupted once i played for a few hours. :)
    ur my hero. thanks again.

  2. #258
    Haven Donator
    Thatguy is offline
    Join Date : Oct 2011
    Posts : 11
    Array

    Re: Dark Souls Modding Discussion Only!

    Quote Originally Posted by Idlehands88 View Post
    Here is my process for manually modding the save:

    1. Rest at a bonfire, then Quit the game.
    2. Extract your DRAKS0005 file from your USB.
    3. Open the DRAKS0005 file in Horizon or Modio and click the Contents tab.
    4. Extract the USER_DATA that your character is stored in, then close your DRAKS0005 file.
    5. Open both the USER_DATA and DRAKS0005 in Hex Workshop.
    6. Edit the USER_DATA first (DON'T FIX THE CHECKSUM YET).
    7. Go to your DRAKS0005 and Search for your characters name (make sure to click the Unicode String box).
    8. Make sure you find your name with your stats above the name (there should be 3 of your name in the DRAKS0005 file).
    9. Copy/Paste the edited info from USER_DATA to DRAKS0005.
    10. Go back to USER_DATA and copy the Checksum and search for it in the DRAKS0005 file.
    11. Calculate the Checksum of USER_DATA and replace the old Checksum in DRAKS0005 with the new one.
    12. Save, Rehash and Resign the save and replace it back on your USB (DON'T ADD THE USER_DATA BACK INTO THE DRAKS0005 FILE).

    EDIT: @Turk lol that's awesome :P
    Can you explain part 7-9 in a bit more detail? how do we find our character names on the drake file w/o having to scroll down looking for it? and it is possible to copy and paste character data from a previous edited file thats hasn't been corrupted yet? i have a backup save thats not corrupted yet but once i beat a boss or run around in the game it gets corrupted. im hoping its possible to just copy my char data to a fresh file cause i really don't want to start over in recollecting all my armor and items.

  3. #259
    Haven Donator
    modder

    Skullkeeper is offline
    Join Date : Dec 2010
    Posts : 286
    Array

    Re: Dark Souls Modding Discussion Only!

    [QUOTE=Idlehands88;42296]Here is my process for manually modding the save:

    1. Rest at a bonfire, then Quit the game.
    2. Extract your DRAKS0005 file from your USB.
    3. Open the DRAKS0005 file in Horizon or Modio and click the Contents tab.
    4. Extract the USER_DATA that your character is stored in, then close your DRAKS0005 file.
    5. Open both the USER_DATA and DRAKS0005 in Hex Workshop.
    6. Edit the USER_DATA first (DON'T FIX THE CHECKSUM YET).
    7. Go to your DRAKS0005 and Search for your characters name (make sure to click the Unicode String box).
    8. Make sure you find your name with your stats above the name (there should be 3 of your name in the DRAKS0005 file).
    9. Copy/Paste the edited info from USER_DATA to DRAKS0005.
    10. Go back to USER_DATA and copy the Checksum and search for it in the DRAKS0005 file.
    11. Calculate the Checksum of USER_DATA and replace the old Checksum in DRAKS0005 with the new one.
    12. Save, Rehash and Resign the save and replace it back on your USB (DON'T ADD THE USER_DATA BACK INTO THE DRAKS0005 FILE).

    I have been using this method except I use hash block calculator to rehash/resign as it doesn't change the size of the file. Everything else I use changes the filesize to 4.5mb. Thanks Idle

  4. #260
    Lefty

    Re: Dark Souls Modding Discussion Only!

    Quote Originally Posted by KiLLeGaCy View Post
    Hello guys, I've learned how to hex the souls and humanity, but I am having trouble hexing items. (I'm new to hexing) I'm trying to figure out how to use the structures you guys are talking about. Is there anyone that can help and explain how to hex items? Like on the shards you use to upgrade I can find the id but I dont know what to change to make the quantity of the item change to 99. Also would love to know how to add items to my user data. Anyone able to help me out? I'd greatly appreciate it.
    I´d like to know that too...I know i have read that somewhere around here, but i can´t find it anymore.
    What do i have to change to change the quantity of an item and how can i add a new item (i´d like to add some humanity items to my inventory)?

    EDIT: Ok i found the thing with the quantity on page 15. Now i´m just looking for how to add items :)

  5. #261
    Member
    mrjinglesusa is offline
    Join Date : Oct 2011
    Location : NoVA
    Posts : 44
    Array
    Twitter: @

    Re: Dark Souls Modding Discussion Only!

    Quote Originally Posted by Lefty View Post
    I´d like to know that too...I know i have read that somewhere around here, but i can´t find it anymore.
    What do i have to change to change the quantity of an item and how can i add a new item (i´d like to add some humanity items to my inventory)?

    EDIT: Ok i found the thing with the quantity on page 15. Now i´m just looking for how to add items :)
    Your items are kept in the inventory in sequential order as you obtain them. To add an item, find the last item in your inventory and add the new item after that, replacing the placeholder FFFFF...000000....FFFFFF....etc.

    For example, items in your inventory in HexWorkshop will look something like this:

    400000000000046A00000063000000450100000000000000000000004000000000
    00046A0000000100000046010000000000000000000000400000000000046A0000
    000300000047010000000000000000000000400000000000046A0000006300000
    048010000000000000000000000FFFFFFF00000000FFFFFFFFFF0 00000000FFFFFFF
    0000000FFFFFFFF00000000FFFFFFFF000000000FFFFFFFF00 000000FFFFFFFF00000

    where the BLUE is the item quantity and the RED is the inventory sequence number. Since 48 is the last item in your inventory sequence, if you want to add something, you would give it sequence number 49.

    So, if you want to add 99 humanity you would replace the first sequence of placeholder FFFFF00000FFFFFF00000...etc. with 40000000000001F40000006300000049010000000000000000 000000.

    I added a bunch of stuff last night and it worked fine. Just be sure your quantity and inventory sequence numbers are in HEX. I'm no expert by any means so I hope this makes sense.

  6. The Following 2 Users Say Thank You to mrjinglesusa For This Useful Post:


  7. #262
    Haven Donator
    turk645 is offline
    Join Date : Oct 2011
    Posts : 146
    Array

    Re: Dark Souls Modding Discussion Only!

    I updated my post on the first page with a structure viewer that has all the item IDs i had on my compter. I will update it with what's all on the list after work. :P Yay for dropdown boxes.

  8. The Following 2 Users Say Thank You to turk645 For This Useful Post:


  9. #263
    Lefty

    Re: Dark Souls Modding Discussion Only!

    Thank you guys, but it seems that i can only mod stats.
    As soon as i touch the items the save is corrupt.

  10. #264
    swyzzlestickz

    Re: Dark Souls Modding Discussion Only!

    Just a quick question hopefully someone will read this. When you guys who get corrupted saves pull your save to your pc are you using the same old container from a previous DRAK005 or pulling a new one each time?


 

 

Similar Threads

  1. Dark Souls 2 modding
    By ManMadeHell in forum Xbox 360 Modding Discussion
    Replies: 11
    Last Post: 06-01-2015, 11:18 PM
  2. Dark Souls 2 Modding Discussion
    By Idlehands88 in forum Xbox 360 Modding Discussion
    Replies: 498
    Last Post: 03-14-2015, 07:48 PM
  3. Dark Souls 2 Modding discovery
    By I was here in forum Xbox 360 Modding Discussion
    Replies: 1
    Last Post: 08-06-2014, 09:03 PM
  4. dark souls 2 modding servise
    By matthewjohn in forum Xbox 360 Modding Discussion
    Replies: 23
    Last Post: 03-21-2014, 04:24 PM

Visitors found this page by searching for:

roupa da beatrice e catalyst dark souls

datk souls hack weapons curse

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

About 360haven

    360haven is an Forum Devoted To Game modding Fans from all over the world.

    An Awesome Community of Xbox 360 Gamers, Modders and Developers who Create & Share Tutorials, Applications, Gfx, Trainers and Gamesaves.

    A haven for the l33t.
    A scarce paradise for modders.

★★★★★¯\_(ツ)_/¯