Closed yujin12138 closed 11 months ago
In the Settings.json
Change this setting (Line 40 ) to true
.
"CardCraftableAll": false,
This will allow you to craft all cards.
In regards to a royal rare. You can try to craft them until you get a royal. or if you can edit the Data\Players\Local\Player.json
file (assuming you don't have it set to multiplayer) and set the value of the p2n to however many you need.
Example:
(Slifer cardID=3869)
(Obelisk cardID=3868)
"3869":{
"st":1699917251,
"r":1,
"n":1,
"p1n":0,
"p2n":1,
"p_n":0,
"p_p1n":0,
"p_p2n":0,
"tn":2
},
在 Settings.json 中,将此设置_(第 40 行)_更改为 . 这将允许你制作所有卡牌。
true``"CardCraftableAll": false,
关于皇室稀有。你可以尝试制作它们,直到你得到一个皇室成员。或者,如果您可以编辑文件(假设您没有将其设置为多人游戏)并将 P2N 的值设置为您需要的任意数量。示例:(Slifer cardID=3869) (方尖碑 cardID=3868)
Data\Players\Local\Player.json
"3869":{ "st":1699917251, "r":1, "n":1, "p1n":0, "p2n":1, "p_n":0, "p_p1n":0, "p_p2n":0, "tn":2 },
Thank you for your answer, if the multiplayer game is enabled, does this method still work?
关于
I find that I have multiplayer enabled and I can't find the player.json file in the corresponding path, so what if I need to change it with multiplayer enabled?
If you have mutiplayer enabled, then inside the server machine, if you go to Data\Players\
there will be folders for each player inside here. example if your player code is "132-465-798" the folder will be called 132465798 so the folder path should look like this Data\Players\132465798
so inside this folder is where you'll find the player.json file for each player.
如果你启用了多播放器,那么在服务器机器内部,如果你去,这里会有每个播放器的文件夹。例如,如果播放器代码为“132-465-798”,则该文件夹将132465798,因此文件夹路径应如下所示,因此在此文件夹中可以找到每个播放器的 player.json 文件。
Data\Players\``Data\Players\132465798
Thank you very much, but I don't see the above code in the corresponding player.json file. "3869":{ "st":1699917251, "r":1, "n":1, "p1n":0, "p2n":1, "p_n":0, "p_p1n":0, "p_p2n":0, "tn":2 }, What should I do?
Yeah If you havent crafted or own that card already it wont appear in the json file. Either you can craft a card ingame and then change the rarity (This is probably a safer way), or in the json try to add a new entry for the cards.
This JSON entry will give you 3 royals for each obelisk alt and slifer alt. Make sure you add it under the Cards
Key.
"3868":{
"st":1701721913,
"r":1,
"n":0,
"p1n":0,
"p2n":3,
"p_n":0,
"p_p1n":0,
"p_p2n":0,
"tn":3
},
"3869":{
"st":1701722094,
"r":1,
"n":0,
"p1n":0,
"p2n":3,
"p_n":0,
"p_p1n":0,
"p_p2n":0,
"tn":3
},
Steam\steamapps\common\Yu-Gi-Oh! Master Duel\YgoMaster\Data\Players\943901380 I'm sorry, I still can't find what you said. Is it a different path or something? Can you tell me the exact way?
yes 如果您尚未制作或拥有该卡,则它不会出现在 json 文件中。您可以在游戏中制作一张卡牌,然后更改稀有度(这可能是一种更安全的方法),或者在 json 中尝试为卡牌添加一个新条目。
此 JSON 条目将为每个方尖碑 alt 和 slifer alt 提供 3 个皇室成员。确保将其添加到“密钥”下。
Cards
"3868":{ "st":1701721913, "r":1, "n":0, "p1n":0, "p2n":3, "p_n":0, "p_p1n":0, "p_p2n":0, "tn":3 }, "3869":{ "st":1701722094, "r":1, "n":0, "p1n":0, "p2n":3, "p_n":0, "p_p1n":0, "p_p2n":0, "tn":3 },
Hmm, You dont seem to have the cards Key in that file.
In your Settings.json
Line 32, Do you have this set to true?
"UnlockAllCards": true,
嗯,你似乎没有那个文件中的卡片钥匙。
在您的第 33 行中,您是否将其设置为 true?
Settings.json
"UnlockAllCards": true,
I opened it.
So you do have it set to true? If so, your cards won't save as every card should be unlocked already.
所以你确实把它设置为true?如果是这样,您的卡将不会保存,因为每张卡都应该已经解锁。
As shown in the picture, I did open it, but I did not find the string of code you said, I am very sad.
You have all the cards unlocked so you cannot craft any new cards that also means you cannot craft and save cards in any rarity apart from normal (no Foil Finish or Royal Finish). The issue is seen here too. https://github.com/pixeltris/YgoMaster/issues/280#:~:text=There%20isn%27t%20any%20code%20which%20sets%20royal%20finish%20for%20all%20cards.%20The%20unlock%20all%20cards%20setting%20is%20hard%20coded%20to%20Normal.%20You%27d%20need%20to%20change%20this%20to%20Royal%3A
所以你确实把它设置为true?如果是这样,您的卡将不会保存,因为每张卡都应该已经解锁。
Will it be path error QWQ
你已经解锁了所有的卡牌,所以你不能制作任何新卡牌,这也意味着你不能制作和保存任何稀有卡牌,除了普通的(没有闪光或皇家光洁)。这里也看到了这个问题。 #280
So should I close it first?
No your game is configured to have all cards unlocked, if you look at the code of YgoMaster, If you have the UnlockAllCards
set to true
. You cant create more cards in any other rarity.
If you read the json comment in Settings.json, it also tells you this.
如果你阅读 Settings.json 中的 json 注释,它也会告诉你这一点。
"UnlockAllCards": false,// [WARNING] Enabling this permanently wipes your saved cards (all cards are set to 3x without any shine/royal and any newly obtained cards don't save)
Sorry, how should I modify it?
To start saving files youll need to edit the following. (Beware this will make it so all players will have no cards so you will need to craft them again.)
in the Settings.json
, change the following keys so that they look like the ones bellow.
"UnlockAllCards": false,
...
"CardCraftableAll": true,
When you do this and then restart YgoMaster.exe
you'll be able to save the cards inside the Player.json.
要开始保存文件,您需要编辑以下内容。(请注意,这将使所有玩家都没有卡牌,因此您需要再次制作它们。在 中,更改以下键,使其看起来像下面的键。 。
Settings.json``"UnlockAllCards": false,
"CardCraftableAll": true,
执行此操作并重新启动时,你将能够将卡片保存在 Player.json 中。
YgoMaster.exe
Thank you very much for your patience!!
Then if you need to add Gems or CraftPoints to Players, you can edit the Player.json
mentioned above to give yourself or others the gems or craft points.
然后,如果您需要向玩家添加宝石或工艺点数,您可以编辑上述内容以为自己或他人提供宝石或工艺点数。
Player.json
By the way, should I synthesize the required card first and then modify the data to get the Royal Craft card, or should I modify the data directly? Thank you very much!
Yes I would craft the card first, then edit the file. I would edit the file when YgoMaster.exe is NOT running. After you've modified the file you can restart YgoMaster.exe.
是的,我会先制作卡片,然后编辑文件。我会在YgoMaster.exe未运行时编辑该文件。修改文件后,您可以重新启动 YgoMaster.exe。
Thank you very much for your patient answer!
Remember to close the issue if fixed. Thanks.
Remember to close the issue if fixed. Thanks.
OK
Remember to close the issue if fixed. Thanks.
I would like to know if there is a tool that can help me more easily sort the card groups into the order I want. Of course, it is already turned on without shuffling, thank you very much!
The new cards of the three Gods cannot be synthesized, is there a way to turn them into royal processing?