Homebrew WIP EdiZon SE : Advance memory trainer and pointer seacher for switch

  • Thread starter Thread starter TomSwitch
  • Start date Start date
  • Views Views 169,942
  • Replies Replies 662
  • Likes Likes 38

Have you used EdiZon SE?

  • No

    Votes: 33 14.3%
  • Yes, I love it, keep doing that you are doing

    Votes: 144 62.6%
  • Yes, I like it but I wish you spend more time with the UI, stop adding features

    Votes: 26 11.3%
  • Yes, but I have given up, it's too hard to use

    Votes: 27 11.7%

  • Total voters
    230
I wanted to ask one thing: with Edizon SE it is possible to compress if a cheat has several codes in one as it is done with Vitacheat on Ps Vita?
 
I wanted to ask one thing: with Edizon SE it is possible to compress if a cheat has several codes in one as it is done with Vitacheat on Ps Vita?
This topic is not specific to edizon se, the cheatVM is a seperate entity. The way cheat code on switch works is every opcode that is enabled is put into a long list and executed in sequence. So if you combine cheat codes by removing the label it changes nothing except now you have to enable or disable them as a group. I was told cheats executing in sequence according to the order it appear in the file is not a guaranteed thing. I can tell you as far as now and before it is the case.
 
Last edited by TomSwitch,
  • Like
Reactions: NeoGranzon
This topic is not specific to edizon se, the cheatVM is a seperate entity. The way cheat code on switch works is every opcode that is enabled is put into a long list and executed in sequence. So if you combine cheat codes by removing the label it changes nothing except now you have to enable or disable them as a group. I was told cheats executing in sequence according to the order it appear in the file is not a guaranteed thing. I can tell you as far as now and before it is the case.
Thanks for the answer and sorry if i got the wrong thread,i asked why i'm working on the codes of Super Robot Wars T Premium Anime Song&Sound Edition 1.04 and since the game, in structure it is the same as the V&X for PS Vita(of which i created the cheat code for the V and some new ones for the X)i wanted to know if it was possible to do a similar thing with Edizon SE or integrate a similar function in the future releases.
 
I wanted to ask one thing: with Edizon SE it is possible to compress if a cheat has several codes in one as it is done with Vitacheat on Ps Vita?
not sure if you meant this or not

Code Type 0x3: Start/End Loop​

Code type 0x3 allows for iterating in a loop a fixed number of times.

Start Loop Encoding​

300R0000 VVVVVVVV

  • R: Register to use as loop counter.
  • V: Number of iterations to loop.

End Loop Encoding​

310R0000

  • R: Register to use as loop counter.
 
  • Like
Reactions: NeoGranzon
not sure if you meant this or not

Code Type 0x3: Start/End Loop​

Code type 0x3 allows for iterating in a loop a fixed number of times.

Start Loop Encoding​

300R0000 VVVVVVVV

  • R: Register to use as loop counter.
  • V: Number of iterations to loop.

End Loop Encoding​

310R0000

  • R: Register to use as loop counter.
Thanks for reply,i meant to do something like this:
Screenshot_20220119-083344_Samsung Internet.jpg
 
hello thanks !
i have a problem
when i launch a game, ALL the cheats is ON...how to make all OFF when i start a game, then it's me to turn what cheats i want pls !
Thanks You !
 
hello thanks !
i have a problem
when i launch a game, ALL the cheats is ON...how to make all OFF when i start a game, then it's me to turn what cheats i want pls !
Thanks You !
Here is one way. If you see the red boxes in these screens press the key in the boxes.

2022012011024200-CCFA659F4857F96DDA29AFEDB2E166E6.jpg



2022012011024800-CCFA659F4857F96DDA29AFEDB2E166E6.jpg
 
  • Like
Reactions: jujuassou
Sorry @TomSwitch ,Is it possible to create them directly from Edislzon SE or is there any guide?
You can do that with breeze to create code in app. It’s bundled with edizon se, lunch it from album the usual way.

You can disassemble my code with breeze to see how it works. Check the readme and release notes at GitHub
 
Last edited by TomSwitch,
  • Like
Reactions: NeoGranzon
You can do that with breeze to create code in app. It’s bundled with edizon se, lunch it from album the usual way.

You can disassemble my code with breeze to see how it works. Check the readme and release notes at GitHub
Thanks @TomSwitch for reply,your suggestion was really valuable,but i didn't understand one thing: if i want to compress 10 codes or more into one for example like these
Code:
04000000 01AA9D10 00000384
04000000 01AA9D14 00000384
04000000 01AA9D18 00000384
04000000 01AA9D1C 00000384
04000000 01AA9D20 00000384
04000000 01AA9D24 00000384
04000000 01AA9D28 00000384
04000000 01AA9D2C 00000384
04000000 01AA9D30 00000384
04000000 01AA9D34 00000384
is there a command(also manual)to do it or not?
 
Thanks @TomSwitch for reply,your suggestion was really valuable,but i didn't understand one thing: if i want to compress 10 codes or more into one for example like these
Code:
04000000 01AA9D10 00000384
04000000 01AA9D14 00000384
04000000 01AA9D18 00000384
04000000 01AA9D1C 00000384
04000000 01AA9D20 00000384
04000000 01AA9D24 00000384
04000000 01AA9D28 00000384
04000000 01AA9D2C 00000384
04000000 01AA9D30 00000384
04000000 01AA9D34 00000384
is there a command(also manual)to do it or not?
The example can do this
 
he needs an example for static address
Ha ha, didn't notice he is using code type 0.

@NeoGranzon here you go

30000000 0000000A <= loop for 10 times use R0 as counter
04010000 01AA9D10 00000384 <= [main+0x1AA9D10+R1]=0x384
78010000 00000004 <= R1 = R1 +0x4
31000000
 
Last edited by TomSwitch,
  • Like
Reactions: NeoGranzon
Ha ha, didn't notice he is using code type 0.

@NeoGranzon here you go

30000000 0000000A <= loop for 10 times use R0 as counter
04010000 01AA9D10 00000384 <= [main+0x1AA9D10+R1]=0x384
78010000 00000004 <= R1 = R1 +0x4
31000000
@TomSwitch ,If i understand correctly i should do this:
Code:
30000000 0000001E
02000000 01AA8B78 00000063
78100000 00000018
31000000
👌
 
Sorry @TomSwitch where?
I'm following this guide and i'm going crazy trying to figure out how to create codes manually
Take this code and modify for your need

30000000 000000?? <= loop for 0x?? times use R0 as counter
04010000 ???????? 00000063 <= [main+0x????????+R1]=0x63, has to be a different register from R0 as the above line already use it
78010000 000000?? <= R1 = R1 +0x??
31000000
 
  • Like
Reactions: NeoGranzon

Site & Scene News

Popular threads in this forum