Hello
Here is the formula for the calc. Defence + 2 + highest level out of Attack, Strength, Ranged, Magic or Summoning.
[php]function combatLevel($attack, $defence, $strength, $hp, $ranged, $magic, $summoning) {$base = ($defence + 2);
return intval($base + max($attack, $strength, $ranged, $magic, $summoning));[/php]
Then to display the level… ?