Lowering Cost of Items

IfNull

New User
Aug 16, 2018
3
Visit site
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?