Jump to content
  • 0

Problems with RE stats and pre-RE stats


Poseidon

Question


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  107
  • Reputation:   6
  • Joined:  12/09/11
  • Last Seen:  

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
Link to comment
Share on other sites

6 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

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.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  107
  • Reputation:   6
  • Joined:  12/09/11
  • Last Seen:  

i just edited pc.c to the pre renewel formula so i need to make a copy of the pre-re/statpoint.txt? to make it work

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

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
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  107
  • Reputation:   6
  • Joined:  12/09/11
  • Last Seen:  

i have lol but it doesnt work

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

hmmm that's the only way that i made to my server before and it works 100%.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  107
  • Reputation:   6
  • Joined:  12/09/11
  • Last Seen:  

do i try and change the /re/statpoint.txt to the /pre-re/statpoint.txt and see if that works

stil doesnt work with me chnaging the statpoint.txt

Link to comment
Share on other sites

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.

×
×
  • Create New...