Thread: Runescape Combat Formula (100%)

Results 1 to 5 of 5
  1. #1 Runescape Combat Formula (100%) 
    Registered Member mattsforeal's Avatar
    Join Date
    Oct 2009
    Posts
    263
    Thanks given
    77
    Thanks received
    90
    Rep Power
    63
    Code:
    public int getCombatLevel() {
    		combatLevel = (int) combatFormula(getLevelForXP(playerXP[0]),
    				getLevelForXP(playerXP[2]), getLevelForXP(playerXP[1]),
    				getLevelForXP(playerXP[3]), getLevelForXP(playerXP[5]),
    				getLevelForXP(playerXP[4]), getLevelForXP(playerXP[6]),
    				getLevelForXP(playerXP[22]));
    		return combatLevel;
    	}
    
    	public static double combatFormula(int attack, int strength, int defence,
    			int hitpoints, int prayer, int ranged, int magic, int summoning)
    
    	{
    
    		double combatLevel = (defence + hitpoints + Math.floor(prayer / 2) + (Config.incSummon ? (Math
    				.floor(summoning / 2)) : 0)) * 0.25;
    
    		double warrior = (attack + strength) * 0.325;
    
    		double ranger = ranged * 0.4875;
    
    		double mage = magic * 0.4875;
    
    		return combatLevel + Math.max(warrior, Math.max(ranger, mage));
    
    	}
    Source - http://forum.tip.it/topic/199687-run...ulas-revealed/
    Reply With Quote  
     

  2. #2  
    Donator

    Join Date
    Feb 2013
    Posts
    194
    Thanks given
    100
    Thanks received
    8
    Rep Power
    19
    thanks
    Reply With Quote  
     

  3. #3  
    Registered Member DUGI's Avatar
    Join Date
    Jan 2013
    Age
    28
    Posts
    191
    Thanks given
    31
    Thanks received
    31
    Rep Power
    41
    How do you know this is runescapes exact formula? Sources?
    "In every life there is trouble, when you worry about it you make it double." - Bobby McFerrin
    Reply With Quote  
     

  4. #4  
    KNOWLEDGE IS POWER

    OG KingFox's Avatar
    Join Date
    Dec 2006
    Age
    33
    Posts
    1,683
    Thanks given
    628
    Thanks received
    1,062
    Rep Power
    750
    Pretty damn sure this has been posted before. Will have to gravedig it probs

    Attached image
    Reply With Quote  
     

  5. Thankful user:


  6. #5  
    « Pokémon Master »
    Ash Ketchum's Avatar
    Join Date
    Jun 2011
    Age
    29
    Posts
    1,423
    Thanks given
    275
    Thanks received
    153
    Rep Power
    39
    Quote Originally Posted by King Fox View Post
    Pretty damn sure this has been posted before. Will have to gravedig it probs
    That. although instead of gravedigging a post from before.. i guess its okay for people who need it.
    Attached image
    Spoiler for Galkon:

    Spoiler for Great Quotes:
    Quote Originally Posted by i am prod View Post
    **** YOU this just erased everyones passwords and no one can log in!!!
    Quote Originally Posted by blade2 View Post
    did i ****ing say it was a ****ing virus u dip shit i said virus scan dont scan java files i didn't say its a virus... l2****ingreadkid
    Spoiler for (╯°□°)╯︵┻━┻:
    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. [PI] New Runescape Combat Beta Combat Formula
    By Exidia in forum Snippets
    Replies: 8
    Last Post: 09-06-2012, 03:03 AM
  2. Replies: 55
    Last Post: 05-11-2012, 06:00 PM
  3. Best runescape combat source?
    By Zahhak in forum Voting
    Replies: 27
    Last Post: 05-09-2009, 11:23 PM
  4. Changing the combat formula
    By Eternal Darknes in forum Tutorials
    Replies: 3
    Last Post: 08-04-2008, 08:47 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
  •