Hello community,
for my fishing system I have this formula:
What it does, variable 27 (level) is calculated by variable 26 (xp) and a formula. The guys who can help me know what I mean What I want to calculate now is variable 28, the xp needed for the next level. How can I do this? I thought it was something like:
But that doesnt work, what is the right one? I put this in an event command.
Thanks,
Smith
for my fishing system I have this formula:
Code:
$game_variables[27] = (Math.sqrt($game_variables[26]) * 0.3 + 1).to_int
Code:
$game_variables[28] = (($game_variables[27] + 1) * 0.3)
Thanks,
Smith