chronick Posted May 1, 2012 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 7 Reputation: 0 Joined: 04/20/12 Last Seen: May 3, 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 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 715 Reputation: 84 Joined: 01/05/12 Last Seen: April 10, 2023 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 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 407 Reputation: 159 Joined: 11/18/11 Last Seen: November 15, 2014 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...
Question
chronick
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
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.