Hello,
I show to you how to ameliortae the power of a skill directly in source.
This is more convenient than edit propSkillAdd '-'
Go in your WORLDSERVER folder, and open AttackArbitter.cpp.
Search it :
Winter' :)
I show to you how to ameliortae the power of a skill directly in source.
This is more convenient than edit propSkillAdd '-'
Go in your WORLDSERVER folder, and open AttackArbitter.cpp.
Search it :
And in this function, add this (just an example) :Quote:
int CAttackArbiter::OnAfterDamage( ATTACK_INFO* pInfo, int nDamage )
Damage of SI_VAG_ONE_CLEANHIT skill are multiplied by 2.Quote:
if( pInfo->GetSkill() == SI_VAG_ONE_CLEANHIT );
{
nDamage = nDamage * 2;
}
Winter' :)