koishi-plugin-tmp-bot
Version:
欧洲卡车模拟2 TMP查询插件,不会部署的可以直接使用此机器人->QQ:3523283907
16 lines (15 loc) • 435 B
JavaScript
const tmpTrafficMap = require("./tmpTrafficMap");
const tmpTrafficText = require("./tmpTrafficText");
/**
* 查询路况
*/
module.exports = async (ctx, cfg, serverName) => {
switch (cfg.tmpTrafficType) {
case 1:
return await tmpTrafficText(ctx, cfg, serverName);
case 2:
return await tmpTrafficMap(ctx, cfg, serverName);
default:
return '指令配置错误';
}
};