Server modifications

Сорок два

Administrator
Staff member
Admin
Content Creator
Guide Author
Seller
Premium
Let's start assembling everything in one place (topic) with little guides in message to tweak the server part.

Everyone can write some server modifications here but only guide message, no flood or HS.
 
OP
Сорок два

Сорок два

Administrator
Staff member
Admin
Content Creator
Guide Author
Seller
Premium
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

  • Professions_LVL55.zip
    14.9 KB · Views: 42
OP
Сорок два

Сорок два

Administrator
Staff member
Admin
Content Creator
Guide Author
Seller
Premium
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

  • LevelUp38.(SpellCasterSelf).xdb
    1.3 KB · Views: 29
OP
Сорок два

Сорок два

Administrator
Staff member
Admin
Content Creator
Guide Author
Seller
Premium
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

  • AC8_Dragon_Blood.(ItemResource).xdb
    1.3 KB · Views: 18
  • AC8_UnlockDragonForm.(SpellCasterSelf).xdb
    29.7 KB · Views: 14
  • Dragon_Blood.(ItemResource).xdb
    1.3 KB · Views: 14
  • UnlockDragonForm.(SpellCasterSelf).xdb
    29.7 KB · Views: 13

Top Bottom