Lava Titan
Developer
Hey I found this code, seems it's not the one I'm looking for since I changed the values and it did not work...
I'm using TFS 1.2, can someone tell me in what file can I set static min and max damage, so all monsters no matter what monster will do only that range of damage?
I'm using TFS 1.2, can someone tell me in what file can I set static min and max damage, so all monsters no matter what monster will do only that range of damage?
Code:
bool Monster::getCombatValues(int32_t& min, int32_t& max)
{
if (minCombatValue == 0 && maxCombatValue == 0) {
return false;
}
min = minCombatValue;
max = maxCombatValue;
return true;
}
Last edited: