IfNull
New User
- 3
- 08/16/18
- 0
Thread Author
I was wondering how I'd go about lowering the cost of items in-game to 0. So I have the APK decompiled and opened in .NET Reflector, and I have the Assembly dll file loaded.
I loaded a member named GetPrice for gifts in the game, in Reflexil it shows 3 OpCodes'
ldarg.0
ldfld
ret
If I deleted ldfld and replaced it with ldc.i4 with a value of 0 would that work in changing the price, or would there be other steps I need to take?
I loaded a member named GetPrice for gifts in the game, in Reflexil it shows 3 OpCodes'
ldarg.0
ldfld
ret
If I deleted ldfld and replaced it with ldc.i4 with a value of 0 would that work in changing the price, or would there be other steps I need to take?