chronick Posted May 1, 2012 Share Posted May 1, 2012 {bonus2 bSubEle, Ele_Holy, 15; bonus2 bSubEle, Ele_Dark, -10; if(BaseClass == Job_Acolyte) { bonus2 bSubRace, RC_DemiHuman, 5; bonus bHealPower, 5; bonus2 bSkillAtk, "AL_HOLYLIGHT", 15;} As you can see on the script, the Item gives: Gives +3 INT, and +2 DEX. [Effects] +15% Resistance to Holy Element +10% Weakness against Shadow / Dark Element. [Alcolyte Class] Gain an additional +5% Resistance against Demi-humans,+5% Heal Effectiveness Increased and +15% Increased Holy Light Damage. but seems like there's an error in my script. mapserv-sql says "Unexpected End of Script" "parse_line: expect command, missing function name or calling or undeclared function" I hope someone could help me, any help would be very much appreciated Quote Link to comment Share on other sites More sharing options...
Lelouch vi Britannia Posted May 1, 2012 Share Posted May 1, 2012 (edited) Try this one From this { bonus2 bSubEle, Ele_Holy, 15; bonus2 bSubEle, Ele_Dark, -10; if(BaseClass == Job_Acolyte) { bonus2 bSubRace, RC_DemiHuman, 5; bonus bHealPower, 5; bonus2 bSkillAtk, "AL_HOLYLIGHT", 15; } To this one { bonus2 bSubEle, Ele_Holy, 15; bonus2 bSubEle, Ele_Dark, -10; if(BaseClass == Job_Acolyte) bonus2 bSubRace, RC_DemiHuman, 5; bonus bHealPower, 5; bonus2 bSkillAtk, "AL_HOLYLIGHT", 15; } Edited May 1, 2012 by Lelouch Quote Link to comment Share on other sites More sharing options...
Lilith Posted May 1, 2012 Share Posted May 1, 2012 }? { bonus2 bSubEle, Ele_Holy, 15; bonus2 bSubEle, Ele_Dark, -10; if(BaseClass == Job_Acolyte) { bonus2 bSubRace, RC_DemiHuman, 5; bonus bHealPower, 5; bonus2 bSkillAtk, "AL_HOLYLIGHT", 15; }} Quote Link to comment Share on other sites More sharing options...
{bonus2 bSubEle, Ele_Holy, 15; bonus2 bSubEle, Ele_Dark, -10; if(BaseClass == Job_Acolyte) { bonus2 bSubRace, RC_DemiHuman, 5; bonus bHealPower, 5; bonus2 bSkillAtk, "AL_HOLYLIGHT", 15;}As you can see on the script, the Item gives:
Gives +3 INT, and +2 DEX.
[Effects]
+15% Resistance to Holy Element +10% Weakness against Shadow / Dark Element.
[Alcolyte Class]
Gain an additional +5% Resistance against Demi-humans,+5% Heal Effectiveness Increased and +15% Increased Holy Light Damage.
but seems like there's an error in my script. mapserv-sql says
"Unexpected End of Script"
"parse_line: expect command, missing function name or calling or undeclared function"
I hope someone could help me, any help would be very much appreciated
Link to comment
Share on other sites