Anyone know how to calculate experience needed?

Discussion in 'Skills and Combat' started by Barugon, Aug 12, 2019.

Thread Status:
Not open for further replies.
  1. Barugon

    Barugon Avatar

    Messages:
    15,678
    Likes Received:
    24,293
    Trophy Points:
    153
    Gender:
    Male
    I was thinking about adding an experience needed calculator to this. I seem to recall that it's something like (current_level_experience x 1.1 + 10) x factor.
     
    Maya SaintClaire likes this.
  2. Lained

    Lained Avatar

    Messages:
    2,786
    Likes Received:
    4,772
    Trophy Points:
    165
    Location:
    Yeovil, England
  3. Barugon

    Barugon Avatar

    Messages:
    15,678
    Likes Received:
    24,293
    Trophy Points:
    153
    Gender:
    Male
    Alright, I at least figured out how those spreadsheets get their numbers.

    Rust code:
    Code:
    fn main() {
      let mut val: f64 = 0.0;
      for _ in 1..100 {
        val = (val * 1.1 + 10.0).floor();
      }
    
      println!("Val: {}", val);
    }
    
     
    Feeyo likes this.
  4. Sara Dreygon

    Sara Dreygon Avatar

    Messages:
    1,678
    Likes Received:
    5,830
    Trophy Points:
    113
    Gender:
    Male
    @Rosemourne actually went into the file and ensured those numbers were correct, too. He's been busy with work though so the new stuff hasn't yet been added in.
     
    Jaesun, Vaiden Luro, FrostII and 4 others like this.
  5. Mishikal

    Mishikal Avatar

    Messages:
    1,965
    Likes Received:
    2,834
    Trophy Points:
    113
    Location:
    Brittany Estates
    The shroudbert steinbot bot on Discord has the values for the new stuff, from what I've checked. You could query it to see what its level ranges are.
     
    Jaesun likes this.
Thread Status:
Not open for further replies.