Jump to content
  • 0

Eden gives only Base Level EXP no job exp


Question

3 answers to this question

Recommended Posts

  • 0
Posted

Depends on which level range script you are looking at.

26-40.txt does grant job experience. While 41-55,txt does not. For two examples. Found in npc/re/quests/eden

Found in 41-55.txt

	setarray .@Exp[0],9600,7200,15750,7875,11100,8550,17100,9000,12300,9900,20250,10350,13800,11025,22500,11250;
	for(set .@i,0; .@i<16; set .@i,.@i+1)
		if (checkquest(12072+.@i,HUNTING) == 2) {
			mes "[Mission Board]";
			mes "You have completed the mission.";
			mes "Here is your reward.";
			erasequest 12088;
			erasequest 12072+.@i;
			specialeffect2 EF_STEAL;
			getexp .@Exp[.@i],0; // <--- HERE 
			close;
		}

You could simply change it to something like this:
 

			getexp .@Exp[.@i],2000;

And although different quests from this level range will have their base exp dependent on the Array #. Each one of these will always grant 2,000 job exp this way.

To go through them all you can always search "getexp" and change any of the ,0; to your desired job experience.

  • Upvote 1

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...