Diana Posted May 23, 2020 Posted May 23, 2020 Eden gives only Base Level EXP no job exp, How can I change this to be for Base and job level? Quote
0 TheKingDino Posted May 23, 2020 Posted May 23, 2020 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. 1 Quote
0 Diana Posted May 24, 2020 Author Posted May 24, 2020 @TheKingDinoIt works ! Thank you very much! Quote
Question
Diana
Eden gives only Base Level EXP no job exp,
How can I change this to be for Base and job level?
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.