Hello, So I want to make a custom item with this script
if( Class==Job_High_Priest ) { bonus bHealPower,30; skill "AL_HEAL",20; skill "AL_BLESSING",20; }
It works perfectly. But then I want to add permanent assumptio status for it, so
if( Class==Job_High_Priest ) { bonus bHealPower,30; skill "AL_HEAL",20; skill "AL_BLESSING",20; sc_start SC_ASSUMPTIO,-1,5; }
Then, the assumptio status change applied. But only the bHealPower bonus works, those skill add scripts (AL_HEAL, AL_BLESSING) didnt, AND my MAX HP dropped to about 40% (from 55k to 20k).
Im using latest (master) rathena version with client 20151104 and pre-renewal mode. Question: - Is my 2nd script correct? If not, please correct me.
- If it's correct, so is this a bug? Is there any other way to achieve my demand? Side question cause I dont wanna make another thread: - Is there any script or way to check my equipped weapon type? So I can make a condition (i.e if equipped weapon is 1h or 2h spear type then add spear skills for user).