Good afternoon, is ther any working equipment editor out here for 1.26? 33 pages and cant seem to find a working one tho :/
DON'T PM ME ANYMORE!
Hints: equip edit script is not target to right address in 0.5~1sec every time.
first, sorry for pm. thought it would be nicer than "spamming" nonsense in this thread.
second, yeah uhm no. i know everything about my job irl but i have absolutly no idea about editing / useing cheat-engine (tables) more than just click boxes and change a couple of numbers. i appreciate every table contributor because you do the work for noobs like me.
i cant find a "equip edit" option / bar in your v1.7 table and your hint doesn't help me.
i would be very grateful if you or someone else could tell me how to edit equipment and / or scroll/cores but if no one want to, well i wish you and every other person in this thread a nice day.
i cant find a "equip edit" option / bar in your v1.7 table and your hint doesn't help me.
i would be very grateful if you or someone else could tell me how to edit equipment and / or scroll/cores but if no one want to, well i wish you and every other person in this thread a nice day.
What do you suppose those three words mean when used together?
ps. weird question but, is there a way to "manually" set the amount of gold/amrita you have without breaking your save file? ie if i want it to be 1 million instead of having it maxed or 99999999.... (i heard manually setting and getting the strings/hex was an issue for nioh 1)
hi copy the the scripts Amrita multiplier and Gold multiplier and change it to this:
* for both to update you have to spend/get Amrita/Gold first
** But at least you don't have to leave to menu
*** ofcourse you can also do it manually every time by finding the values and leaving to menu first before changing... won't break you save
[ENABLE]
{$lua}
if syntaxcheck then return end
-----------------------
memrec.Color=0x000080ff
-------------- A.B.G.R
{$asm}
alloc(newmem,$1000,call_amrita)
label(code_amrita)
registersymbol(code_amrita,amrita_amount)
newmem:
code_amrita:
readmem(call_amrita,5)
// imul rdx,[amrita_multiplier] // original from Amrita multiplier script
mov rdx,[amrita_amount] // set amount to #, get some amrita to update
jmp return
align 10 CC
amrita_amount:
dq #9123123
call_amrita:
jmp code_amrita
return:
[DISABLE]
{$lua}
if syntaxcheck then return end
-----------------------
memrec.Color=0x000080ff
-------------- A.B.G.R
{$asm}
call_amrita:
readmem(code_amrita,5)
unregistersymbol(code_amrita,amrita_amount)
dealloc(newmem)
[ENABLE]
{$lua}
if syntaxcheck then return end
-----------------------
memrec.Color=0x000080ff
-------------- A.B.G.R
{$asm}
alloc(newmem,$1000,call_money)
label(code_money)
registersymbol(code_money,money_amount)
newmem:
code_money:
readmem(call_money,5)
// imul rdx,[money_multiplier] // original from Gold multiplier
mov rdx, [money_amount] // set to # amount and get/spend gold to update
jmp return
align 10 CC
money_amount:
dq #9123123
call_money:
jmp code_money
return:
[DISABLE]
{$lua}
if syntaxcheck then return end
-----------------------
memrec.Color=0x000080ff
-------------- A.B.G.R
{$asm}
call_money:
readmem(code_money,5)
unregistersymbol(code_money,money_amount)
dealloc(newmem)
If you want to be able to input the values you have to change the name and change it to 8 bytes
thanks... but for a different reason. your instructions dont seem to work for me. im using it for version 1.26 of the game, and it still gives me the "...was supposed to be added to the symbolist but isn't declared" error. even after following the instruction and changing values and shit im just lost.
i got it to edit though by manually doing it and changing it to 8bit, AND actually going to the title screen to edit shit. i didnt know this before and it wasnt working lol. so yea, thnx for this info lol
thanks... but for a different reason. your instructions dont seem to work for me. im using it for version 1.26 of the game, and it still gives me the "...was supposed to be added to the symbolist but isn't declared" error. even after following the instruction and changing values and shit im just lost.
i got it to edit though by manually doing it and changing it to 8bit, AND actually going to the title screen to edit shit. i didnt know this before and it wasnt working lol. so yea, thnx for this info lol
ah pitty must be going wrong somewhere in the process... i couldn't check the cheats ((as in the screenshot) if there was that error
anyway glad the manually fix did it for you