mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 14:07:20 +00:00
e2dfa1809d
For components
26 lines
866 B
C++
26 lines
866 B
C++
#include "CoilBackpackBase.h"
|
|
|
|
#include "Entity.h"
|
|
#include "SkillComponent.h"
|
|
|
|
void CoilBackpackBase::OnFactionTriggerItemEquipped(Entity* itemOwner, LWOOBJID itemObjId) {
|
|
itemOwner->Subscribe(itemObjId, this, "HitOrHealResult");
|
|
itemOwner->SetVar<uint8_t>(u"coilCount", 0);
|
|
}
|
|
|
|
void CoilBackpackBase::NotifyHitOrHealResult(Entity* self, Entity* attacker, int32_t damage) {
|
|
if (damage > 0) {
|
|
self->SetVar<uint8_t>(u"coilCount", self->GetVar<uint8_t>(u"coilCount") + 1);
|
|
if (self->GetVar<uint8_t>(u"coilCount") > 4) {
|
|
auto* skillComponent = self->GetComponent<SkillComponent>();
|
|
if (!skillComponent) return;
|
|
skillComponent->CastSkill(m_SkillId);
|
|
self->SetVar<uint8_t>(u"coilCount", 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
void CoilBackpackBase::OnFactionTriggerItemUnequipped(Entity* itemOwner, LWOOBJID itemObjId) {
|
|
itemOwner->Unsubscribe(itemObjId, "HitOrHealResult");
|
|
}
|