Metin2 Leveling petsystem (unsummon)

Welcome!

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

SignUp Now!

Capturre

Member
Joined
Dec 29, 2019
Messages
99
Credits
0
Hello users.

If you have the leveling (new petsystem) you know what about i speak.

When character die / teleport the pet unsummon.

Here how change this.

New_petsystem.cpp

Search : bool CNewPetActor::Update(DWORD deltaTime)

In Function :
if (
NULL == ITEM_MANAGER::instance().FindByVID(this->GetSummonItemVID())
|| ITEM_MANAGER::instance().FindByVID(this->GetSummonItemVID())->GetOwner() != this->GetOwner()
)

Next lines you can find some code whats seems like this :
this->Unsummon();

Comment like //this->Unsummon(); or delete the line.
If you do this the pet bonus after teleport or die does not appear. Have to resummon
To solve some error ( does not give bonus when get up )
Add new check.
if ( petbonuses <=0 && m_pkOwner->IsAlive() && IsSummoned() )
{
this->GiveBuff();
petbonuses ++;
return true;
}
Search : CNewPetActor::CNewPetActor(LPCHARACTER owner, DWORD vnum, DWORD options)
You have to add petbonuses = 0 like this.
petbonuses = 0;

If you die again the bonuses does not give again.
To fix make one new check
if ( petbonuses >= 1 && m_pkOwner->IsDead() )
{
petbonuses = 0;
return true;
}

Good luck for everyone.
Edmund.
 
Back
Top