Allods Developers Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Server modifications

BookNecromantic.png
Modification: The maximum level of professions in the study of the "Textbook"

Do with the use of books of professions (Alchemy, Blacksmith, Leatherworker, Weaponsmith, Tailor) immediately study the 55 lvl.

Thank you very much Atzakko for the help that you can write in Spell's code.
Thanks witcherivan for the full code
This is a template on the example of Spell's Alchemy.

Spoiler: spell Alchemy Finished files, books on 5223 gold, all Spell professions give 55 lvls.
 

Attachments

AccumulationPowerSparks.png
Modification: Maximum character level when using the item "Rune of Power"

Open the required file : /Server/game/data/PacksXDB_Mechanics.Server.pak/Mechanics/Spells/LevelUp/LevelUp38. (SpellCasterSelf) .xdb

Change the value of line 28

XML:
<!-- old -->
<level>38</level>
<!-- new -->
<level>55</level>
Get a spell raising the level of the character to the maximum.
 

Attachments

poison02-png.1622
Modification: Access to blocked content when using the item "Drop of Blood of the Great Dragon"

He did not bother with checking for belonging to a certain faction and decided to use two similar items for this modification.

The path to configs and spells is here :

Code:
.\server\game\data\Packs\XDB_Items.Server.pak\Items\QuestItems\Inst_GurluhsorTower\Dragon_Blood\Dragon_Blood.(ItemResource).xdb
.\server\game\data\Packs\XDB_Items.Server.pak\Items\QuestItems\Inst_GurluhsorTower\Dragon_Blood\UnlockDragonForm.(SpellCasterSelf).xdb

.\server\game\data\Packs\XDB_Items.Server.pak\Items\QuestItems\Inst_GurluhsorTower\Dragon_Blood\AC8_Dragon_Blood.(ItemResource).xdb
.\server\game\data\Packs\XDB_Items.Server.pak\Items\QuestItems\Inst_GurluhsorTower\Dragon_Blood\AC8_UnlockDragonForm.(SpellCasterSelf).xdb

Unlocks are added in spells :

.\server\game\data\Packs\XDB_Items.Server.pak\Items\QuestItems\Inst_GurluhsorTower\Dragon_Blood\UnlockDragonForm.(SpellCasterSelf).xdb
.\server\game\data\Packs\XDB_Items.Server.pak\Items\QuestItems\Inst_GurluhsorTower\Dragon_Blood\AC8_UnlockDragonForm.(SpellCasterSelf).xdb

Most of the unlocks are located along this path : .\server\game\data\Packs\XDB_Mechanics.Server.pak\Mechanics\Unlocks\
 

Attachments

Back
Top