Thread: Help With Xp Rates!! +Rep

Results 1 to 4 of 4
  1. #1 Help With Xp Rates!! +Rep 
    Banned
    Join Date
    Feb 2012
    Posts
    275
    Thanks given
    22
    Thanks received
    2
    Rep Power
    0
    When i try to change the XP rates in config.java, nothing happens. Woodcutting and mining is the same xp as real runescape. I wanted to make the xp rates higher so i put 1000 in it just for a test. It stayed the same xp per log.


    /**
    * Skill Experience Multipliers
    */
    public static final int WOODCUTTING_EXPERIENCE = 1000;
    public static final int MINING_EXPERIENCE = 1000;
    public static final int SMITHING_EXPERIENCE = 80;
    public static final int FARMING_EXPERIENCE = 80;
    public static final int FIREMAKING_EXPERIENCE = 60;
    public static final int HERBLORE_EXPERIENCE = 80;
    public static final int FISHING_EXPERIENCE = 150;
    public static final int AGILITY_EXPERIENCE = 80;
    public static final int PRAYER_EXPERIENCE = 100;
    public static final int RUNECRAFTING_EXPERIENCE = 120;
    public static final int CRAFTING_EXPERIENCE = 80;
    public static final int THIEVING_EXPERIENCE = 80;
    public static final int SLAYER_EXPERIENCE = 70;
    public static final int COOKING_EXPERIENCE = 80;
    public static final int FLETCHING_EXPERIENCE = 80;
    }
    Reply With Quote  
     

  2. #2  
    Banned
    Join Date
    Feb 2012
    Posts
    275
    Thanks given
    22
    Thanks received
    2
    Rep Power
    0
    Any help??
    Reply With Quote  
     

  3. #3  
    Member

    Join Date
    Nov 2008
    Age
    27
    Posts
    4,859
    Thanks given
    774
    Thanks received
    341
    Rep Power
    0
    Go to the skill class and find where it says addSkillXp or something at it will give you the XP. They probably removed them multipliers.
    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Dec 2011
    Posts
    63
    Thanks given
    2
    Thanks received
    3
    Rep Power
    11
    I don't know if you have already fixed your problem, but I will give you an example.

    Code:
    public void cutWood() {
    		if (c.getItems().addItem(logType,1)) {
    			c.startAnimation(EMOTE);
    			c.sendMessage("You get some logs.");
    			c.getPA().addSkillXP(exp * Config.WOODCUTTING_EXPERIENCE, c.playerWoodcutting);
    			c.getPA().refreshSkill(c.playerWoodcutting);
    			c.wcTimer = getWcTimer();
    		} else {
    			c.getPA().resetVariables();
    		}
    	}

    The Yellow if what they may have taken out.
    The Red is probably something similar to what is there.
    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. XP rates [Pi] REP+
    By tywj in forum Help
    Replies: 4
    Last Post: 04-08-2012, 09:32 PM
  2. My XP Rates
    By Phat Stacks in forum Requests
    Replies: 5
    Last Post: 03-28-2012, 07:37 AM
  3. XP rates?
    By 'William in forum RS 503+ Client & Server
    Replies: 13
    Last Post: 03-13-2012, 05:57 AM
  4. [PI] Xp Rates
    By Russian in forum Snippets
    Replies: 1
    Last Post: 04-25-2011, 05:05 AM
  5. Replies: 0
    Last Post: 06-01-2010, 10:49 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
  •