kemids18 Posted February 25, 2014 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 18 Reputation: 0 Joined: 01/20/12 Last Seen: February 25, 2015 Share 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 Link to comment Share on other sites More sharing options...
Jonne Posted February 25, 2014 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 153 Reputation: 33 Joined: 12/24/11 Last Seen: September 30, 2024 Share 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 Link to comment Share on other sites More sharing options...
kemids18 Posted February 25, 2014 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 18 Reputation: 0 Joined: 01/20/12 Last Seen: February 25, 2015 Author Share Posted February 25, 2014 thank you! works well Quote Link to comment Share on other sites More sharing options...
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
Link to comment
Share on other sites
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.