Posted: Wed May 29, 2019 4:16 pm Post subject: Script to make CE read and write all values as Big Endian?
Is it possible.
Since i have scripts that add to values of addresses but they are not compatible with RPCS3 due to all values being in Big Endian
So anyway to make CE auto convert readed values by scripts as big endian and add the values as big endian..
So far all tried has failed..
Neither script seems to work...
I want
so after the big endian custom scan added and changing
address to 4 bytes Big Endian and example its value
is 30750000
and i have script
adding to it
F4D0
value of this address to become
3075F4D0 in Big Endian as shown in table with the custom type. _________________
local sAddrisStanding = "_BossFix+660"
local sAddrATK ="_BossFix+62c"
local Stands = readInteger(sAddrisStanding)and GetAddress(sAddrisStanding)
local Attacks = readInteger(sAddrATK)and GetAddress(sAddrATK)
-- signal error if not
if not Stands then error"Standing not readable"end
if not Attacks then error"Attacks not readable"end
function NezhaCAtkFix(sender)
if isKeyPressed(VK_PAD_X) and isKeyPressed(VK_PAD_DPAD_UP)
then
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum