Quote:
Yesterday at 10:32 PM Me! said this in Post #1914
Hmm Holy type is #4 while Paladin is #10
|
Are you still able to purchase the item?
Quote:
Today at 01:55 AM SmEdD said this in Post #1915
Is there a way to allow users under level 10 or what ever you want get healed automatically after battle.
Reason I want this is all the new members strugle and give up. This would allow them to catch up to us elders.
|
In heal.php, find:
PHP Code:
function healcheck($healcost, $healmodifier) {
if($healcost < 1 && $healmodifier != 0)
return 1;
else
return $healcost;
}
function healcost($selection = 1, $max = 1, $norm = 1, $modifier = 1) {
if ($selection == 1) {
return @floor($max * .25 * $modifier);
} elseif ($selection == 2) {
return @floor($max * .5 * $modifier);
} elseif ($selection == 3) {
return @floor($max * $modifier);
} elseif ($selection == 4) {
return @floor(($max - $norm) * $modifier);
}
}
And REPLACE with:
PHP Code:
function get_user_level()
{
global $bbuserinfo;
static $userlevel;
if (!$userlevel)
{
$battleopt = $DB_site->query_first("SELECT exprate FROM battle_options");
$userlevel = getlevel($bbuserinfo['xp'], $battleopt['exprate']);
}
return $userlevel;
}
function healcheck($healcost, $healmodifier) {
if (get_user_level() < 10)
{
return 0;
}
if($healcost < 1 && $healmodifier != 0)
return 1;
else
return $healcost;
}
function healcost($selection = 1, $max = 1, $norm = 1, $modifier = 1) {
if (get_user_level() < 10)
{
return 0;
}
if ($selection == 1) {
return @floor($max * .25 * $modifier);
} elseif ($selection == 2) {
return @floor($max * .5 * $modifier);
} elseif ($selection == 3) {
return @floor($max * $modifier);
} elseif ($selection == 4) {
return @floor(($max - $norm) * $modifier);
}
}
This is not tested, but I think it will work.