Resolved Divine Inspiration

But if I want:
1. Skills without Books but Not AutoLearning
2. Divine with Book
# Disabling books for learn skills (for Craft servers). Set False if AutoLearnSkills=true
AltDisableSpellbooks = False -- This needs to be false as well.

# AutoLearn skills for players
AutoLearnSkills = True

# AutoLearn skills from Forgotten Scrolls (valid only when AutoLearnSkills = True)
AutoLearnForgottenSkills = False

# Auto-learning skill Divine Inspiration (valid only when AutoLearnSkills = True)
AutoLearnDivineInspiration = False

testa essas configurações aqui
 
The configuration is very clear. Just read it.
You Don't understand:

I need to disable books for ALL skills (but not for Divine)
AltDisableSpellbooks = True - so you do not need books for skills

I need to learn skills with NPC:

AutoLearnSkills = False - so i need NPC


This does not needed at all - it is not about books and automation:
# AutoLearn skills from Forgotten Scrolls (valid only when AutoLearnSkills = True)
AutoLearnForgottenSkills = False

# Auto-learning skill Divine Inspiration (valid only when AutoLearnSkills = True)
AutoLearnDivineInspiration = False

So how in that case i will need only Divine Inspiration Books ? If i do not need auto learn skills
 
You Don't understand:

I need to disable books for ALL skills (but not for Divine)
AltDisableSpellbooks = True - so you do not need books for skills

I need to learn skills with NPC:

AutoLearnSkills = False - so i need NPC


This does not needed at all - it is not about books and automation:
# AutoLearn skills from Forgotten Scrolls (valid only when AutoLearnSkills = True)
AutoLearnForgottenSkills = False

# Auto-learning skill Divine Inspiration (valid only when AutoLearnSkills = True)
AutoLearnDivineInspiration = False

So how in that case i will need only Divine Inspiration Books ? If i do not need auto learn skills
You can remove the requirement for skill books for regular skills in:

gameserver\data\skill_tree

So it may take a bit of work, but it should work.

For example:

<class id="102"> <!-- Elf Moonlight Sentinel -->
<!-- Symbol of the Sniper -->
<skill id="459" level="1" cost="150000000" min_level="80" item_id="8897" item_count="1" clicked="false"/>
<!-- Ancient Tactical Manual: Symbol of the Sniper -->

You need to remove the item_id, item_count, and clicked parameters.


<!-- Symbol of the Sniper -->
<skill id="459" level="1" cost="150000000" min_level="80"/>

And set all four settings in altsettings.properties to false.
 
Back
Top