Jump to content

AJUDA AUMENTAR EXPERIENCIA AO INICIAR


CAMBOJA
 Share

Recommended Posts

  • 2 weeks later...

Esse bónus dá apenas 50% exp no metin2 original

 

Para mudar, vai ao ficheiro char_battle.cpp

Dentro da função:

static void GiveExp

Procura por:

if (to->GetPremiumRemainSeconds (PREMIUM_EXP) > 0) {
			iExp += (iExp * 50 / 100); //50%
		}

Altera para:

if (to->GetPremiumRemainSeconds (PREMIUM_EXP) > 0) {
			iExp += (iExp); //+100% bónus exp
		}

 

 

 

Exemplo para 200% exp:

if (to->GetPremiumRemainSeconds (PREMIUM_EXP) > 0) {
			iExp += (iExp * 2); //+200% bónus exp
		}

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...