diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/map.c | 1 | ||||
-rw-r--r-- | src/map/pc.c | 20 |
3 files changed, 21 insertions, 2 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 94803ac18..613c7251c 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2007/11/12 + * Now when job changing to another class tree, status changes from skills + that belong to your previous class are cleared. [Skotlex] * Applied Rayce's improvements to the npc script parser [ultramage] * Made on-touch areas work with walking npcs (is somewhat process intensive, but people do not really care about that, do they?) [Skotlex] diff --git a/src/map/map.c b/src/map/map.c index 526c24394..97d8e1d12 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -38,6 +38,7 @@ #include "charcommand.h" #include "log.h" #include "irc.h" +#include "npc.h" #ifndef TXT_ONLY #include "mail.h" #endif diff --git a/src/map/pc.c b/src/map/pc.c index 4402409db..e50d6c57c 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -5606,10 +5606,26 @@ int pc_jobchange(struct map_session_data *sd,int job, int upper) sd->change_level = sd->status.job_level; else if (!sd->change_level) sd->change_level = 40; //Assume 40? + pc_setglobalreg (sd, "jobchange_level", sd->change_level); } - pc_setglobalreg (sd, "jobchange_level", sd->change_level); - + if(sd->cloneskill_id) { + sd->cloneskill_id = 0; + pc_setglobalreg(sd, "CLONE_SKILL", 0); + pc_setglobalreg(sd, "CLONE_SKILL_LV", 0); + } + if ((b_class&&MAPID_UPPERMASK) != (sd->class_&MAPID_UPPERMASK)) + { //Things to remove when changing class tree. + const int class_ = pc_class2idx(sd->status.class_); + int id; + for(i = 0; i < MAX_SKILL_TREE && (id = skill_tree[class_][i].id) > 0; i++) { + //Remove status specific to your current tree skills. + id = SkillStatusChangeTable(id); + if (id > SC_COMMON_MAX && sd->sc.data[id].timer != -1) + status_change_end(&sd->bl, id, -1); + } + } + sd->status.class_ = job; fame_flag = pc_famerank(sd->status.char_id,sd->class_&MAPID_UPPERMASK); sd->class_ = (unsigned short)b_class; |