Modding Unity & Its Dll's: Starter Pack + Tutorial

I download the net reflector, but there's no reflexil add ins. I only got powercommand add ins.
Can someone copied or give me links to download the add ins?

Thank you,
neko
 
any ideas on how to do a speedhack in MuOrigin? a visual vip 10? i know there is a mod already. but is for american version. i need it for Russian one. thanks in advance.
P.S. reflector and ilspy cant open the csharp assembly dll, but can open others. what should i do?, i know its easy)
 
Help, please?

I want to mod cooking mama recipe to free shopping.
Which one should I changed?

And may be some of the coins too?
 

Attachments

  • 1.webp
    1.webp
    137.3 KB · Views: 201
None of those are correct, you would want to look for a Boolean function most likely.
Hii.. Sorry for my bad english

So.. I try to hack burst horde

I want to 1 hit kill by change value of get damage by 9999999

Its work.. But the enemy can 1 hit kill me too... Whats wrong with my modded apk?
 
Hii.. Sorry for my bad english

So.. I try to hack burst horde

I want to 1 hit kill by change value of get damage by 9999999

Its work.. But the enemy can 1 hit kill me too... Whats wrong with my modded apk?
you need to split by finding isplayer or isenemy and so on
 
sdss.webp
Another cool thing is modifying a "boolean" function

Boolean is basically True or False.

You treat these the same way as int32's, but only a bit different.

True = ldc.i4.1 (select "none" for operand)

False = ldc.i4.0 (select "none" for operand)

then return.
hi bro . can u help me ??
how to edit : Double in reflector . tks you
 

Attachments

  • sdss.webp
    sdss.webp
    88.6 KB · Views: 114
Hy Guys,
I'm trying mod Marvel Contest of Champions.
This is my first mod...
I'm having trouble creating the APK.
I'm using APKTOOL. Everything ocurrs fine.
APK is create.
I can install and run, but stop on the screen to communicate with the server.
This happens if I modify it or not. If I re-create the APK it happens.

Can anybody help me?

Sorry for my english. I'm not native speaker.
 
Hi,
I would like to ask some question after reading the post :

- Is it possible to code to have unlimited stamina to play a game ?

- What are those reference to ? get_XXX / getXXX / softCurrency /hardCurrency / get_softCurrency / get_hardCurrency / Soft Currency is the main currency / Hard Currency is the premium currency

(I might guess "get_xxx" could be some item or something like that but what is softcurrency phrase mean ?)

I would like to leanr how to mod and start helping my friend and this community if i'm able to success
 
Hi,
I would like to ask some question after reading the post :

- Is it possible to code to have unlimited stamina to play a game ?

- What are those reference to ? get_XXX / getXXX / softCurrency /hardCurrency / get_softCurrency / get_hardCurrency / Soft Currency is the main currency / Hard Currency is the premium currency

(I might guess "get_xxx" could be some item or something like that but what is softcurrency phrase mean ?)

I would like to leanr how to mod and start helping my friend and this community if i'm able to success
A. yes stamina would be a possibility, look for energy variable or something similar (maybe date/time changed variables for energy recovered over 'x' amount of time)
B. soft currency would be your gold/coin/cash/whatever your source of income you buy non-premium stuff with
 
Thanks a lot.

It seems some game don't have the bin / manage folder to find the Assembly file. Is there a solution with Reflector if you don't have the assembly file ?
 
Thanks a lot.

It seems some game don't have the bin / manage folder to find the Assembly file. Is there a solution with Reflector if you don't have the assembly file ?
If it doesn't have the bin folder there is only two possibilities, either the folder is hidden ( which if so then unless you're REALLY experienced, steer clear cause that won't be the most difficult issue in the mod), or its not a unity based game so you need to deal with dalvik executable (smali) or native libraries (so files) instead
 
Capture1.webp
The game i am fiddling with is pro series racing just as a starter i have found this and i have also seen int64 in string as well im just confused on what to delete and change within getmax getmin if someone could help that would be great
Capture_LI.webp
 
Last edited:
The game i am fiddling with is pro series racing just as a starter i have found this and i have also seen int64 in string as well im just confused on what to delete and change within getmax getmin if someone could help that would be great
Single = ldc.r4 >>> double = ldc.r8
int32 = ldc.i4 >>> int64 = ldc.i8
try to return one of those values
and for Void + boolean i've explained some of it here read this thread
https://androidrepublic.org/forum/threads/how-to-edit-void-boolean-entries-on-net-reflector.21173/
for cash you may want to look in SpendCash then look for a SUB OpCode assuming it's there .. and change it to Add OpCode so instead of decreasing on spending cash it will increase .. good luck
 
  • Like
Reactions: legitmod