Help! How to make currency unlimited?

lev_r

Platinian
Hello, i am new and try to modding

1763229937898.png


Opening the zip file found that 2 folders in the image above and based on tutorial i use Il2Cpp, HXD, and notepad++
It said i need to edit the get value. The currency i want to be unlimited is crystals/ cosmic crystals

This is the only think i could find that has get value related to crystals...

public int GetCosmicCrystalCostForStarTokens() { }

What should i do? find another get value or ?
 
Check words cost,price,amount,currency,gold,gem,cash etc
Thank you for your answer.
This is what i found:
// RVA: 0x25F0440 Offset: 0x25F0440 VA: 0x25F0440
public bool CanAffordStarTokenCost(int cost) { }

// RVA: 0x25F0364 Offset: 0x25F0364 VA: 0x25F0364
public bool CanAffordCosmicCrystalCost(int cost) { }

// RVA: 0x25F0348 Offset: 0x25F0348 VA: 0x25F0348
public int GetCosmicCrystalCostForStarTokens() { }

// RVA: 0x25F0430 Offset: 0x25F0430 VA: 0x25F0430
public int GetStarTokenCostForAP() { }

// RVA: 0x25F0714 Offset: 0x25F0714 VA: 0x25F0714

public int GetCost() { }

// RVA: 0x25F0430 Offset: 0x25F0430 VA: 0x25F0430
public int GetStarTokenCostForAP() { }

// RVA: 0x25F0714 Offset: 0x25F0714 VA: 0x25F0714

public int GetCost() { }


do you know which one that would be useful for making the CosmicCrystal unlimited?
My guess is this (by changing it to -9999 with INT NEGATIVE -> 00 00 48 E3 1E FF 2F E1):
// RVA: 0x25F0348 Offset: 0x25F0348 VA: 0x25F0348
public int GetCosmicCrystalCostForStarTokens() { }
 
Back
Top Bottom