Jump to content
  • 0

Problems with RE stats and pre-RE stats


Question

Posted (edited)

Okay im running svn 16448, ive already made the changes to the renewel stat formula to use pre renwel formula i re compile and it doesnt change anything in game im still needing a massive amount of stat points to just to add one. any help will be appreaciated.

also it was working before the update so what has changed since. i dont want to lose renewel in everything.

Thanks

Poseidon

Edited by Poseidon

6 answers to this question

Recommended Posts

Posted

how did you change you stat formula?did you edit the source file or not?because if you only use the statpoint.txt from db\pre-re\statpoint.txt. it will not work. just try to change the renewal stats formula just like this. sp += ( 1 + (low + 9) / 10 ) and it will works now.

Posted (edited)

try to do this.

#ifdef RENEWAL // renewal status point cost formula
sp += (low < 100) ? (2 + (low - 1) / 10) : (16 + 4 * ((low - 100) / 5));

to

#ifdef RENEWAL // renewal status point cost formula
sp += ( 1 + (low + 9) / 10 );

then recompile.

Edited by Brynner

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...