Theraze
Active member
It's newLife, here in recovery_settings:
But yeah, nothing to do with UR, it's nL.
Code:
void recovery_settings() {
// Optimal restoration settings for level 1. These will need to be changed by level 4
set_choice("hpAutoRecovery", "0.25", "Resetting HP/MP restoration settings to minimal");
set_choice("hpAutoRecoveryTarget", "0.95", "");
set_choice("manaBurningTrigger", "-0.05", "");
set_choice("manaBurningThreshold", "0.80", "");
// Zombie Slayers have an alternative to using mana
if(my_path() == "Zombie Slayer") {
if(get_property("baleUr_ZombieAuto") != "")
set_property("baleUr_ZombieAuto", "-0.05");
if(get_property("baleUr_ZombieTarget") != "")
set_property("baleUr_ZombieTarget", 1);
} else {
set_choice("mpAutoRecovery", "0.0", "");
set_choice("mpAutoRecoveryTarget", "0.0", "");
}
}