| View previous topic :: View next topic |
| Author |
Message |
nobunaga1222 How do I cheat?
Reputation: 0
Joined: 26 Nov 2020 Posts: 3
|
Posted: Thu Nov 26, 2020 5:04 am Post subject: Can't Find The Address and I Tried Everything :cry: |
|
|
Hello guys, I have been trying to modify my favorite strategy game of all time on PCSX2, it's called Nobunaga's Ambition Iron Triangle, I tried to find the address that let me change the cost of drafting troops, I have tried everything, but it's very strange, I have found a lot of different addresses to the cost of different buildings and other commands, but the cost of drafting seems to be so mysterious, it doesn't seem to follow the same principle as other values in the game, also I have tried to find the address that let me change troops yield, everything related to drafting seems so strange. Please help, I spent countless hours trying to find these things .
|
|
| Back to top |
|
 |
ByTransient Expert Cheater
Reputation: 5
Joined: 05 Sep 2020 Posts: 240
|
Posted: Thu Nov 26, 2020 10:33 am Post subject: |
|
|
Hopefully it's not an online game. Otherwise I have to delete the answer.
Scan texts within the current building.
Value Type: String.
Click on the results and press Ctrl + B.
See annotations attached to the text.
If there is a number, scan it with "4 bytes" or "Double".
|
|
| Back to top |
|
 |
nobunaga1222 How do I cheat?
Reputation: 0
Joined: 26 Nov 2020 Posts: 3
|
Posted: Thu Nov 26, 2020 3:38 pm Post subject: |
|
|
Thank you for the reply, unfortunately, I didn't find any number in the annotations attached to the text, but your reply is appreciated man, this is kind of you.
The game is offline, it's a simple yet fun strategy game, but I think it can get annoying late game because of how many troops there are.
|
|
| Back to top |
|
 |
ByTransient Expert Cheater
Reputation: 5
Joined: 05 Sep 2020 Posts: 240
|
Posted: Fri Nov 27, 2020 12:26 am Post subject: |
|
|
Sometimes it is difficult to keep up with rapidly changing values.
In such cases, you may need to stop the game and look for value.
Copy the code below, paste it here;
CE >> Table >> Show cheat table Lua Script
After pasting the code, click the "Execute Script" button.
Select the game process and as the value changes, click "CheckBox" to stop the game
After scanning the value, click "CheckBox" again and play the game.
| Code: | if f then f.destroy() end
f=createForm() f.Height=80 f.Width=200 f.Position=poDesktopCenter
local pause1=createCheckBox(f) pause1.Left=60 pause1.Top=25 pause1.caption="Game Pause"
pause1.OnChange=function()
if pause1.Checked==true then
pause()
pause1.caption="Play the Game"
else
unpause()
pause1.caption="Game Pause"
end
end |
Good luck.
|
|
| Back to top |
|
 |
nobunaga1222 How do I cheat?
Reputation: 0
Joined: 26 Nov 2020 Posts: 3
|
Posted: Fri Nov 27, 2020 4:43 am Post subject: |
|
|
| I managed to find an address and did manage to change the cost of drafting, but it looks like the cost of drafting changed its address or something, The same address I found changed its value and went to a crazy number in the millions after reloading the game, also I tried to search once more and repeated the same method, but I didn't get any result.
|
|
| Back to top |
|
 |
|