你好,那個..請問你是直接在RPG Maker MZ的「遊戲測試」執行嗎?
還有你輸出後的package.json是否有被修改過。
如果可以的話,能告訴我你電腦的作業系統版本嗎?
兔子茶會 RabbitTeaParty
Creator of
Recent community posts
Hello, I have now re-exported the NekoGakuen_SteamworksPlus.dll file, and it should now properly support Windows 11 operating system. Please re-download the file from itch. As for TransMod, it is a translation patch. You need to load both NekoGakuen_SteamworksPlus.js and NekoGakuen_SteamworksPlus_TransMod.js into the plugin manager, and place NekoGakuen_SteamworksPlus_TransMod.js before NekoGakuen_SteamworksPlus.js, which means above NekoGakuen_SteamworksPlus.js:
---------------------------
NekoGakuen_SteamworksPlus_TransMod.js
NekoGakuen_SteamworksPlus.js
---------------------------
After you have configured the plugin parameters for NekoGakuen_SteamworksPlus_TransMod.js, you need to specify the translation patch name in the "Translate Patch" parameter of NekoGakuen_SteamworksPlus.js plugin (for example, NekoGakuen_SteamworksPlus_TransMod.js).
Hi, this is the part where I wrote the wrong code and put the following in line 3066
SteamworksAPIManager.getSteamId = function (variablesId) {
if (!this.isSteamClientRun()) { return false; }
if (variablesId) {
$gameVariables.setValue(Number(variablesId),
this.greenworksCore.getSteamId());
}
return this.greenworksCore.getSteamId(); }
}
Change to
SteamworksAPIManager.getSteamId = function (variablesId) {
if (!this.isSteamClientRun()) { return false; }
var steamInfo = JSON.stringify(this.greenworksCore.getSteamId());
if (variablesId) {
$gameVariables.setValue(Number(variablesId), JSON.parse(steamInfo).steamId);
}
return JSON.parse(steamInfo).steamId; }
}; }
Um... Actually, I've been busy recently developing NekoGakuen SteamworksPlus, which is a plugin I'm writing myself. It's a bit different from NekoGakuen SteamworksAPI in that it doesn't rely on Greenworks.js or require downloading corresponding versions of node, etc. It calls API functions directly from the native Steamworks SDK. Currently, I'm working hard on adding and researching leaderboard functionality. I hope you can give me some time to research the leaderboard feature. Also, at present, I've only created a Traditional Chinese version of the NekoGakuen SteamworksPlus plugin. Considering the large amount of text content in the plugin, I really need someone who can help translate it into English for the English version QAQ
Hi ~ I'll give you this test nwjs first, can you press F8 to capture the debug screen and show me?
https://drive.google.com/file/d/1ypq3o2KBzZGxuvgEfICdnJYMOUDev5w-/view?usp=shari...
Hi ~ I'll give you this test nwjs first, can you press F8 to capture the debug screen and show me?
https://drive.google.com/file/d/1ypq3o2KBzZGxuvgEfICdnJYMOUDev5w-/view?usp=shari...
That... You try to use nwjs version 0.83.0, and download the node file corresponding to version 0.83.0, then you try to upload it to dopot to download the test to see the game, if it still doesn't work, see if you want to share a screenshot of the error message to me, or go to the following Discord, and then DM my account.🙇♀️
https://discord.gg/qdR4qNQ
That... Can you take a screenshot of some of the problems you're having, is the path correct, and do you have to press publish every time you change the background settings to update to it, or else.... You can try logging out of your computer's Steam client and then logging back in again to get the Steam client to update successfully....
Hi, so far it turns out that there was an error in the DLC part of the Steamworks plugin I wrote, and I've just fixed it and updated it to 1.1.3, so I'm really sorry for making you very troubled. 🙇♀️
https://rabbitteaparty.itch.io/nekogakuen-steamworksapi/devlog/619850/update-ver...
I've currently updated the plugin to version 1.1.2 and also updated the sample project for microtransactions. As for the issue with pressing Esc triggering the closure of the Steam Overlay, I've heard that this is a problem with Steam itself. I've also tested the microtransaction functionality in a game called 'KUUKIYOMI: Consider It,' and it seems to have the same issue with Esc.
In addition, Steam itself also provides a page that displays the leaderboards. Take the leaderboards of "OPUS: Rocket of Whispers" as an example, he will be on the View Stats of the community Hub in the following image..
* If you're in-game, you can see the leaderboard information by pressing "Shift+Tab" to open the "Achievements" section of Steam Overlay.