elnelson
Lunaria World Dev
Hello, im using this files [7.4, 7.8, 7.92, 8.0] Sabrehaven.com based on Nostalrius 7.7 fork (https://otland.net/threads/7-4-7-8-7-92-8-0-sabrehaven-com-based-on-nostalrius-7-7-fork.283603/) on 8.0 branch but seems like onHealthChange doesnt work on negative values (only work when healing)
im trying to get the values using prints but i as i said before it doesnt work on damage.
the original creatureevent.cpp is this:
i asked to god gpt to fix it, but it keep failing, any ideas how to solve this its driving me crazy u.u
note: i've already registered event on login and also tried on creature but keeps failing :S
im trying to get the values using prints but i as i said before it doesnt work on damage.
LUA:
function onHealthChange(creature, attacker, value, type, min, max, origin)
-- Imprimir todas las variables recibidas
print("=== onHealthChange Called ===")
print("Creature:", creature and creature:getName() or "nil")
print("Attacker:", attacker and attacker:getName() or "nil")
print("Value (Damage/Heal):", value)
print("Type:", type)
print("Min:", min)
print("Max:", max)
print("Origin:", origin)
-- Identificar el tipo de daño o curación
if type == COMBAT_HEALING then
print("Effect: Healing")
else
print("Effect: Damage")
end
-- Identificar el origen del daño
if origin == ORIGIN_MELEE then
print("Damage Origin: Melee Attack")
elseif origin == ORIGIN_RANGED then
print("Damage Origin: Ranged Attack")
elseif origin == ORIGIN_SPELL then
print("Damage Origin: Spell")
elseif origin == ORIGIN_CONDITION then
print("Damage Origin: Condition (e.g., poison, fire)")
elseif origin == ORIGIN_UNKNOWN then
print("Damage Origin: Unknown")
else
print("Damage Origin: Other (" .. tostring(origin) .. ")")
end
-- Retornar los valores sin modificar (puedes ajustarlo si necesitas)
return value, type, min, max
end
the original creatureevent.cpp is this:
C++:
void CreatureEvent::executeHealthChange(Creature* creature, Creature* attacker, CombatDamage& damage)
{
//onHealthChange(creature, attacker, value, type, min, max, origin)
if (!scriptInterface->reserveScriptEnv()) {
std::cout << "[Error - CreatureEvent::executeHealthChange] Call stack overflow" << std::endl;
return;
}
ScriptEnvironment* env = scriptInterface->getScriptEnv();
env->setScriptId(scriptId, scriptInterface);
lua_State* L = scriptInterface->getLuaState();
scriptInterface->pushFunction(scriptId);
LuaScriptInterface::pushUserdata(L, creature);
LuaScriptInterface::setCreatureMetatable(L, -1, creature);
if (attacker) {
LuaScriptInterface::pushUserdata(L, attacker);
LuaScriptInterface::setCreatureMetatable(L, -1, attacker);
}
else {
lua_pushnil(L);
}
LuaScriptInterface::pushCombatDamage(L, damage);
if (scriptInterface->protectedCall(L, 7, 4) != 0) {
LuaScriptInterface::reportError(nullptr, LuaScriptInterface::popString(L));
}
else {
damage.value = std::abs(LuaScriptInterface::getNumber<int32_t>(L, -4));
damage.type = LuaScriptInterface::getNumber<CombatType_t>(L, -3);
damage.min = std::abs(LuaScriptInterface::getNumber<int32_t>(L, -2));
damage.max = LuaScriptInterface::getNumber<CombatType_t>(L, -1);
lua_pop(L, 4);
if (damage.type != COMBAT_HEALING) {
damage.value = -damage.value;
}
}
scriptInterface->resetScriptEnv();
}
i asked to god gpt to fix it, but it keep failing, any ideas how to solve this its driving me crazy u.u
note: i've already registered event on login and also tried on creature but keeps failing :S