Thread: [snippet] Alternative exp formula for training combat

Results 1 to 4 of 4
  1. #1 [snippet] Alternative exp formula for training combat 
    Registered Member galamonth's Avatar
    Join Date
    Mar 2012
    Posts
    8
    Thanks given
    0
    Thanks received
    1
    Rep Power
    0
    First lets open the file Formulae.java inside the source folder (src/org/rscdaemon/config), then lets find this:

    Code:
    	double exp = ((mob.getCombatLevel() * 2) + 10) * 1.5D;
    now lets replace it with this:

    Code:
    	double exp = (Math.pow(mob.getCombatLevel(), 2) / 2) + 20D;
    Ok now save and compile. Yep that's all!

    So what is this good for?
    • This will cut down some grinding at higher combat levels.
    • Will work on any RSCD based server basically.


    The problem with the old way of gaining exp from NPCs is that would get more exp per hour training at low level things (chickens, cows or rats) since you don't need food or armor. And that makes training pretty boring and tiring, so many ppl just go with bots or spend they time doing afk training.

    Now low level NPCs will not be the best options for training when you could be getting much better exp at the higher lever monster you can face, thus making it more fun and improving the economy of the server since you would need the best armor/weapon and food/potions available.

    Here is comparison of the old and new ways of getting exp from NPCs.

    Code:
    Old exp
    				level 		exp
    chicken 		3  			24
    giant rat 		13 			54
    red spider		36			123
    lesser demon	79			252
    red dragon		145			450
    
    New exp	
    				level 		exp
    chicken 		3  			24.5
    giant rat 		13 			104.5
    red spider		36			668
    lesser demon	79			3140.5
    red dragon		145			10532.5
    Note: I have posted this on other forums under other alias but always hoping someone find it useful for their servers.
    Reply With Quote  
     

  2. #2  
    Donator

    ProFiles's Avatar
    Join Date
    May 2011
    Posts
    1,673
    Thanks given
    4
    Thanks received
    240
    Rep Power
    118
    Didn't work?
    Reply With Quote  
     

  3. #3  
    Fuckin PRO Derek's Avatar
    Join Date
    May 2008
    Posts
    1,257
    Thanks given
    38
    Thanks received
    86
    Rep Power
    67
    Quote Originally Posted by KevytMaito View Post
    Didn't work?
    You must of missed a bracket. It worked for me thanks man.
    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Aug 2012
    Posts
    53
    Thanks given
    12
    Thanks received
    2
    Rep Power
    11
    Good job, thanks for releasing.
    Respected List:
    Peril
    RuneEclipse
    Tupac
    Beta
    2006
    Wiz
    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. Combat formula
    By Colby in forum RS2 Server
    Replies: 115
    Last Post: 01-03-2011, 12:11 AM
  2. Level EXP Formula
    By slabbetje in forum Configuration
    Replies: 9
    Last Post: 09-16-2008, 02:28 PM
Tags for this Thread

View Tag Cloud

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •