kemids18 Posted February 25, 2014 Posted February 25, 2014 Hi Rathena. can i request a script something like it will make characters stop gaining exp from monsters when they reach level 90 can only gain experience from doing quests until they reach max level for their current job ex. assassin max level 99 i think i saw something like this on ea about 2 years ago but i want to apply on rathena latest version hope you help me out thank u so much Quote
Jonne Posted February 25, 2014 Posted February 25, 2014 (edited) Can't give you a diff because I work on a project and don't want to create a new branch, but here is what you do: In ./src/map/mob.c look for the mob_dead function if (map[m].flag.nobaseexp || !md->db->base_exp) base_exp = 0; And change it to the following: if (map[m].flag.nobaseexp || !md->db->base_exp || tmpsd[i]->status.base_level >= 90) base_exp = 0; Edited February 25, 2014 by Jonne Quote
Question
kemids18
Hi Rathena.
can i request a script something like it will make characters
stop gaining exp from monsters when they reach level 90
can only gain experience from doing quests until they reach max level for their current job ex. assassin max level 99
i think i saw something like this on ea about 2 years ago but i want to apply on rathena latest version
hope you help me out thank u so much
2 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.