Quests /Python Aggregate Monster Fix [ZIMBO Server Files]

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Vanilla

Elite
Elite
Joined
Jan 28, 2019
Messages
839
Credits
1,190
Hello, in the shared ZIMBO files, the cloak was running, the mobs were running left and right fixed.

Search char_state.cpp
C++:
Expand Collapse Copy
void CHARACTER::StateMove()
Search in
C++:
Expand Collapse Copy
 if (IsMonster() && GetVictim())
{
LPCHARACTER victim = GetVictim();
UpdateAggrPoint(victim, DAMAGE_TYPE_NORMAL, -(victim->GetLevel() / 3 + 1));

if (g_test_server)
{
// 몬스터가 적을 쫓아가는 것이면 무조건 뛰어간다.
SetNowWalking(false);
}
}
UpdateAggrPoint (victim, DAMAGE_TYPE_NORMAL, - (victim-> GetLevel () / 3 + 1)); Add after Add

to

C++:
Expand Collapse Copy
 if (dwElapsedTime > 500) {
__CHARACTER_GotoNearTarget(this, victim);
}
 

Similar threads

Back
Top