Jump to content
  • 0

How to change exp rate at a specific level?


redyelogrin

Question


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  26
  • Reputation:   0
  • Joined:  02/25/14
  • Last Seen:  

i want to increase exp rate when characters get to lvl 175. my servers max level is 255.

 

can you teach me how to do this?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  177
  • Reputation:   25
  • Joined:  12/24/14
  • Last Seen:  

On 3/10/2014 at 9:36 AM, Emistry said:

you can use this

db/re/level_penalty.txt

@Emistry: that just on renewal system, how about pre-renewal ??
because I search level_penalty.txt not found on pre-renewal folder



or I must use this script ?

On 3/10/2014 at 9:20 AM, sandbox said:

Here's a workaround


-	script	175Exp	-1,{

OnNPCKillEvent:
	if(BaseLevel >= 175 && getmonsterinfo(killedrid,1) > 120) {
		BaseExp = BaseExp + (NextBaseExp/10);
		JobExp = JobExp + (NextJobExp/10);
	}
end;

}

It will give 10% Base and Job exp whenever they kill a monster whose level is greater than 120

 

Thank you ~

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  38
  • Topics Per Day:  0.01
  • Content Count:  949
  • Reputation:   174
  • Joined:  06/12/12
  • Last Seen:  

Here's a workaround

-	script	175Exp	-1,{

OnNPCKillEvent:
	if(BaseLevel >= 175 && getmonsterinfo(killedrid,1) > 120) {
		BaseExp = BaseExp + (NextBaseExp/10);
		JobExp = JobExp + (NextJobExp/10);
	}
end;

}

It will give 10% Base and Job exp whenever they kill a monster whose level is greater than 120

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

you can use this

db/re/level_penalty.txt

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...