So uh, I realized theres a download cap. Here's the current raw code im using(you can just copy paste it into a lua file).
Basically, it's a quick man's way of doing the variable search without needing to input values more than once(unless changing characters, or you spent some energy accidentally).
Just click, enter values ONCE, hit ok.
Then when you hit the next level, just tap on gameguardian, wait for script to appear, click ok. (if you spent energy accidentally, modify accordingly)
hopefully it helps, again I did not touch health because I'm lazy and that much armor makes it unnecessary. I'm gonna try figuring out the skill cooldown afterwards.
For unlocking weapons, parts, items etc, you will need to have at least multiple of 1 that can be consumed(to scan for it). If you haven't found a material/weapon, you won't be able to add or modify it to the best of my knowledge.
After you manage to find the weapon count/material, all values are linked by offsets of 16(4 addresses). So, for example:
1. Search for 64 Organic Matter(DWORD)
2. Use some organic matter.
3. Narrow down list until it's the only one remaining.
4. Hold down and Go to address.
5. Anything above or below by 4 addresses(so count starting from the address itself as 0, count 4 upwards or downwards).
6. Just go ham and modify them all, it works for any material, plant, coupon/voucher(redeem machine) or weapon find count(for crafting reasons).
7. If you don't know how to find weapons, you can just use a starter character(ie, bad pistol, and see the current weapon count).
Advanced thing: If you're even lazier than that, after you find the general address where the values are, you can modify them based on range search(ie 1~7)
If anyone manages to turn that to a code, kudos to them xD
Code from here(i still attached a file if someone doesn't wanna copypasta):
var = {0, 0, 0}
function main()
gg.clearResults()
input = gg.prompt(
{'Enter Armor', 'Enter Max Energy', 'Enter Remaining Energy'},
{[1] = var[1], [2] = var[2], [3] = var[3]}
)
if input == nil then return end
var[1] = input[1]
var[2] = input[2]
var[3] = input[3]
s = input[1]..';'..input[1]..';'..input[2]..';'..input[3].."::13"
gg.setVisible(false)
gg.searchNumber(s, gg.TYPE_DWORD)
gg.getResults(50)
gg.editAll('999999', gg.TYPE_DWORD)
gg.clearResults()
end
while true do
main()
::WAIT::
while not gg.isVisible() do gg.sleep(1000) end
end
Soul_Knight.lua