Page 88 of 96

Re: Nioh 2 Complete Edition CT

Posted: Tue Jan 10, 2023 6:12 pm
by Messy6666
Aelwen wrote:
Tue Jan 10, 2023 6:09 pm
well i couldn't find it, so just worked with what i found. Honestly it's very hard to navigate this thread even with other users help
totally agree
+1

Re: Nioh 2 Complete Edition CT

Posted: Mon Jan 16, 2023 5:33 am
by chemicastn
Messy6666 wrote:
Sun Oct 16, 2022 6:51 pm
chemicastn wrote:
Sat Oct 15, 2022 3:19 am
... Has anyone tested what a good value is to set the drop rate to for a good balance of all gear tiers to drop?
No idea, groxer figured this out. It's a long time since i played Nioh 2 , still love the 2 versions tho so let us (me) know if you have input.

tia
4500 seems to be a sweet spot. You get a great amount of higher tier gear but also a good amount of lower tiered ones, and still get good loot like tea utensils, smithing texts, scrolls, soul cores, etc.

Re: Nioh 2 Complete Edition CT

Posted: Mon Jan 16, 2023 9:31 am
by Messy6666
^ great thank you for the info, will add it later (when there's more to change)
For now you can just change one of the current droprates by changing the writeInteger.
Image

Re: Nioh 2 Complete Edition CT

Posted: Tue Jan 17, 2023 12:11 am
by chemicastn
Yea that's how I tested it actually by replacing the 9999 one ^^

Re: Nioh 2 Complete Edition CT

Posted: Fri Jan 20, 2023 12:56 pm
by shernandez
is there a way to get all weapons/armor etc. or drop a specific weapon?
is there no clip?

Re: Nioh 2 Complete Edition CT

Posted: Sat Jan 21, 2023 8:31 am
by Squirrel2022
Messy6666 wrote:
Mon Jan 16, 2023 9:31 am
^ great thank you for the info, will add it later (when there's more to change)
For now you can just change one of the current droprates by changing the writeInteger.
Image
Which application do you use or write?

Re: Nioh 2 Complete Edition CT

Posted: Sat Jan 21, 2023 8:49 am
by Messy6666
Normaly just Visual Studio Code with highlighting plugin's
But that screenshot is UltraEdit with my own syntax highlighting for CT tables ( Cheat Engine, LUA, x86, x64)

if that's what your question was about...

Re: Nioh 2 Complete Edition CT

Posted: Sat Jan 21, 2023 2:19 pm
by PhoenixSenpai
Aelwen wrote:
Tue Jan 10, 2023 5:59 pm
i uploaded the very same table that i downloaded, just with updated id/bytes. i think table itself is from 2021? not this one
viewtopic.php?p=183969#p183969, since i didn't need anything aside from items stats editor
I want to edit my gold but the newest table doesn't work. I'm kind of a newbie at this stuff. What can I do?

Re: Nioh 2 Complete Edition CT

Posted: Sat Jan 21, 2023 2:46 pm
by PhoenixSenpai
Messy6666 wrote:
Tue Jan 10, 2023 6:04 pm
ah ok well the table is maintained at that link for a long time now: viewtopic.php?p=183969#p183969
with a full working equipment editor

and since v1.28.06 there was no need to update it.

anyways great job
edit: ( it got me confused tho lol )
I'm still getting the AOB error :(

Re: Nioh 2 Complete Edition CT

Posted: Sat Jan 21, 2023 4:14 pm
by Aelwen
PhoenixSenpai wrote:
Sat Jan 21, 2023 2:19 pm
Aelwen wrote:
Tue Jan 10, 2023 5:59 pm
i uploaded the very same table that i downloaded, just with updated id/bytes. i think table itself is from 2021? not this one
viewtopic.php?p=183969#p183969, since i didn't need anything aside from items stats editor
I want to edit my gold but the newest table doesn't work. I'm kind of a newbie at this stuff. What can I do?
Hello, this download/file.php?id=47759 table is for editing stats of equipment, soul cores and amount of consumables that you can choose/view in inventory (shinobi box for example)

If you want gold try this one? viewtopic.php?p=183969#p183969

Re: Nioh 2 Complete Edition CT

Posted: Sun Jan 22, 2023 6:29 am
by Toga
The table maintained here viewtopic.php?p=183969#p183969
It has also a fully working equipment stats editor etc

I don't know why someone thought it would be handy to have a seperate one
and also suggesting the full table has not
Hope the mantainer of the full one won't stop

Re: Nioh 2 Complete Edition CT

Posted: Sun Jan 22, 2023 1:17 pm
by Messy6666
PhoenixSenpai wrote:
Sat Jan 21, 2023 2:46 pm
I'm still getting the AOB error :(
Image

Re: Nioh 2 Complete Edition CT

Posted: Mon Jan 23, 2023 1:37 am
by DhaosCollider
Old:
Messy6666 wrote:
Sun Jan 22, 2023 1:17 pm
...
Many people seem to panic just seeing error.

Code: Select all

function Register.enable(author, aobSymbol)
  for i = 1, #aobSymbol do autoAssemble(aobSymbol[i][2]) end
  memrec.color = 0xE16941
end
This should allow the output to be stopped while ensuring other works.

As an aside, I checked the table on CE 7.4 Dark Mode.
Then Memory records that should have appeared in white were black.
So many Memory records blended into a black background.
Messy6666 wrote:
Mon Jan 23, 2023 2:21 pm
I also have that with some other tables in Dark Mode... some entries will change and some don't...
Checked the color values... no idea
OK, try running the following code on Dark Mode and save the table.
I was able to confirm compatibility with Disable Dark Mode on my CE 7.2/7.4.

Code: Select all

for i = 0, AddressList.count - 1 do
    local al = AddressList[i]
    al.color = (al.color == clBlack) and clWhite or al.color
end

Re: Nioh 2 Complete Edition CT

Posted: Mon Jan 23, 2023 2:21 pm
by Messy6666
DhaosCollider wrote:
Mon Jan 23, 2023 1:37 am
This should allow the output to be stopped while ensuring other works.

As an aside, I checked the table on CE 7.4 Dark Mode.
Then Memory records that should have appeared in white were black.
So many Memory records blended into a black background.
ty, i did let it in because i find it informative
but agree it has caused lots of confusion already.
If there's a little more to update, i will remove it for the uploaded table.

I also have that with some other tables in Dark Mode... some entries will change and some don't...
Checked the color values... no idea

regards

Re: Nioh 2 Complete Edition CT

Posted: Mon Jan 23, 2023 4:49 pm
by Messy6666
That worked great!
tyvm @ DhaosCollider