I'm trying to figure out how to find if one variable, is more than a group of others, but NOT if they are added together. For example:
Code: Select all
if (10 > 1, 2, 3, 4)Code: Select all
if ($str > $stam, $con, $agi)So even if $str was 10, but $stam was 8 and $con 9, $str would still be the highest and thus the code would happen.