1 Attachment(s)
Re: Dark Souls 2 Modding Discussion
Quote:
Originally Posted by
rifleman
how about souls? is the value for its number of located 5 bytes ahead of the offset also? just like other items?
for example the covetous demon soul located at offset 03D216A0. I can see its in my item box because of block 1 being 80 and in C to F i can find the offset and 5 bytes ahead of it I found the int32 number of to be 3879 because the hex shows as 27 0F. But in the itembox the number is 999. Is this because of a upper limit on how many can be shown in the itembox?
Maybe I am interpreting something wrong here because at the second byte after the last offset byte I see another 80? and I am counting 5 bytes from the last offset byte to locate the number of.
http://i.imgur.com/acfrhWS.png
Attachment 14300 int 32 max is 999999999 sorry bout the writeing ant got any proper screenshot tool lol
Re: Dark Souls 2 Modding Discussion
Quote:
Originally Posted by
Idlehands88
You know you'd have a 1000000000x easier time if you changed your preferences to only show 16 columns at the top (00-0F).
lol you are right and I have been thinking how to do it, I checked everywhere including and options and preferences but for the life of me cannot figure how to change it to show only columns 0 to F.
Thanks matthewjohn for showing its location.
-----edit-------
figured out how to show 0 to F only, wow I feel like an idiot
Re: Dark Souls 2 Modding Discussion
highlighted are the offsets for the Covetous Demon Soul and below it is the Soul of Mytha, The Baneful Queen, I see that they are in the chest/itembox because of the 80, but where is the quantity byte?
http://i.imgur.com/HcJEbcN.png
Thanks!
Re: Dark Souls 2 Modding Discussion
Quote:
Originally Posted by
rifleman
highlighted are the offsets for the Covetous Demon Soul and below it is the Soul of Mytha, The Baneful Queen, I see that they are in the chest/itembox because of the 80, but where is the quantity byte?
http://i.imgur.com/HcJEbcN.png
Thanks!
2 bytes after the 80. Your values for Quantity are at 270F (9,999).
Re: Dark Souls 2 Modding Discussion
Quote:
Originally Posted by
Idlehands88
2 bytes after the 80. Your values for Quantity are at 270F (9,999).
thanks for that, so for souls it doesn't work the same way as for items for example titanite shards for which the quantity is located 5 bytes after the last offset value.
Re: Dark Souls 2 Modding Discussion
Quote:
Originally Posted by
rifleman
thanks for that, so for souls it doesn't work the same way as for items for example titanite shards for which the quantity is located 5 bytes after the last offset value.
They are the exact same...?
Re: Dark Souls 2 Modding Discussion
Quote:
Originally Posted by
Idlehands88
They are the exact same...?
ok understood, its the same for souls as for the titanite shards and other items, I was looking at the 4 and 5 cols before the offset started, now I understand that it starts from column C and ends at column B.
C D E F 0 1 2 3 4 5 6 7 8 9 A B
cols CDEF = item offset
col 1 = inventory or itembox
cols 4,5 = item quantity
------edit---------------
in your OP you said that 0A value under col 8 means Armor/Weapon Upgrades, what is its significance under a soul item such as Dragonrider soul which is located at offset 03D0DE20? The 0A is only there when the soul is in the itembox not when in inventory.
Thanks!
Re: Dark Souls 2 Modding Discussion
Quote:
Originally Posted by
rifleman
ok understood, its the same for souls as for the titanite shards and other items, I was looking at the 4 and 5 cols before the offset started, now I understand that it starts from column C and ends at column B.
C D E F 0 1 2 3 4 5 6 7 8 9 A B
cols CDEF = item offset
col 1 = inventory or itembox
cols 4,5 = item quantity
------edit---------------
in your OP you said that 0A value under col 8 means Armor/Weapon Upgrades, what is its significance under a soul item such as Dragonrider soul which is located at offset 03D0DE20? The 0A is only there when the soul is in the itembox not when in inventory.
Thanks!
The Armor/Weapon Upgrade value is ONLY there for weapons/Armor. Putting the 0A on an Item does nothing.