Steam 설치
로그인
|
언어
简体中文(중국어 간체)
繁體中文(중국어 번체)
日本語(일본어)
ไทย(태국어)
Български(불가리아어)
Čeština(체코어)
Dansk(덴마크어)
Deutsch(독일어)
English(영어)
Español - España(스페인어 - 스페인)
Español - Latinoamérica(스페인어 - 중남미)
Ελληνικά(그리스어)
Français(프랑스어)
Italiano(이탈리아어)
Bahasa Indonesia(인도네시아어)
Magyar(헝가리어)
Nederlands(네덜란드어)
Norsk(노르웨이어)
Polski(폴란드어)
Português(포르투갈어 - 포르투갈)
Português - Brasil(포르투갈어 - 브라질)
Română(루마니아어)
Русский(러시아어)
Suomi(핀란드어)
Svenska(스웨덴어)
Türkçe(튀르키예어)
Tiếng Việt(베트남어)
Українська(우크라이나어)
번역 관련 문제 보고
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)...