Thread: OSRoyale/Blade 317 Experience

Results 1 to 2 of 2
  1. #1 OSRoyale/Blade 317 Experience 
    Registered Member
    Join Date
    Mar 2019
    Posts
    57
    Thanks given
    3
    Thanks received
    2
    Rep Power
    13
    Where is the file for experience rates? I've found the file that has the modifier for experience by player.rights but not where the experience rates are being pulled from?

    Code:
    package io.battlerune.content.experiencerate;
    
    import io.battlerune.game.world.entity.mob.player.PlayerRight;
    
    /***
     * Experience rate modifier
     * 
     * @author Nerik#8690
     *
     */
    public enum ExperienceData {
    
    	NORMAL(PlayerRight.PLAYER, 10.0),
    
    	IRONMAN(PlayerRight.IRONMAN, 15.0);
    
    	private PlayerRight mode;
    	private double modifier;
    
    	ExperienceData(PlayerRight mode, double modifier) {
    		this.mode = mode;
    		this.modifier = modifier;
    	}
    
    	public PlayerRight getMode() {
    		return mode;
    	}
    
    	public double getModifier() {
    		return modifier;
    	}
    }
    The highlighted numbers is the EXP rate being multiplied by that amount. No matter how many files i search i'm unable to find the amount that is being multiplied by the highlighted numbers.
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    Feb 2021
    Posts
    11
    Thanks given
    0
    Thanks received
    3
    Rep Power
    12
    Im pretty sure it has something to do with been stuck on this my self
    Code:
    public double experienceRate = Config.COMBAT_MODIFICATION;
    Have to ask some one who knows about this more Hope this helps
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Blade 317 source help customs
    By Xenox in forum Help
    Replies: 3
    Last Post: 02-17-2021, 06:15 PM
  2. Replies: 23
    Last Post: 10-13-2018, 07:49 AM
  3. Replies: 10
    Last Post: 05-03-2015, 06:13 PM
  4. Fire Blade 317 24/7 UNIQUE
    By get blasted in forum Advertise
    Replies: 11
    Last Post: 10-22-2011, 07:04 PM
  5. [Helix-World]PVP - Real 317 Experience
    By LimeLess in forum Advertise
    Replies: 37
    Last Post: 05-20-2011, 10:31 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •