设为首页收藏本站同能贴吧 切换语言 繁体中文
开启辅助访问 切换到窄版
扫描二维码关注官方公众号
返回列表
+ 发新帖
查看: 55|回复: 0

[转载发布] Plugin Manager and download tool "BlacksmithPluginManager" - v

[复制链接]
累计送礼:
0 个
累计收礼:
1 个
  • TA的每日心情
    开心
    2026-7-12 04:10
  • 签到天数: 209 天

    连续签到: 2 天

    [LV.7]常住居民III

    7959

    主题

    864

    回帖

    3万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    VIP
    7
    卡币
    29925
    OK点
    16
    推广点
    0
    同能卷
    50
    积分
    38778

    灌水之王

    发表于 4 天前 | 显示全部楼层 |阅读模式
    BlacksmithPluginManager v0.2.1
    [email=Connor%20%22Saelorable%22%20Macleod<Blacksmith@saelora.com>]Connor "Saelorable" Macleod <Blacksmith@saelora.com>[/email]


    Introduction
    Blacksmith Plugin Manager is the first of a suite of plugin development tools i am working on. Originally for personal use, but now being shared.
    The aim of the Plugin Manager is to provide an easy way to manage dependencies without having to worry about plugin load order. As well as allowing users to include plugins from the internet far easier.

    Features

    • Online plugin download: Plugins can be included using a URL to download at runtime. These plugins can also be cached so they are only downloaded once for offline projects. Any plugin can be included in this manner.
    • Dependancy management: Compatible Plugins are not initialised until their dependancies are ready.
    • Access compatible plugins from anywhere: compatible plugins are stored in an object for access from other plugins, allowing for a clean global scope.

    How to Use

    End users:
    Either copy the below script and save it as a text file "BlacksmithPluginManager.js" or else right click on the github link and select "save as" or "download" depending on your browser.
    However you get the file, save it in your projects js/plugins folder.
    Once you have the file, enable it in the plugin manager within RPG Maker.
    You can then include any plugins you have a direct url to in the plugin parameters on the page within. and they will be included within your project, no further work needed.

    Plugin developers: Instead of using a Self-Executing Anonymous Function to isolate your code, compatible plugins should use the following structure:
                    Code:       
    1. new PluginManager.Plugin({
    2.         id: "examplePluginID", //required - this should match the filename
    3.         name: "Example Plugin", //optional - if not provided will be generated based on id
    4.         dependencies: ["exampleDependancyID", {url: http://www.example.com/examplePlugin/xyyyzzq.js, id: exampleOnlineDependancy}], //optional - you can leave out or leave an empty array for no dependancies. This should match the id (as above) of the required plugin, or else be the URL of a plugin available online, with the id matching the ID as above.
    5.         initializer: function (callback) { //required - all your code should go in here
    6.    
    7.             /* your code here */
    8.             calback()
    9.         }
    10. });
    复制代码


    Script

    Github Link: https://github.com/Connor-Macleod/blacksmith-plugin-suite/blob/master/BlacksmithPluginManager.js

                    Code:       
    1. //=============================================================================
    2. // BlacksmithPluginManager.js - v0.2.1
    3. //=============================================================================
    4. /*:
    5. * @plugindesc Allows management of plugin dependencies
    6. * @author Connor "Saelorable" Macleod <Blacksmith[at]saelora.com>
    7. *
    8. * @help This plugin does not provide plugin commands.
    9. * COPYRIGHT: Copyright (c) 2019 Connor "Saelorable" Macleod
    10. *
    11. * Permission is hereby granted, free of charge, to any person obtaining a copy
    12. * of this software and associated documentation files (the "Software"), to deal
    13. * in the Software without restriction, including without limitation the rights
    14. * to use, copy, modify, merge, publish and/or distribute copies of the Software,
    15. * and to permit persons to whom the Software is furnished to do so, subject to
    16. * the following conditions:
    17. *
    18. * That no additional charge is ascribed to the inclusion of the software.
    19. * That attribution is included with any use of the software such that it is
    20. *     visible to end users, either within any bundled software or on any related
    21. *     download pages.
    22. * That no bundled items intentionally promote hate speech or discrimination of
    23. *     protected minorities.
    24. *
    25. * Additionally, permission to sublicense, and/or sell copies of the Software may
    26. * be obtained by contacting the copyright holder. This permission may come with
    27. * additional and/or more specific costs and/or conditions.
    28. *
    29. * The above copyright notice and this permission notice shall be included in all
    30. * copies or substantial portions of the Software.
    31. *
    32. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    33. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    34. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    35. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    36. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    37. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    38. * SOFTWARE.
    39. *
    40. * @param cacheOnlinePlugins
    41. * @desc Should online plugins be cached when ran locally?
    42. * @type boolean
    43. * @default true
    44. *
    45. * @param onlinePlugins
    46. * @type struct<OnlinePlugin>[]
    47. * @desc Recommended when available!
    48. *
    49. * @param extraPluginParameters
    50. * @desc parameters for plugins can also be set in js/params/pluginName.json
    51. * @type struct<ExtraParam>[]
    52. *
    53. * @param allowRemoteConfigJson
    54. * @desc ADVANCED USERS: set to true to load config from js/params/BlacksmithPluginManager.json !POTENTIAL LAG!
    55. * @type boolean
    56. * @default false
    57. *
    58. */
    59. /*~struct~ExtraParam:
    60. * @param PluginName
    61. * @text Plugin Name
    62. * @desc The name of the plugin you want to set a parameter for
    63. * @type string
    64. *
    65. * @param ParamName
    66. * @text Parameter
    67. * @desc The parameter you want to set
    68. * @type string
    69. * @parent PluginName
    70. *
    71. * @param value
    72. * @text Parameter Value
    73. * @desc the value of the parameter you are setting
    74. * @type note
    75. *
    76. */
    77. /*~struct~OnlinePlugin:
    78. * @param name
    79. * @text Plugin Name
    80. * @desc The name of the plugin you want to load. For Blacksmith plugins this should match the id of the plugin. Optional.
    81. * @type string
    82. *
    83. * @param url
    84. * @text Plugin Url
    85. * @desc Must include the protocol. (i.e. the "http:" part)
    86. * @type string
    87. *
    88. */
    89. (function(){
    90.     let pluginList = [];
    91.     let Globals = {};
    92.     let state = {};
    93.     let initialised = [];
    94.     let onlinePlugins = [];
    95.     let parameters = PluginManager.parameters('BlacksmithPluginManager');
    96.     let allowRemoteConfigJson = parameters
    97.         && parameters.allowRemoteConfigJson;
    98.     let parameters2;
    99.     let paramsPath = "js/params/BlacksmithPluginManager.json";
    100.     if (Utils.isNwjs()){
    101.         let fs = require("fs");
    102.         if (fs.existsSync(paramsPath)){
    103.             paramsFile = fs.readFileSync(paramsPath);
    104.             parameters2 = JSON.parse(paramsFile)
    105.         }
    106.     } else if(allowRemoteConfigJson) {
    107.         let request = new XMLHttpRequest();
    108.         request.open('GET', paramsPath, false);  // `false` makes the request synchronous
    109.         request.send(null);
    110.         if (request.status === 200) {
    111.             parameters2 = JSON.parse(request.responseText);
    112.         }
    113.     }
    114.     if (!parameters){
    115.         parameters = {};
    116.     }
    117.     if (parameters2){
    118.         for (let param in parameters2){
    119.             if (parameters2.hasOwnProperty(param)) {
    120.                 parameters[param] = parameters2[param];
    121.             }
    122.         }
    123.     }
    124.     const cacheOnlineDependencies = parameters.cacheOnlinePlugins;
    125.     parameters.pluginParameters = {};
    126.     let extraPluginParameters = parameters.extraPluginParameters && JSON.parse(parameters.extraPluginParameters);
    127.     extraPluginParameters && extraPluginParameters.forEach(function(paramater){
    128.         let paramName = paramater.paramName;
    129.         let paramValue = JSON.parse(paramater.value);
    130.         let pluginName = paramater.PluginName;
    131.         if (!parameters.pluginParameters[pluginName]){
    132.             parameters.pluginParameters[pluginName] = {};
    133.         }
    134.         parameters.pluginParameters[pluginName][paramName] = paramValue;
    135.     });
    136.     const initNext = function(){
    137.         for (let index in pluginList){
    138.             if (pluginList.hasOwnProperty(index)) {
    139.                 let plugin = pluginList[index];
    140.                 if (!plugin._initialised) {
    141.                     if (!plugin.dependencies) {
    142.                         //we initlaise this function if it has no dependencies
    143.                         plugin._initFunction();
    144.                         initialised.push(plugin);
    145.                         return true;
    146.                     } else {
    147.                         let allInitialised = true;
    148.                         for (let dependencyIndex in plugin.dependencies){
    149.                             if (plugin.dependencies.hasOwnProperty(dependencyIndex)) {
    150.                                 let dependency = plugin.dependencies[dependencyIndex];
    151.                                 if (dependency.name){
    152.                                     dependency = dependency.name
    153.                                 }
    154.                                 dependency = pluginList[dependency];
    155.                                 if (!dependency._initialised) {
    156.                                     allInitialised = false
    157.                                 }
    158.                             }
    159.                         }
    160.                         if (allInitialised) {
    161.                             // we initialise this function if all of it's dependencies have been met
    162.                             return plugin._initFunction();
    163.                         }
    164.                     }
    165.                 }
    166.             }
    167.         }
    168.         let loadFailed = pluginList.find(function(plugin){
    169.             return !plugin._initialised;
    170.         });
    171.         if (loadFailed){
    172.             return //an error;
    173.         }
    174.         allInitialised();
    175.     };
    176.     const initlaisePlugins = function(){
    177.         initNext();
    178.     };
    179.     let dirtyHookSceneManagerRun = SceneManager.run;
    180.     SceneManager.run = function(...args){
    181.         //all plugins have loaded, but we still need to initialise ours!
    182.         dirtyHookSceneManagerRun = dirtyHookSceneManagerRun.bind(SceneManager, ...args);
    183.         initlaisePlugins();
    184.     };
    185.     const allInitialised = function(){
    186.         dirtyHookSceneManagerRun();
    187.     };
    188.     const getPluginNameFromUrl = function(url){
    189.         return /[^/]*$/.exec(url)[0].replace(/.js|.LPMP/, "");
    190.     };
    191.     const streamDependency = function(url){
    192.         let script = document.createElement('script');
    193.         script.type = 'text/javascript';
    194.         script.src = url;
    195.         script.async = false;
    196.         script._url = url;
    197.         document.body.appendChild(script);
    198.     };
    199.     const cacheFtpPlugin = function(url, name){
    200.         const net = require('net');
    201.         let controlSocket;
    202.         let connectionOptions = {
    203.             port: url.port || 21,
    204.             host: url.hostname
    205.         };
    206.         let filename;
    207.         let getFile = function(){
    208.             let path = url.pathname;
    209.             const match = /^(.*)[\\/]([^\\/]+)$/.exec(path);
    210.             filename = match[2];
    211.             let dir = match[1];
    212.             controlSocket.write("CWD "+dir+ "\r\n",function(){
    213.                 controlSocket.write("PASV"+ "\r\n", function(){
    214.                 });
    215.             })
    216.         };
    217.         controlSocket = net.createConnection(connectionOptions, function(){
    218.             if(url.username && url.password){
    219.                 controlSocket.write("USER "+url.username+ "\r\n", function(){
    220.                     controlSocket.write("PASS "+url.password+ "\r\n", getFile)
    221.                 })
    222.             } else if (url.password){
    223.                 controlSocket.write("USER anonymous"+ "\r\n", function(){
    224.                     controlSocket.write("PASS "+url.password+ "\r\n", getFile)
    225.                 })
    226.             } else {
    227.                 controlSocket.write("USER anonymous"+ "\r\n", function(){
    228.                     controlSocket.write("PASS guest"+ "\r\n", getFile)
    229.                 })
    230.             }
    231.         });
    232.         controlSocket.on("data", function(dataBuffer){
    233.             const data = dataBuffer.toString('utf8');
    234.             let dataParse = /\((\d{1,3}),(\d{1,3}),(\d{1,3}),(\d{1,3}),(\d{1,3}),(\d{1,3})\)/.exec(data);
    235.             if (dataParse){
    236.                 let ip = dataParse[1]+"."+dataParse[2]+"."+dataParse[3]+"."+dataParse[4];
    237.                 let port = parseInt(dataParse[5]) * 256+parseInt(dataParse[6]);
    238.                 let dataSocket = net.createConnection({port: port, host: ip}, function(){
    239.                     const fs = require('fs');
    240.                     const file = fs.createWriteStream("js/plugins/cachedWebPlugins/"+name+".js");
    241.                     dataSocket.pipe(file);
    242.                     controlSocket.write("RETR "+filename+ "\r\n");
    243.                 });
    244.             } else if(data.match(/(\r\n|^)226/)){
    245.                 controlSocket.end("QUIT"+ "\r\n")
    246.                 dataSocket.end();
    247.             }
    248.         });
    249.     };
    250.     const cachePlugin = function(plugin){
    251.         const { URL } = require('url');
    252.         plugin.url = new URL(plugin.url);
    253.         if (plugin.url.protocol ==='ftp:'){
    254.             cacheFtpPlugin(plugin.url, plugin.name);
    255.         } else {
    256.             const fs = require('fs');
    257.             const http = require('http');
    258.             const file = fs.createWriteStream("js/plugins/cachedWebPlugins/"+plugin.name+".js");
    259.             http.get(plugin.url, function(response) {
    260.                 response.pipe(file);
    261.             });
    262.         }
    263.         //since we need access to the script synchronously and the above functions must run
    264.         // asynchronously, we also have to stream an online copy.
    265.         streamDependency(plugin.url);
    266.     };
    267.     const loadFromCache = function(pluginName){
    268.         const path = "js/plugins/cachedWebPlugins/"+ pluginName + ".js";
    269.         const fs = require('fs');
    270.         if (!fs.existsSync(path)) {
    271.             return false;
    272.         }
    273.         let script = document.createElement('script');
    274.         script.type = 'text/javascript';
    275.         script.src = path;
    276.         script.async = false;
    277.         script._url = path;
    278.         document.body.appendChild(script);
    279.     };
    280.     const loadOnlineDependency = function(dependency){
    281.         if (cacheOnlineDependencies && Utils.isNwjs()){
    282.             if (loadFromCache(dependency.name)){
    283.                 return;
    284.             } else {
    285.                 cachePlugin(dependency);
    286.             }
    287.         } else {
    288.             streamDependency(dependency.url)
    289.         }
    290.     };
    291.     const loadOnlinePlugins = function(){
    292.         onlinePlugins = JSON.parse(parameters.onlinePlugins);
    293.         onlinePlugins.forEach(function(plugin){
    294.             plugin = JSON.parse(plugin);
    295.             if (!plugin.name){
    296.                 plugin.name = getPluginNameFromUrl(plugin.url);
    297.             }
    298.             loadOnlineDependency(plugin);
    299.         });
    300.     };
    301.     loadOnlinePlugins();
    302.     let fastParameters = {};
    303.     const preloadParamaters = function(pluginName){
    304.         let pluginParameters = PluginManager._parameters[pluginName.toLowerCase()];
    305.         let pluginParameters2;
    306.         let paramsPath = "js/params/"+pluginName+".json";
    307.         let paramsLoadedCallback = function(){
    308.             if (!pluginParameters) {
    309.                 pluginParameters = {};
    310.             }
    311.             if (pluginParameters2){
    312.                 for (let param in pluginParameters2){
    313.                     if (pluginParameters2.hasOwnProperty(param)) {
    314.                         pluginParameters[param] = pluginParameters2[param];
    315.                     }
    316.                 }
    317.             }
    318.             if (parameters.pluginParameters[pluginName]){
    319.                 for (let param in parameters.pluginParameters[pluginName]){
    320.                     if (parameters.pluginParameters[pluginName].hasOwnProperty(param)) {
    321.                         pluginParameters[param] = parameters.pluginParameters[pluginName][param];
    322.                     }
    323.                 }
    324.             }
    325.             fastParameters[pluginName] = pluginParameters;
    326.         };
    327.         if (Utils.isNwjs()){
    328.             let fs = require("fs");
    329.             if (fs.existsSync(paramsPath)){
    330.                 fs.readFile(paramsPath, function(err, data){
    331.                     pluginParameters2 = JSON.parse(data);
    332.                     paramsLoadedCallback();
    333.                 });
    334.             }
    335.         } else {
    336.             let request = new XMLHttpRequest();
    337.             request.open('GET', paramsPath);
    338.             request.send(null);
    339.             request.addEventListener("load", function(){
    340.                 if (request.status === 200) {
    341.                     pluginParameters2 = JSON.parse(this.responseText);
    342.                     paramsLoadedCallback();
    343.                 }
    344.             });
    345.         }
    346.     };
    347.     PluginManager.parameters = function(pluginName){
    348.         if (fastParameters[pluginName]){
    349.             return fastParameters[pluginName];
    350.         }
    351.         let pluginParameters = PluginManager._parameters[pluginName.toLowerCase()];
    352.         let pluginParameters2;
    353.         let paramsPath = "js/params/"+pluginName+".json";
    354.         if (Utils.isNwjs()){
    355.             let fs = require("fs");
    356.             if (fs.existsSync(paramsPath)){
    357.                 paramsFile = fs.readFileSync(paramsPath);
    358.                 pluginParameters2 = JSON.parse(paramsFile)
    359.             }
    360.         } else {
    361.             let request = new XMLHttpRequest();
    362.             request.open('GET', paramsPath, false);  // `false` makes the request synchronous
    363.             request.send(null);
    364.             if (request.status === 200) {
    365.                 pluginParameters2 = JSON.parse(request.responseText);
    366.             }
    367.         }
    368.         if (!pluginParameters) {
    369.             pluginParameters = {};
    370.         }
    371.         if (pluginParameters2){
    372.             for (let param in pluginParameters2){
    373.                 if (pluginParameters2.hasOwnProperty(param)) {
    374.                     pluginParameters[param] = pluginParameters2[param];
    375.                 }
    376.             }
    377.         }
    378.         fastParameters[pluginName] = pluginParameters;
    379.         return pluginParameters;
    380.     };
    381.     class Plugin {
    382.         constructor(pluginConfig){
    383.             // id and dependencies are required, so we don't check for them
    384.             // TODO: error handling for incorrectly created Plugins to make it more clear when an author has messed up
    385.             if (!pluginConfig.globals){
    386.                 pluginConfig.globals = [];
    387.             }
    388.             if (!pluginConfig.humanReadableName){
    389.                 pluginConfig.humanReadableName = pluginConfig.id.replace(/([A-Z])/g, " $1").replace(/^ /, "");
    390.             }
    391.             if (!pluginConfig.dependencies){
    392.                 pluginConfig.dependencies = [];
    393.             }
    394.             this._id = pluginConfig.id;
    395.             this._humanReadableName = pluginConfig.humanReadableName;
    396.             this._globals = pluginConfig.globals;
    397.             this._dependencies = pluginConfig.dependencies;
    398.             this.init = pluginConfig.initializer;
    399.             Globals[this._id] = this._globals;
    400.             if (this.dependencies){
    401.                 this.dependencies.forEach(function(dependency){
    402.                     if (typeof dependency == "string"){
    403.                         if (dependency.match(/^https?:\/\//)){
    404.                             dependency = {
    405.                                 url: dependency
    406.                             };
    407.                         } else {
    408.                             dependency = {
    409.                                 name: dependency
    410.                             };
    411.                         }
    412.                     }
    413.                     if (dependency.url){
    414.                         if (!dependency.name){
    415.                             dependency.name = getPluginNameFromUrl(dependency.url)
    416.                         }
    417.                         if (!onlinePlugins.contains(dependency.name)){
    418.                             loadOnlineDependency(dependency);
    419.                             onlinePlugins.push(dependency.name);
    420.                         }
    421.                     } else {
    422.                         if (!PluginManager._scripts.contains(dependency.name)) { // we load dependencies even if they're turned off
    423.                             PluginManager.loadScript(dependency.name + '.js');
    424.                             PluginManager._scripts.push(dependency.name);
    425.                         }
    426.                     }
    427.                 });
    428.             }
    429.             preloadParamaters(this._id);
    430.             pluginList[this._id] = this;
    431.         }
    432.         set init(initFunction){
    433.             if (!this._initFunction){
    434.                 let thisplugin = this;
    435.                 this._initFunction = function(){
    436.                     initFunction(function(error, message){
    437.                         if (error){
    438.                             //terminate loading with helpful message
    439.                         } else {
    440.                             thisplugin._initialised=true;
    441.                             initNext();
    442.                         }
    443.                     });
    444.                 }
    445.             } else {
    446.                 //throw error about init function already registered
    447.             }
    448.         }
    449.         get dependencies(){
    450.             if (
    451.                 !this._dependencies ||
    452.                 this._dependencies instanceof Plugin ||
    453.                 this._dependencies.length===0
    454.             ){
    455.                 return false;
    456.             }
    457.             if (this._dependencies instanceof Plugin){
    458.                 return [this._dependencies];
    459.             }
    460.             if (this._dependencies.length > 0){
    461.                 return this._dependencies
    462.             }
    463.         }
    464.         global (name, value){
    465.             if (value!==undefined){
    466.                 Globals[this._id][name] = value;
    467.             }
    468.             return Globals[this._id][name];
    469.         }
    470.     }
    471.     PluginManager.Plugin = Plugin;
    472.     PluginManager.plugins = pluginList
    473. })();
    复制代码


    FAQ
    Q: I'm working on a plugin that depends on another plugin and it's not a compatible plugin, how do i include it?
    A: Just include the dependancy in the same way you would a compatible plugin. All non-compatible plugins are loaded before blacksmith plugins, so you can guarantee the dependancy will be loaded first.

    Q: I'm insane and want to include a plugin available over ftp.
    A: Why? what even... ?!? Luckily i'm insane too and included a rudimentary FTP client in the code, so there is partial support for including ftp sources. You will need to enable caching online plugins, and run the game once in test mode for it to work though.

    Q: What's this i hear about JSON files?
    A: You can include configuration for any plugins in a json file named after the plugin. I.E. "js/plugins/examplePlugin.json"

    Licencing
    Copyright (c) 2019 Connor "Saelorable" Macleod

    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish and/or distribute copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

    • That no additional charge is ascribed to the inclusion of the software.
    • That attribution is included with any use of the software such that it is visible to end users, either within any bundled software or on any related download pages.
    • That no bundled items intentionally promote hate speech or discrimination of protected minorities.
    Additionally, permission to sublicense, and/or sell copies of the Software may be obtained by contacting the copyright holder. This permission may come with additional and/or more specific costs and/or conditions.

    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

    Author's Notes
    All feedback is greatly appreciated!



    本贴来自国际rpgmaker官方论坛作者:Saelorable处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:https://forums.rpgmakerweb.com/threads/plugin-manager-and-download-tool-blacksmithpluginmanager-v0-2-1.105933/
    天天去同能,天天有童年!
    回复 送礼论坛版权

    使用道具 举报

    文明发言,和谐互动
    文明发言,和谐互动
    高级模式
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    简体中文
    繁體中文
    English(英语)
    日本語(日语)
    Deutsch(德语)
    Русский язык(俄语)
    بالعربية(阿拉伯语)
    Türkçe(土耳其语)
    Português(葡萄牙语)
    ภาษาไทย(泰国语)
    한어(朝鲜语/韩语)
    Français(法语)
    关闭

    幸运抽奖

    社区每日抽奖来袭,快来试试你是欧皇还是非酋~

    立即查看

    聊天机器人
    Loading...

    QQ|Archiver|手机版|小黑屋|同能RPG制作大师 ( 沪ICP备12027754号-3 )

    GMT+8, 2026-8-1 06:37 , Processed in 0.107219 second(s), 55 queries .

    Powered by Discuz! X3.4

    Copyright © 2001-2020, Tencent Cloud.

    快速回复 返回顶部 返回列表