I test the pointer code of cozy grove you made. It's OK.
It's difficult to find the B8+0+... pointer chain for this game. I found some B8+ something pointers yesterday but all were not stable.
request codes
Blueys Quest For The Gold Pen 1.0.1
TID: 0100EF802631A000
BID: A9715185644781FE
all items with high quantity
increased character speed
moon jump
gta vice city de
title id:0100182014022000
build id:9151E53EE514B03A
hey guys so iam trying to update the codes for gta vice city DE and i have most working for the latest version of the game but ther are 6 codes that have me stumped they are
keep weapons after death
weapons set 1
weapons set 2
weapons set 3
wanted level 0
wanted level 6
wnated level off (only done if asm)
if some one would be kind enough to teach me how to do these type of codes.
i would like to update these for game version 1.0.8. i have already remade all the health codes i also used the updater tool which gave me all the spawn codes and explode all near by vehicles and inf ammo and grenades and inf car health so im mostly done. anyways i would greatly appreciate any help to learn how the specific codes are done as i have no idea what search parameters to do thanks in advance
gta vice city de
title id:0100182014022000
build id:9151E53EE514B03A
hey guys so iam trying to update the codes for gta vice city DE and i have most working for the latest version of the game but ther are 6 codes that have me stumped they are
keep weapons after death
weapons set 1
weapons set 2
weapons set 3
wanted level 0
wanted level 6
wnated level off (only done if asm)
if some one would be kind enough to teach me how to do these type of codes.
i would like to update these for game version 1.0.8. i have already remade all the health codes i also used the updater tool which gave me all the spawn codes and explode all near by vehicles and inf ammo and grenades and inf car health so im mostly done. anyways i would greatly appreciate any help to learn how the specific codes are done as i have no idea what search parameters to do thanks in advance
oh ok so what i want to learn how to do for example with gtavc de the weapons 1 this is a code that in 1.0.7 triggered what i beleive is a handheld cheat to access weapon set 1 in 1.0.7 you wouild press r to activate what i want to know is how the previouse codemaker was able to find the address for the handheld codes to make this i also have no idea how they got keep weapons after death how would i approach trying to find the address for this and the other codes i hope this clarifys things and thank you for your response
Hello can you make cheats for gta vice city definitive edition 1.0.8.
tid: 0100182014022000
bid: 9151E53EE514B03A
The version on the forum is only half-functional (Armor and health, ammo and etc is not working)
oh ok so what i want to learn how to do for example with gtavc de the weapons 1 this is a code that in 1.0.7 triggered what i beleive is a handheld cheat to access weapon set 1 in 1.0.7 you wouild press r to activate what i want to know is how the previouse codemaker was able to find the address for the handheld codes to make this i also have no idea how they got keep weapons after death how would i approach trying to find the address for this and the other codes i hope this clarifys things and thank you for your response
these are for gta vice city definitive edition 1.0.7 and are what i would like to update to 1.0.8 but i dont know how to find these cheats with searching
these are for gta vice city definitive edition 1.0.7 and are what i would like to update to 1.0.8 but i dont know how to find these cheats with searching
[02# Wanted Level 6]
[Main+R10+0x0000F186A4] = 0x94D8EE9F bl #0x4554120 <= at 0x4554120 you need to find out with the game code at this address what it do, a good chance you aob it and just replace may work
Wanted Level (off)]
[Main+R10+0x0000F186A4] = 0xB9002268 str w8, [x19, #0x20] <= restore the original code that the first cheat hacked
[07# Keep Weapons After Death]
[Main+R10+0x0000F4B540] = 0xD65F03C0 ret <= function that take you weapon away is replace with a ret so nothing happens
[Keep Weapons After Death (off)]
[Main+R10+0x0000F4B540] = 0xA9BE4FF4 stp x20, x19, [sp, #-0x20]! <= the first line of the function that the previous code replace
[08# weapon 1 (Press R)]
[Main+R10+0x0000EF0AC0] = 0x7100CC3F cmp w1, #0x33 <= likely to be the encoding for "R"
[Main+R10+0x0000EF0AC4] = 0x54000041 b.ne #0xef0acc
[Main+R10+0x0000EF0AC8] = 0x17FFADBE b #0xedc1c0 <= You need to know what this is for weapon 1 in new version
[Main+R10+0x0000EF0ACC] = 0xD65F03C0 ret
Try AOB m+0xedc1c0 to located it and see if it works
these are for gta vice city definitive edition 1.0.7 and are what i would like to update to 1.0.8 but i dont know how to find these cheats with searching
these are for gta vice city definitive edition 1.0.7 and are what i would like to update to 1.0.8 but i dont know how to find these cheats with searching
a simple method to update the ASM(aob) code is using zzpong's code updater, but firstly you should have 1.0.7 main file and 1.0.8 main file{//if you have the 1.07/1.08 original UPD.nsp/nsz file, code updater will extract them automatically}. if some code address can't be found by code updater, use IDA pro to find and fix the missed address code. the RCs caused basically is AOB register changed or code flowchart changed. I post some examples how to fix the missed address code before by IDA.
another method is to write an AOB CheatGen.py script then generate the new AOB code by IDA with the new main file. if AOB broken is happened, you should fix the AOB code firstly for new UPD version.
[02# Wanted Level 6]
[Main+R10+0x0000F186A4] = 0x94D8EE9F bl #0x4554120 <= at 0x4554120 you need to find out with the game code at this address what it do, a good chance you aob it and just replace may work
Wanted Level (off)]
[Main+R10+0x0000F186A4] = 0xB9002268 str w8, [x19, #0x20] <= restore the original code that the first cheat hacked
[07# Keep Weapons After Death]
[Main+R10+0x0000F4B540] = 0xD65F03C0 ret <= function that take you weapon away is replace with a ret so nothing happens
[Keep Weapons After Death (off)]
[Main+R10+0x0000F4B540] = 0xA9BE4FF4 stp x20, x19, [sp, #-0x20]! <= the first line of the function that the previous code replace
[08# weapon 1 (Press R)]
[Main+R10+0x0000EF0AC0] = 0x7100CC3F cmp w1, #0x33 <= likely to be the encoding for "R"
[Main+R10+0x0000EF0AC4] = 0x54000041 b.ne #0xef0acc
[Main+R10+0x0000EF0AC8] = 0x17FFADBE b #0xedc1c0 <= You need to know what this is for weapon 1 in new version
[Main+R10+0x0000EF0ACC] = 0xD65F03C0 ret
Try AOB m+0xedc1c0 to located it and see if it works
so i did notice aob is a new added function in the latest breeze but i do not know how to use it what are the steps i would follow to to use the aob and would i use it to locate the addresses of all these codes then do the asm method and apply the ret to each one thanks for your response
a simple method to update the ASM(aob) code is using zzpong's code updater, but firstly you should have 1.0.7 main file and 1.0.8 main file{//if you have the 1.07/1.08 original UPD.nsp/nsz file, code updater will extract them automatically}. if some code address can't be found by code updater, use IDA pro to find and fix the missed address code. the RCs caused basically is AOB register changed or code flowchart changed. I post some examples how to fix the missed address code before by IDA.
thank you for the reply and i already used the updater tool and got most of the cheats working however the ones i posted above are ones that need to be remade from scratch and as for ida pro i have no idea how to recompile or decompile and does this not require an understanding of computer language like c# or C++ because these i dont understand what i do have is a basic understanding of hexdecimal and dec conversions for addresses and values but i dont understand programming code though i wish i did
so i did notice aob is a new added function in the latest breeze but i do not know how to use it what are the steps i would follow to to use the aob and would i use it to locate the addresses of all these codes then do the asm method and apply the ret to each one thanks for your response
Post automatically merged:
thank you for the reply and i already used the updater tool and got most of the cheats working however the ones i posted above are ones that need to be remade from scratch and as for ida pro i have no idea how to recompile or decompile and does this not require an understanding of computer language like c# or C++ because these i dont understand what i do have is a basic understanding of hexdecimal and dec conversions for addresses and values but i dont understand programming code though i wish i did
I also started out teaching myself from scratch without knowing any programming languages.
As long as you understand the basics, such as common instructions like ADD and SUB, how addresses are represented, and so on, that’s enough to get started.
For the rest, you can give the code generated by IDA Pro’s decompiler to an AI and have it explain it to you. You can also ask the AI to teach you how to modify it to achieve whatever goal you have in mind.
After that, it’s really just a matter of hands-on practice and building up experience.
AI can be a great tool to help you learn quickly. Whenever there’s something you don’t understand, you can ask AI to explain it to you.
Ocarina of Time is back in style as the upcoming Switch 2 remake looms on the horizon. But what's a fan of the game to do over the next few months? If you've been...
It's a good time to be a first generation Pokemon fan. But when was it not a good time to be one? In recent weeks we've seen a native LOVE2D recreation of Pokemon Red...
If you've been waiting for an excuse to replay Super Mario Sunshine and happen to have up to nine friends, do I have some good news for you. Released earlier today...
Images for the rumoured Zelda-themed limited edition Switch 2 for The Legend of Zelda's 40th Anniversary have started to leak online.
The leak shows only the...
Hoenn to the ROM hacking scene is like Kanto to the official games. It's everywhere. At this point you've probably played through Pokemon Emerald with a party of...
Hot on the heels of their NetherSX2 port, @Nagaa is back with another hugely anticipated release: a Switch port of the popular Wii U emulator Cemu. We've got more...
The golden age of emulation on the Switch continues as a native Dolphin port was released by @Nagaa earlier today. Included in this port, we're looking at cover art...
The Pokemon series is known for its vast assortment of spin off titles, with the majority being well-received. We've had an assortment of Mystery Dungeon titles, a...
With the latest entry to the Fire Emblem series, Fortune's Weave, set to launch in September, Nintendo have today announced a new Nintendo Direct to put it soundly in...
Harbour Masters were cutting it close with this one, promising a release of their Banjo Kazooie PC port "Lighthouse" by the end of this month. And they did not...
Images for the rumoured Zelda-themed limited edition Switch 2 for The Legend of Zelda's 40th Anniversary have started to leak online.
The leak shows only the...
Ocarina of Time is back in style as the upcoming Switch 2 remake looms on the horizon. But what's a fan of the game to do over the next few months? If you've been...
After being announced last year, the fan-made remake Gamma Emerald has finally gotten its first early access release. A complete rebuild of fan-favourite Pokemon...
With the latest entry to the Fire Emblem series, Fortune's Weave, set to launch in September, Nintendo have today announced a new Nintendo Direct to put it soundly in...
Over the past week, rumors have started swirling as Redditors (probably correctly) deduced the title of the upcoming Elder Scrolls game, which will apparently be...
It's a good time to be a first generation Pokemon fan. But when was it not a good time to be one? In recent weeks we've seen a native LOVE2D recreation of Pokemon Red...
So I got pretty lucky on this one. Having ordered the physical version of Oblivion Remastered on Switch 2, I had it delivered earlier today, beating out the official...
Hoenn to the ROM hacking scene is like Kanto to the official games. It's everywhere. At this point you've probably played through Pokemon Emerald with a party of...
Harbour Masters were cutting it close with this one, promising a release of their Banjo Kazooie PC port "Lighthouse" by the end of this month. And they did not...
If you've been waiting for an excuse to replay Super Mario Sunshine and happen to have up to nine friends, do I have some good news for you. Released earlier today...