Instalează Steam
conectare
|
limbă
简体中文 (chineză simplificată)
繁體中文 (chineză tradițională)
日本語 (japoneză)
한국어 (coreeană)
ไทย (thailandeză)
български (bulgară)
Čeština (cehă)
Dansk (daneză)
Deutsch (germană)
English (engleză)
Español - España (spaniolă - Spania)
Español - Latinoamérica (spaniolă - America Latină)
Ελληνικά (greacă)
Français (franceză)
Italiano (italiană)
Bahasa Indonesia (indoneziană)
Magyar (maghiară)
Nederlands (neerlandeză)
Norsk (norvegiană)
Polski (poloneză)
Português (portugheză - Portugalia)
Português - Brasil (portugheză - Brazilia)
Русский (rusă)
Suomi (finlandeză)
Svenska (suedeză)
Türkçe (turcă)
Tiếng Việt (vietnameză)
Українська (ucraineană)
Raportează o problemă de traducere
I think you need to manually add a mastery set name into the companyPropertyMaster table
example:
insert into companyPropertyMaster (masterIndex, mastername) values (999999, 'MasterySetIndex/Bonecrusher')
then add it to the company:
example:
insert into companyProperty (companyID, masterIndex, cpValue) values (14, 999999. true).
Also you need to know the exact name of the mastery set (not the in game name).
Extract the game files and look in the data/xml/MasterySet.xml file.
Maybe there is an easier way to do it. I don't know.
Ok, I don't think that is possible with save editing. Possible by modding the game
This is not exactly what I need. I'm wondering if it's possible to change the number of open masteries (for example, add 15 of them all) https://fastpic.org/view/122/2023/1225/e79fa940ee5b37b362f1289f9c9c201f.png.html
and change the number of training points available to the player.
Anyway, thanks.
...Go to table: 'mastery' and insert the data (the values masteryLv needs to be 1 and boardIndex is the first mastery board, change it to 1 for the 2nd, 2 for the 3rd...):
insert into mastery (rosterID,masterIndex,masteryLv,boardIndex) VALUES (162,343,1,0);
insert into mastery (rosterID,masterIndex,masteryLv,boardIndex) VALUES (162,6626,1,0);
insert into mastery (rosterID,masterIndex,masteryLv,boardIndex) VALUES (162,4019,1,0);
insert into mastery (rosterID,masterIndex,masteryLv,boardIndex) VALUES (162,6637,1,0);
commit changes and test in game
go to table: 'company' and get the value of companyID
select * from company
(I got 14 from my Lions company)
Next go to table: 'roster' and get the ID of the character you want (example: Irene)
select rosterID from roster where companyID = 14 and rosterName = 'Irene'
(I got 162)
Next go to to table: 'masteryMaster', find the masteries you want to add and get its 'masterIndex' (note: some masteries have weird names, ex: mutant is mutation in the database)
example getting Ids of berserker, lunacy, anger strike and mutant:
SELECT masterIndex from masteryMaster where masterName in ('Berserker','Madness','RageBlow','Mutation')
( I got 343, 6626, 4019 and 6637)...