kamotlikod Posted October 26, 2013 Share Posted October 26, 2013 Can you please help me. I made an Item that enables any job to have the plagirism skill but It fails cannot copy skills when the character is not a rouge/stalker/schaser. Can you help me? Quote Link to comment Share on other sites More sharing options...
Kichi Posted October 26, 2013 Share Posted October 26, 2013 should need source editskill.c // Check if the skill is copyable by class if (!pc_has_permission(sd, PC_PERM_ALL_SKILL)) { uint16 job_allowed; job_allowed = skill_db[idx].copyable.joballowed; while (1) { if (job_allowed&0x01 && sd->status.class_ == JOB_ROGUE) break; if (job_allowed&0x02 && sd->status.class_ == JOB_STALKER) break; if (job_allowed&0x04 && sd->status.class_ == JOB_SHADOW_CHASER) break; if (job_allowed&0x08 && sd->status.class_ == JOB_SHADOW_CHASER_T) break; if (job_allowed&0x10 && sd->status.class_ == JOB_BABY_ROGUE) break; if (job_allowed&0x20 && sd->status.class_ == JOB_BABY_CHASER) break; return 0; } } DELETE IT i didn't test 1 Quote Link to comment Share on other sites More sharing options...
kamotlikod Posted October 27, 2013 Author Share Posted October 27, 2013 Thank you Quote Link to comment Share on other sites More sharing options...
Kichi Posted October 27, 2013 Share Posted October 27, 2013 mark it as answered sirand if you don't mind to click the green button/thx Quote Link to comment Share on other sites More sharing options...
Can you please help me. I made an Item that enables any job to have the plagirism skill but It fails cannot copy skills when the character is not a rouge/stalker/schaser.
Can you help me?
Link to comment
Share on other sites