Thread: Changing the combat exp rate on 667+

Page 1 of 2 12 LastLast
Results 1 to 10 of 20
  1. #1 Changing the combat exp rate on 667+ 
    あらしのよるに
    Cloud クラウド's Avatar
    Join Date
    Feb 2012
    Posts
    191
    Thanks
    2
    Thanked 9 Times in 8 Posts
    Rep Power
    25
    Hey guys,
    Alot of people seem to not know how to do this, even though its fairly easy fix.
    Im new to java, so correct if anything can be made better, but here goes:


    1. Go to skills.java and find
    Code:
     public void addXp(int skill, double exp)
    2. then scroll down to
    if (player.getAuraManager().usingWisdom())
    exp *= 1.025;
    Below it, add:
    Code:
    if (skill != PRAYER)
    exp *= 75;
    Then, replace 75 with any number (higher the number, the more exp gained..)


    What this does:
    -The code you just added, will multiply exp gain by # you replaced 75 with, for all skills EXCEPT prayer, if you want to add more skills that exp will not increase by this number, replace " if (skill != PRAYER)" with:

    Code:
    if (skill != PRAYER && skill !=SKILLNAMEHERE)
    Alternatively:
    -We can also set the exact multiplier per each skill:
    Code:
      if (skill == PRAYER)
    exp *= 70;
    Replace "SKILLNAMEHERE" with an actual skill name... and there ya go...
    Reply With Quote  
     

  2. #2  
    Banned
    Join Date
    Jul 2009
    Posts
    41
    Thanks
    1
    Thanked 2 Times in 2 Posts
    Rep Power
    0
    take this down
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Dec 2009
    Posts
    141
    Thanks
    0
    Thanked 5 Times in 5 Posts
    Rep Power
    15
    lol, isn't this in Settings.java?..
    Reply With Quote  
     

  4. Thankful user:


  5. #4  
    Banned
    Join Date
    Jul 2009
    Posts
    41
    Thanks
    1
    Thanked 2 Times in 2 Posts
    Rep Power
    0
    no that was for noobs. tr0ll...
    Reply With Quote  
     

  6. #5  
    Banned

    Join Date
    Mar 2010
    Posts
    1,108
    Thanks
    227
    Thanked 117 Times in 82 Posts
    Rep Power
    0
    The Settings.java was to troll people, and so people wouldn't know how. This is the correct way to do it. Will help people understand, so thank's for contributing in the community.
    Reply With Quote  
     

  7. #6  
    あらしのよるに
    Cloud クラウド's Avatar
    Join Date
    Feb 2012
    Posts
    191
    Thanks
    2
    Thanked 9 Times in 8 Posts
    Rep Power
    25
    np, always glad to
    Reply With Quote  
     

  8. #7  
    Banned

    Join Date
    Mar 2010
    Posts
    1,108
    Thanks
    227
    Thanked 117 Times in 82 Posts
    Rep Power
    0
    Might be time for me to release my Soulwar's on 667 >.< before someone else does
    Reply With Quote  
     

  9. #8  
    Banned
    Join Date
    Jul 2009
    Posts
    41
    Thanks
    1
    Thanked 2 Times in 2 Posts
    Rep Power
    0
    hey how would i edit the shop prices.
    Reply With Quote  
     

  10. #9  
    Banned
    Join Date
    Mar 2011
    Posts
    20
    Thanks
    0
    Thanked 5 Times in 1 Post
    Rep Power
    0
    thanks was looking for it
    Reply With Quote  
     

  11. #10  
    Banned
    Join Date
    Jan 2012
    Posts
    23
    Thanks
    0
    Thanked 1 Time in 1 Post
    Rep Power
    0
    thanks for the tut will help out a lot of people!
    Reply With Quote  
     


Page 1 of 2 12 LastLast
Thread Information
Users Browsing this Thread

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

Similar Threads

  1. Changing Exp rate
    By Drizy Drake in forum Help
    Replies: 8
    Last Post: 01-15-2012, 08:22 AM
  2. [562] Changing Combat EXP Rate?
    By -Charlie in forum Help
    Replies: 3
    Last Post: 08-08-2010, 07:57 PM
  3. changing exp rate
    By Duces Mane in forum Help
    Replies: 4
    Last Post: 08-27-2009, 03:13 AM
  4. changing exp rate
    By uri0316 in forum Help
    Replies: 0
    Last Post: 10-24-2008, 03:29 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •