Custom EXP Curves

● ARCHIVED · READ-ONLY
Started by Tsukihime 11 posts View original ↗
  1. Custom EXP Curves

    -Tsukihime

    Define custom exp curves using your own formula.

    Can be set for actors or classes.

    Actors take precedence if both are defined.

    Usage

    Add the tag



    Code:
    <exp-curve: your_formula>
    
    <exp-curve: level*200>
    Only the `level` variable is valid

    You can print out the curves by making the script call.



    Code:
    $game_actors.print_exp_table
    to create a file called "exp.csv" in your project folder for each actor

    Download

    http://db.tt/BQ2cHomP
  2. Oh man! This is a great script! I've seen so many people wanting to create their own EXP curve! Definitely liking this! B)

    If only it were for RMXP too!
  3. how does it work? how would i set it if i want on character (every hero in my story has a unique class and equipment set total of 15 heros) a unique growth that requires atleast 1000000 exp to grow to lvl 99?
  4. You just tag your actor with the exp curve tag.



    Code:
    <exp-curve: level * 1000>
    Means the level 1 requires 1000 exp, level 2 requires 2000 exp , ...

    Up to you to figure out how to meet your exp requirements.

    Although I say "Formula" it isn't necessarily a math formula.

    You could toss in all the ruby you want in there like if/else statements (you will need to use semi-colons).
  5. I rarely have levels up to 99. At most is @50, but I have similar script in my games. The exp max can be changed in script, but might display odd.
  6. i'm allowing lvl 99s but i want them to have to work for it after lvl 55
  7. If you want the exp curve to go really steep after a certain point, you can say something like



    Code:
    level < 56 ? level * 1000 : level * 10000
    This script relies on the user's mathematical background. If calculus is childsplay, then it should be easy to make nice curves.
  8. Your download link is either broken or not working. Is it possible for you to upload it somewhere like Mediafire? I REALLY want to try out your script.
  9. Link is dead. Does anyone still have the script?
  10. @tale
    Oh, that works. Thanks!