Files
fc/dev/project/assets/Scripts/mod/guild/base/guild_const.js
T
2026-05-23 22:10:14 +08:00

35 lines
788 B
JavaScript

// --------------------------------------------------------------------
// @author: shiraho@syg.com(必填, 创建模块的人员)
// @description:
// 公会相关倡廉控制
// <br/>Create: new Date().toISOString()
// --------------------------------------------------------------------
module.exports = {
// 公会职位
PositionType: {
Leader : 1, // 盟主
Assistant : 2, // 副盟主
Member : 3, // 成员
},
// 审核类型
ApplyJoinType: {
Auto : 0, // 自动
Manual : 1, // 手动
Close : 2, // 不允许
},
ListType: {
Total: 1,
Search: 2
},
guildAttrType: {
PVP : 1,
PVE : 2,
}
};