3DMGAME 3DM首页 新闻中心 前瞻 | 评测 游戏库 热门 | 最新 攻略中心 攻略 | 秘籍 下载中心 游戏 | 汉化 购买正版 侠客前传 | 刺客信条 论坛

注册 登录

QQ登录

只需一步,快速开始

查看: 39533|回复: 13
打印 上一主题 下一主题

[分享] ATC MOD教程,随心所欲自定义骑砍2世界的招募机制

[复制链接]

2

主题

72

帖子

199

积分

中级玩家

Rank: 3Rank: 3

贡献度
17
金元
1305
积分
199
精华
0
注册时间
2012-5-11
跳转到指定楼层
主题
发表于 2020-5-25 11:46 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 TAIL23 于 2020-5-25 20:18 编辑

1.4.0版的ATC mod,原mod的n网地址  https://www.nexusmods.com/mountandblade2bannerlord/mods/286主要作用有两个,一是可以添加自定义兵种,二是可以根据派系文化来自定义各阵营的招募机制。本帖先主要说明第二个功能。
具体可以实现的功能为:可以将不同地区产生的新兵替换成其他兵种;而且对文化差异地区,也就是一个派系占领的外国领土上产生的兵种可以单独自定义。举个例子,你会添加自定义兵种的话能专门在帝国占领的不同文化的外国领土上产生各自的“殖民地专用兵种”:比如在巴丹尼亚殖民地产生“帝国巴丹尼亚辅助弓手”,在斯特吉亚殖民地产生“帝国斯特吉亚辅助步兵”。
1.4.0版的ATC mod虽然功能更强大,但上手也较为麻烦,在此推荐不会英语的兄弟们使用功能略差但好上手的1.3.7版ATC mod。教程见https://bbs.mountblade.com.cn/thread-2063471-1-1.html

mod使用方法:将AdonnaysTroopChanger文件夹复制到游戏文件Mount & Blade II Bannerlord\Modules内,在启动器内勾选

教程:
以下英文部分是作者自己的注释,我加一些中文说明来进一步解释一下
<ATCConfig>
        This is the main tag enclosing the whole configuration
        
        <MapFaction></MapFaction>     就是说<MapFaction>开始到</MapFaction>结束,是一个派系的招募自定义内容。
        Denotes a configuration section for a given faction. There must be only one <MapFaction></MapFaction>
        segment for each faction!
        Attributes:
        id                                - faction id taken from spkingdoms.xml (Sandbox/ModuleData) 派系名来自spkingdoms.xml (Sandbox/ModuleData)。西帝国是empire_w,南帝国是empire_s,北帝国是empire。
        Special Tokens:
        player_faction         - Used to configure the player faction if the player is leading his own kingdom 玩家自立的派系。但与作者注释不同的是,player_faction实际上也是玩家加入的派系,为了发现这一点逻辑问题真的耗了我不少时间,我也算是骑砍发烧友了吧。
        player_clan         - Used to configure the recruits for settlements owned by the player's clan. Not a faction 玩家拥有的村镇
                                          per se but a nice feature to allow the player to command his own troops early on without
                                          using the "playeronly" flag (see below)
        <Culture></Culture>   从<Culture>到</Culture>为止,是 一个阵营在该文化地区下的招募自定义内容。
        Denotes a subsection of <MapFaction> and is used to configure settlements that have a different culture
        than the owner faction. This enables you to define mixed culture troop trees for captured settlements.
        Attributes:
        id                                 - culture id taken from spcultures.xml (SandboxCore/ModuleData) 文化种类来自 spcultures.xml (SandboxCore/ModuleData) 。帝国统统是empire,北南西帝国无法区分。
        Special Tokens:
        default                 - used to configure the faction's default/fallback configuration. 默认兵种,也就是一个阵营本文化地区的兵种
        <basicTroops></basicTroops>     从<basicTroops>到</basicTroops>为止,设定基础兵的招募机制。
        Denotes a subsection of <Culture> and is used to configure a set of basic recruits. Has no own attributes.
        <eliteTroops></eliteTroops>   从 <eliteTroops>到</eliteTroops>为止,设定贵族兵的招募机制。
        Denotes a subsection of <Culture> and is used to configure a set of elite recruits. Has no own attributes.
        <volunteer />            就是说 volunteer id="xxx"  xxx是你想让新兵变为的兵种
        Configures the actual recruit for the given faction and culture, separated by <basicTroops> and <eliteTroops>.
        Attributes:
        id                                - id of the recruit spnpccharacters.xml for standard recruits or troop mod files for custom
                          recruits. This is where you configure the actual troops to be spawned!
        percent                        - chance to spawn the troop. The percentages should add up to 100% or two things may happen: 替换比例,相加要小于等于100.不能出现小数!!不能出现小数!!不能出现小数!!
                          a) if above 100% the percentages will be automatically redistributed
                                          b) if below 100% the remaining percent will be spawning the culture's base recruit
                                             (NOT the one's configured under <Culture id="default">!)
        playeronly      - Used to designate a troop to be recruitable only by the player. Use with replacewith!  是否为玩家专享
        clanonly        - Used to designate a troop to be recruitable only by the player's clan. Use with replacewith! 是否为玩家领地专享
        replacewith     - The troop ID that should be given to AI Lords if they attempt to recruit a recruit marked as   与playeronly和clanonly配套用的,当一个兵种为玩家或玩家领地专享的话,可以用replacewith给ai另分配兵种
                          playeronly. Only usabele in conjunction with playeronly or clanonly! If not provided ATC will
                                          spawn the culture's base recruits instead (NOT the one's configured under <Culture id="default">!)
        AIonly                        - sadly still has no function yet as I have trouble with the recruiting UI   没实装的功能 无视
修改教程:目标文件是AdonnaysTroopChanger\Config内的ATC.modconfig文件(笔记本格式打开).如果你下载的是n网版本,那文件名则是BETA140_SAMPLE.modconfig,需要重命名为ATC.modconfig
举个例子
-->
<!-- STANDARD CONFIGURATION FOR ALL MAJOR FACTIONS WITH SOME EXAMPLES FOR SUBCULTURES  -->
<ATCConfig> 开始设定各阵营的招募机制
<MapFaction id="player_faction">  玩家自立或加入的阵营  以下简称“玩家派系”
                <Culture id="default">玩家自立或加入的阵营的默认兵种招募设置
                        <basicTroops> 基础兵的设置
                                <volunteer id="sturgian_soldier" percent="45" />  新兵以45%的概率变为sturgian_soldier(斯特吉亚士兵)
                                <volunteer id="varyag" percent="10" playeronly="true" replacewith="varyag" /> 新兵以10%的概率变为varyag,玩家专享此效果,但给ai的代替兵种依然是varyag——相当于设置playeronly="false“ 也就是默认的不写playeronly
                                <volunteer id="sturgian_hunter" percent="23" playeronly="true" replacewith="sturgian_hunter" />
                                <volunteer id="sturgian_brigand" percent="22" playeronly="true" replacewith="sturgian_brigand" /> 可以发现,这四条是将玩家派系的基础兵按特定比例变为了四种斯特吉亚的三阶兵
                        </basicTroops>玩家加入阵营的默认基础兵的设置到此为止,注意概率相加要小于等于100.不能出现小数!!不能出现小数!!不能出现小数!!概率不足100的话,将以剩下的概率生成地区本文化的新兵。
                        <eliteTroops>默认精英兵的设置
                                <volunteer id="sturgian_soldier" percent="45" playeronly="true" replacewith="sturgian_soldier" /> 类似
                                <volunteer id="varyag" percent="10" playeronly="true" replacewith="varyag" />
                                <volunteer id="sturgian_hunter" percent="23" playeronly="true" replacewith="sturgian_hunter" />
                                <volunteer id="sturgian_brigand" percent="22" playeronly="true" replacewith="sturgian_brigand" />
                        </eliteTroops>默认精英兵的设置到此为止
                </Culture>玩家自立或加入的阵营的默认兵种招募设置完毕
                <Culture id="vlandia">  玩家自立或加入的阵营在瓦兰迪亚文化地区的招募设置
                        <basicTroops>基础兵
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />玩家自立或加入的阵营在瓦兰迪亚文化地区上,产生的基础兵100%替换为斯特吉亚新兵 玩家与ai共享此效果
                        </basicTroops>
                        <eliteTroops>贵族兵
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />贵族兵100%替换为斯特吉亚新兵 玩家与ai共享此效果
                        </eliteTroops>
                </Culture>玩家自立或加入的阵营在瓦兰迪亚文化地区的招募设置完毕。可见,在玩家自立或加入的阵营占领的瓦兰迪亚文化地区里,产生的新兵统统是斯特吉亚新兵。
                <Culture id="battania">  <!-- Northern Empire for captured Battanian settlements -->从这里开始是玩家自立或加入的阵营在巴丹尼亚化地区的招募设置
                        <basicTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />斯特吉亚新兵
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />斯特吉亚新兵
                        </eliteTroops>
                </Culture>
        </MapFaction>玩家自立或加入的阵营的招募机制设置完成。可以发现在这一大部分里只设置了“默认”、““巴丹尼亚””、“瓦兰迪亚”三种文化类型,那么玩家派系在“斯特吉亚”、“库赛特”等未设置的文化地区上会产生什么样的新兵呢?——答案是跟“默认”中的设置相同,以不同的概率产生三阶兵种。
<MapFaction id="sturgia">   <!-- Standard Sturgia configuration -->    这里开始是斯特吉亚阵营的招募设置。 那么,假如玩家加入了斯特吉亚,却只编写<MapFaction id="sturgia">而不编写<MapFaction id="player_faction">部分会怎样呢?答案就是:玩家的招募会根据<MapFaction id="sturgia">这一部分的设定而改变,却无法对斯特吉亚ai领主们产生影响!!!花了数个小时才研究出来这个问题!!当然也可能是因为我使用的是1.41版的游戏才导致这样的结果……
                <Culture id="default"> 斯特吉亚的默认设置,也是斯特吉亚本文化地区(仍受控的开局领土)的兵种设置
                        <basicTroops> 基础兵
                                <volunteer id="sturgian_soldier" percent="45" playeronly="true" replacewith="sturgian_soldier" />
                                <volunteer id="varyag" percent="10" playeronly="true" replacewith="varyag" />
                                <volunteer id="sturgian_hunter" percent="23" playeronly="true" replacewith="sturgian_hunter" />
                                <volunteer id="sturgian_brigand" percent="22" playeronly="true" replacewith="sturgian_brigand" /> 各种三阶兵,ai与玩家共享此招募替换效果
                        </basicTroops>
                        <eliteTroops> 贵族兵
                                <volunteer id="sturgian_soldier" percent="45" playeronly="true" replacewith="sturgian_soldier" />
                                <volunteer id="varyag" percent="10" playeronly="true" replacewith="varyag" />
                                <volunteer id="sturgian_hunter" percent="23" playeronly="true" replacewith="sturgian_hunter" />
                                <volunteer id="sturgian_brigand" percent="22" playeronly="true" replacewith="sturgian_brigand" />  各种三阶兵,同上
                        </eliteTroops>
                </Culture>   斯特吉亚的默认设置结束
                <Culture id="vlandia">  <!-- Northern Empire for captured Vlandian settlements -->    斯特吉亚占领的瓦兰迪亚领土的招募效果
                        <basicTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" /> 产生的新兵被替换为斯特吉亚新兵
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />产生的贵族兵也被替换为斯特吉亚新兵
                        </eliteTroops>
                </Culture>斯特吉亚占领的瓦兰迪亚领土的招募效果设置结束
        </MapFaction>斯特吉亚阵营的招募设置完成。 效果是玩家和ai领主在斯特吉亚本土、斯特吉亚占领的库赛特地区、斯特吉亚占领的帝国地区等地都能直接招募三阶兵,唯独在斯特吉亚占领的瓦兰迪亚土地上只能招到斯特吉亚新兵(当然时间长一些的话,这些新兵会自己慢慢升级)
</ATCConfig> 各阵营的招募机制设定完成。   由于只设定了玩家派系和斯特吉亚阵营,剩下的瓦兰迪亚、库赛特、帝国、阿塞来、巴丹尼亚都会按游戏本来的内容产生新兵。如果玩家加入了其中的某个阵营,那这个阵营会按<MapFaction id="player_faction">下面的设定给ai领主分配兵种。那么问题来了,玩家的招募会优先受<MapFaction id="player_faction">影响还是优先受<MapFaction id="阵营名">影响呢?很遗憾,这个目前还没有做过实验。(ps 由于目前1.4.0版的atc mod不生成兵种招募记录,实验真的很消耗时间)

各位可以此为参考,自己改出自己想要的招募效果。

我已经改好的mod分享,可能会陆续推出几个功能版本,各位根据说明自行选择。
功能:
在一个派系控制的所有领土上,玩家与ai领主可以直接招募到这个派系的三阶士兵——告别低级军队大战,战场将是正规军的天下;一个派系的军队将更为“整齐”,而不再是万国牌。效果如图所示,很是规整的三阶步兵。
举例:在瓦兰迪亚本土,玩家与ai领主能直接招募瓦兰迪亚三阶兵;而在瓦兰迪亚占领的巴丹尼亚土地上,产生的可招募兵种依然是瓦兰迪亚三阶兵
三阶兵替换新兵的概率详见AdonnaysTroopChanger\Config内的ATC.modconfig文件。概率的基本算法是贵族兵10%,基础兵90%;基础兵内的概率根据兵种树执行,以新兵作为起点开始前进,每个分支左右平均分配概率,直至三阶兵。为了平衡起见,替换为骑兵的概率会少一些,所以部分派系的招募池里依然会有一部分新兵。巴丹尼亚也略有不同,可直接升级为骑兵的兵种会匀出一定的概率给其他三阶兵。


使用方法:
1.解压后将AdonnaysTroopChanger文件夹复制到Mount & Blade II Bannerlord\Modules内。
2.在AdonnaysTroopChanger\Config内选择自己加入的阵营的名字的压缩包,选择解压到当前文件夹。AdonnaysTroopChanger\Config里原有的ATC.modconfig是不同类型的文件,千万别删。
不用 不用 不用开新档!!别忘了在启动器里勾选本mod!!!
瓦兰迪亚版的功能亲测已经实现,但毕竟有8个国家,6个文化派系……如果发现有招募异常的情况发生,通知我即可。

下一步打算:可能会添加自制的殖民地兵种,对罗马来说就是辅助军团啦。进一步体现文化对招募的影响。有好的脑洞请务必回复。








本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x

评分

2

查看全部评分

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏3
回复

使用道具 举报

205

主题

1万

帖子

11万

积分

优秀版主

クロエ~~~澄空の女帝、嘉神川の女王

Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19

贡献度
1482
金元
1079715
积分
113920
精华
2
注册时间
2009-7-11

原神4.0UGC徽章旧版萌之委员会''永久''滑稽[永久版]端午节专属勋章3DM小黄鸡3DMer(永久)3DM MOD站(白银)3DMAPP专属

舒服的沙发
发表于 2020-5-25 14:14 | 只看该作者
楼主有空发几个成品参考下吗这mod对于想自定义自己兵种树的玩家很好玩
回复 支持 反对

使用道具 举报

2

主题

72

帖子

199

积分

中级玩家

Rank: 3Rank: 3

贡献度
17
金元
1305
积分
199
精华
0
注册时间
2012-5-11
硬硬的板凳
 楼主| 发表于 2020-5-25 14:37 | 只看该作者
陌上忆纱 发表于 2020-5-25 14:14
楼主有空发几个成品参考下吗这mod对于想自定义自己兵种树的玩家很好玩 ...

今天晚上的吧
目前我改出来了两个比较简单的功能版本,一个是实现一个派系的领地全部产生该派系文化的三阶兵。另一个是实现一个派系在开局领土直接产生三阶兵,在后续占领土地产生一阶新兵。
另外以后或许还会给帝国做一个添加“辅助军团”的mod,只在异文化占领区产生各自的殖民地兵种。但在各个不同文化的占领区里到底应该产生什么装备的殖民地兵种,我目前还没有什么好的脑洞
回复 支持 反对

使用道具 举报

205

主题

1万

帖子

11万

积分

优秀版主

クロエ~~~澄空の女帝、嘉神川の女王

Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19

贡献度
1482
金元
1079715
积分
113920
精华
2
注册时间
2009-7-11

原神4.0UGC徽章旧版萌之委员会''永久''滑稽[永久版]端午节专属勋章3DM小黄鸡3DMer(永久)3DM MOD站(白银)3DMAPP专属

冰凉的地板
发表于 2020-5-25 15:01 | 只看该作者
TAIL23 发表于 2020-5-25 14:37
今天晚上的吧
目前我改出来了两个比较简单的功能版本,一个是实现一个派系的领地全部产生该派系文化的三 ...

好的,感谢楼主
回复 支持 反对

使用道具 举报

1

主题

437

帖子

448

积分

高级玩家

Rank: 4

贡献度
0
金元
4477
积分
448
精华
0
注册时间
2011-4-9
5#
发表于 2020-5-25 16:41 | 只看该作者
这个必须支持!~
回复 支持 反对

使用道具 举报

2

主题

72

帖子

199

积分

中级玩家

Rank: 3Rank: 3

贡献度
17
金元
1305
积分
199
精华
0
注册时间
2012-5-11
6#
 楼主| 发表于 2020-5-25 21:00 | 只看该作者
我自用的第二个功能版本,针对斯特吉亚而写的。加入其他阵营的话请把阵营的配置文件复制到  <MapFaction id="player_faction">

功能:
1.在一个派系的开局领土范围内,玩家与ai领主可以直接招募到三阶士兵;
2.在一个派系占领的异文化地区里,则只能产生该派系的——而不是被占领区文化的——新兵,贵族兵都不会有。这意味着派系的扩张会使军队质量逐渐降低,也意味着帝国文化疆域广阔的特点将十分具有优势。
举例:在瓦兰迪亚本土,玩家与ai领主能直接招募瓦兰迪亚三阶兵;而在瓦兰迪亚占领的巴丹尼亚土地上,产生的可招募兵种只会是瓦兰迪亚新兵。
<?xml version="1.0" encoding="utf-8"?>
<!-- *****************************************************************************************************
-->

<!-- STANDARD CONFIGURATION FOR ALL MAJOR FACTIONS WITH SOME EXAMPLES FOR SUBCULTURES  -->
<ATCConfig>
                <MapFaction id="player_faction">
                <Culture id="default">
                        <basicTroops>
                                <volunteer id="sturgian_soldier" percent="45" playeronly="true" replacewith="sturgian_soldier" />
                                <volunteer id="varyag" percent="10" playeronly="true" replacewith="varyag" />
                                <volunteer id="sturgian_hunter" percent="23" playeronly="true" replacewith="sturgian_hunter" />
                                <volunteer id="sturgian_brigand" percent="22" playeronly="true" replacewith="sturgian_brigand" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="sturgian_soldier" percent="45" playeronly="true" replacewith="sturgian_soldier" />
                                <volunteer id="varyag" percent="10" playeronly="true" replacewith="varyag" />
                                <volunteer id="sturgian_hunter" percent="23" playeronly="true" replacewith="sturgian_hunter" />
                                <volunteer id="sturgian_brigand" percent="22" playeronly="true" replacewith="sturgian_brigand" />
                        </eliteTroops>
                </Culture>
                <Culture id="vlandia">  <!-- Northern Empire for captured Vlandian settlements -->
                        <basicTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="battania">  <!-- Northern Empire for captured Battanian settlements -->
                        <basicTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="khuzait">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="empire">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="aserai">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </eliteTroops>
                </Culture>
        </MapFaction>
        <MapFaction id="empire"> <!-- Northern Empire configuration with subcultures -->
                <Culture id="default">
                        <basicTroops>
                                <volunteer id="imperial_equite" percent="10" playeronly="true" replacewith="imperial_equite" />
                                <volunteer id="imperial_trained_infantryman" percent="45" playeronly="true" replacewith="imperial_trained_infantryman" />
                                <volunteer id="imperial_trained_archer" percent="45" playeronly="true" replacewith="imperial_trained_archer" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_equite" percent="10" playeronly="true" replacewith="imperial_equite" />
                                <volunteer id="imperial_trained_infantryman" percent="45" playeronly="true" replacewith="imperial_trained_infantryman" />
                                <volunteer id="imperial_trained_archer" percent="45" playeronly="true" replacewith="imperial_trained_archer" />
                        </eliteTroops>
                </Culture>
                <Culture id="vlandia">  <!-- Northern Empire for captured Vlandian settlements -->
                        <basicTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="battania">  <!-- Northern Empire for captured Battanian settlements -->
                        <basicTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="khuzait">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="sturgia">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="aserai">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </eliteTroops>
                </Culture>
        </MapFaction>
        <MapFaction id="empire_w"> <!-- Standard Western Empire configuration -->
                <Culture id="default">
                        <basicTroops>
                                <volunteer id="imperial_equite" percent="10" playeronly="true" replacewith="imperial_equite" />
                                <volunteer id="imperial_trained_infantryman" percent="45" playeronly="true" replacewith="imperial_trained_infantryman" />
                                <volunteer id="imperial_trained_archer" percent="45" playeronly="true" replacewith="imperial_trained_archer" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_equite" percent="10" playeronly="true" replacewith="imperial_equite" />
                                <volunteer id="imperial_trained_infantryman" percent="45" playeronly="true" replacewith="imperial_trained_infantryman" />
                                <volunteer id="imperial_trained_archer" percent="45" playeronly="true" replacewith="imperial_trained_archer" />
                        </eliteTroops>
                </Culture>
                <Culture id="vlandia">  <!-- Northern Empire for captured Vlandian settlements -->
                        <basicTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="battania">  <!-- Northern Empire for captured Battanian settlements -->
                        <basicTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="khuzait">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="sturgia">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="aserai">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </eliteTroops>
                </Culture>
        </MapFaction>
        <MapFaction id="empire_s"> <!-- Standard Southern Empire configuration -->
                <Culture id="default">
                        <basicTroops>
                                <volunteer id="imperial_equite" percent="10" playeronly="true" replacewith="imperial_equite" />
                                <volunteer id="imperial_trained_infantryman" percent="45" playeronly="true" replacewith="imperial_trained_infantryman" />
                                <volunteer id="imperial_trained_archer" percent="45" playeronly="true" replacewith="imperial_trained_archer" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_equite" percent="10" playeronly="true" replacewith="imperial_equite" />
                                <volunteer id="imperial_trained_infantryman" percent="45" playeronly="true" replacewith="imperial_trained_infantryman" />
                                <volunteer id="imperial_trained_archer" percent="45" playeronly="true" replacewith="imperial_trained_archer" />
                        </eliteTroops>
                </Culture>
                <Culture id="vlandia">  <!-- Northern Empire for captured Vlandian settlements -->
                        <basicTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="battania">  <!-- Northern Empire for captured Battanian settlements -->
                        <basicTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="khuzait">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="sturgia">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="aserai">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="imperial_recruit" playeronly="true" replacewith="imperial_recruit" />
                        </eliteTroops>
                </Culture>
        </MapFaction>        
        <MapFaction id="sturgia">   <!-- Standard Sturgia configuration -->
                <Culture id="default">
                        <basicTroops>
                                <volunteer id="sturgian_soldier" percent="45" playeronly="true" replacewith="sturgian_soldier" />
                                <volunteer id="varyag" percent="10" playeronly="true" replacewith="varyag" />
                                <volunteer id="sturgian_hunter" percent="23" playeronly="true" replacewith="sturgian_hunter" />
                                <volunteer id="sturgian_brigand" percent="22" playeronly="true" replacewith="sturgian_brigand" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="sturgian_soldier" percent="45" playeronly="true" replacewith="sturgian_soldier" />
                                <volunteer id="varyag" percent="10" playeronly="true" replacewith="varyag" />
                                <volunteer id="sturgian_hunter" percent="23" playeronly="true" replacewith="sturgian_hunter" />
                                <volunteer id="sturgian_brigand" percent="22" playeronly="true" replacewith="sturgian_brigand" />
                        </eliteTroops>
                </Culture>
                <Culture id="vlandia">  <!-- Northern Empire for captured Vlandian settlements -->
                        <basicTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="battania">  <!-- Northern Empire for captured Battanian settlements -->
                        <basicTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="khuzait">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="empire">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="aserai">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="sturgian_recruit" playeronly="true" replacewith="sturgian_recruit" />
                        </eliteTroops>
                </Culture>
        </MapFaction>
      

回复 支持 反对

使用道具 举报

2

主题

72

帖子

199

积分

中级玩家

Rank: 3Rank: 3

贡献度
17
金元
1305
积分
199
精华
0
注册时间
2012-5-11
7#
 楼主| 发表于 2020-5-25 21:01 | 只看该作者
接上面
<MapFaction id="aserai">   <!-- Standard Aserai configuration -->
                <Culture id="default">
                        <basicTroops>
                                <volunteer id="aserai_footman" percent="23" playeronly="true" replacewith="aserai_footman" />
                                <volunteer id="aserai_skirmisher" percent="22" playeronly="true" replacewith="aserai_skirmisher" />
                                <volunteer id="aserai_mameluke_regular" percent="15" playeronly="true" replacewith="aserai_mameluke_regular" />
                                <volunteer id="aserai_mameluke_axeman" percent="22" playeronly="true" replacewith="aserai_mameluke_axeman" />
                                <volunteer id="aserai_tribal_horseman" percent="10" playeronly="true" replacewith="aserai_tribal_horseman" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="aserai_footman" percent="23" playeronly="true" replacewith="aserai_footman" />
                                <volunteer id="aserai_skirmisher" percent="22" playeronly="true" replacewith="aserai_skirmisher" />
                                <volunteer id="aserai_mameluke_regular" percent="15" playeronly="true" replacewith="aserai_mameluke_regular" />
                                <volunteer id="aserai_mameluke_axeman" percent="22" playeronly="true" replacewith="aserai_mameluke_axeman" />
                                <volunteer id="aserai_tribal_horseman" percent="10" playeronly="true" replacewith="aserai_tribal_horseman" />
                        </eliteTroops>
                </Culture>
                <Culture id="vlandia">  <!-- Northern Empire for captured Vlandian settlements -->
                        <basicTroops>
                                <volunteer id="aserai_recruit" playeronly="true" replacewith="aserai_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="aserai_recruit" playeronly="true" replacewith="aserai_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="battania">  <!-- Northern Empire for captured Battanian settlements -->
                        <basicTroops>
                                <volunteer id="aserai_recruit" playeronly="true" replacewith="aserai_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="aserai_recruit" playeronly="true" replacewith="aserai_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="khuzait">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="aserai_recruit" playeronly="true" replacewith="aserai_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="aserai_recruit" playeronly="true" replacewith="aserai_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="empire">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="aserai_recruit" playeronly="true" replacewith="aserai_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="aserai_recruit" playeronly="true" replacewith="aserai_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="sturgia">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="aserai_recruit" playeronly="true" replacewith="aserai_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="aserai_recruit" playeronly="true" replacewith="aserai_recruit" />
                        </eliteTroops>
                </Culture>
        </MapFaction>
        <MapFaction id="vlandia">  <!-- Standard Vlandia configuration -->
                <Culture id="default">
                        <basicTroops>
                                <volunteer id="vlandian_spearman" percent="23" playeronly="true" replacewith="vlandian_spearman" />
                                <volunteer id="vlandian_infantry" percent="22" playeronly="true" replacewith="vlandian_infantry" />
                                <volunteer id="vlandian_crossbowman" percent="45" playeronly="true" replacewith="vlandian_crossbowman" />
                                <volunteer id="vlandian_gallant" percent="10" playeronly="true" replacewith="vlandian_gallant" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="vlandian_spearman" percent="23" playeronly="true" replacewith="vlandian_spearman" />
                                <volunteer id="vlandian_infantry" percent="22" playeronly="true" replacewith="vlandian_infantry" />
                                <volunteer id="vlandian_crossbowman" percent="45" playeronly="true" replacewith="vlandian_crossbowman" />
                                <volunteer id="vlandian_gallant" percent="10" playeronly="true" replacewith="vlandian_gallant" />
                        </eliteTroops>
                </Culture>
                <Culture id="aserai">  <!-- Northern Empire for captured Vlandian settlements -->
                        <basicTroops>
                                <volunteer id="vlandian_recruit" playeronly="true" replacewith="vlandian_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="vlandian_recruit" playeronly="true" replacewith="vlandian_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="battania">  <!-- Northern Empire for captured Battanian settlements -->
                        <basicTroops>
                                <volunteer id="vlandian_recruit" playeronly="true" replacewith="vlandian_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="vlandian_recruit" playeronly="true" replacewith="vlandian_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="khuzait">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="vlandian_recruit" playeronly="true" replacewith="vlandian_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="vlandian_recruit" playeronly="true" replacewith="vlandian_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="empire">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="vlandian_recruit" playeronly="true" replacewith="vlandian_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="vlandian_recruit" playeronly="true" replacewith="vlandian_recruit" />
                        </eliteTroops>
                </Culture>
                <Culture id="sturgia">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="vlandian_recruit" playeronly="true" replacewith="vlandian_recruit" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="vlandian_recruit" playeronly="true" replacewith="vlandian_recruit" />
                        </eliteTroops>
                </Culture>
        </MapFaction>
        <MapFaction id="battania"> <!-- Chael Nad'ra Battania configuration -->
                <Culture id="default">
                        <basicTroops>
                                <volunteer id="battanian_trained_warrior" percent="30" playeronly="true" replacewith="battanian_trained_warrior" />
                                <volunteer id="battanian_raider" percent="30" playeronly="true" replacewith="battanian_raider" />
                                <volunteer id="battanian_skirmisher" percent="30" playeronly="true" replacewith="battanian_skirmisher" />
                                <volunteer id="battanian_highborn_warrior" percent="10" playeronly="true" replacewith="battanian_highborn_warrior" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="battanian_trained_warrior" percent="30" playeronly="true" replacewith="battanian_trained_warrior" />
                                <volunteer id="battanian_raider" percent="30" playeronly="true" replacewith="battanian_raider" />
                                <volunteer id="battanian_skirmisher" percent="30" playeronly="true" replacewith="battanian_skirmisher" />
                                <volunteer id="battanian_highborn_warrior" percent="10" playeronly="true" replacewith="battanian_highborn_warrior" />
                        </eliteTroops>
                </Culture>
                <Culture id="vlandia">  <!-- Northern Empire for captured Vlandian settlements -->
                        <basicTroops>
                                <volunteer id="battanian_volunteer" playeronly="true" replacewith="battanian_volunteer" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="battanian_volunteer" playeronly="true" replacewith="battanian_volunteer" />
                        </eliteTroops>
                </Culture>
                <Culture id="aserai">  <!-- Northern Empire for captured Battanian settlements -->
                        <basicTroops>
                                <volunteer id="battanian_volunteer" playeronly="true" replacewith="battanian_volunteer" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="battanian_volunteer" playeronly="true" replacewith="battanian_volunteer" />
                        </eliteTroops>
                </Culture>
                <Culture id="khuzait">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="battanian_volunteer" playeronly="true" replacewith="battanian_volunteer" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="battanian_volunteer" playeronly="true" replacewith="battanian_volunteer" />
                        </eliteTroops>
                </Culture>
                <Culture id="empire">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="battanian_volunteer" playeronly="true" replacewith="battanian_volunteer" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="battanian_volunteer" playeronly="true" replacewith="battanian_volunteer" />
                        </eliteTroops>
                </Culture>
                <Culture id="sturgia">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="battanian_volunteer" playeronly="true" replacewith="battanian_volunteer" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="battanian_volunteer" playeronly="true" replacewith="battanian_volunteer" />
                        </eliteTroops>
                </Culture>
        </MapFaction>
        <MapFaction id="khuzait">   <!-- Standard Khuzait configuration -->
                <Culture id="default">
                        <basicTroops>
                                <volunteer id="khuzait_hunter" percent="22" playeronly="true" replacewith="khuzait_hunter" />
                                <volunteer id="khuzait_spearman" percent="22" playeronly="true" replacewith="khuzait_spearman" />
                                <volunteer id="khuzait_raider" percent="15" playeronly="true" replacewith="khuzait_raider" />
                                <volunteer id="khuzait_horseman" percent="15" playeronly="true" replacewith="khuzait_horseman" />
                                <volunteer id="khuzait_qanqli" percent="10" playeronly="true" replacewith="khuzait_qanqli" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="khuzait_hunter" percent="22" playeronly="true" replacewith="khuzait_hunter" />
                                <volunteer id="khuzait_spearman" percent="22" playeronly="true" replacewith="khuzait_spearman" />
                                <volunteer id="khuzait_raider" percent="15" playeronly="true" replacewith="khuzait_raider" />
                                <volunteer id="khuzait_horseman" percent="15" playeronly="true" replacewith="khuzait_horseman" />
                                <volunteer id="khuzait_qanqli" percent="10" playeronly="true" replacewith="khuzait_qanqli" />
                        </eliteTroops>
                </Culture>
                <Culture id="vlandia">  <!-- Northern Empire for captured Vlandian settlements -->
                        <basicTroops>
                                <volunteer id="khuzait_nomad" playeronly="true" replacewith="khuzait_nomad" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="khuzait_nomad" playeronly="true" replacewith="khuzait_nomad" />
                        </eliteTroops>
                </Culture>
                <Culture id="battania">  <!-- Northern Empire for captured Battanian settlements -->
                        <basicTroops>
                                <volunteer id="khuzait_nomad" playeronly="true" replacewith="khuzait_nomad" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="khuzait_nomad" playeronly="true" replacewith="khuzait_nomad" />
                        </eliteTroops>
                </Culture>
                <Culture id="aserai">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="khuzait_nomad" playeronly="true" replacewith="khuzait_nomad" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="khuzait_nomad" playeronly="true" replacewith="khuzait_nomad" />
                        </eliteTroops>
                </Culture>
                <Culture id="empire">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="khuzait_nomad" playeronly="true" replacewith="khuzait_nomad" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="khuzait_nomad" playeronly="true" replacewith="khuzait_nomad" />
                        </eliteTroops>
                </Culture>
                <Culture id="sturgia">  <!-- Northern Empire for captured Khuzait settlements -->
                        <basicTroops>
                                <volunteer id="khuzait_nomad" playeronly="true" replacewith="khuzait_nomad" />
                        </basicTroops>
                        <eliteTroops>
                                <volunteer id="khuzait_nomad" playeronly="true" replacewith="khuzait_nomad" />
                        </eliteTroops>
                </Culture>
        </MapFaction>
</ATCConfig>
回复 支持 反对

使用道具 举报

2

主题

72

帖子

199

积分

中级玩家

Rank: 3Rank: 3

贡献度
17
金元
1305
积分
199
精华
0
注册时间
2012-5-11
8#
 楼主| 发表于 2020-5-25 21:04 | 只看该作者
虽然写出来很长,感觉很复杂的样子。但其实认真研究的话,几乎完全不需要编程基础
我本人也并不是计算机相关工作的,研究研究就会了
回复 支持 反对

使用道具 举报

0

主题

62

帖子

78

积分

初级玩家

Rank: 2

贡献度
0
金元
779
积分
78
精华
0
注册时间
2018-5-5
9#
发表于 2020-5-26 00:13 | 只看该作者
大佬你好,请问自建兵种电脑能用吗?
我想搞几个电脑能用能招募的,如魔兽争霸里面的兽人、丧尸之类的;
我自己专用的,电脑无法用的,如脚男、龙鹰之类的。
回复 支持 反对

使用道具 举报

2

主题

72

帖子

199

积分

中级玩家

Rank: 3Rank: 3

贡献度
17
金元
1305
积分
199
精华
0
注册时间
2012-5-11
10#
 楼主| 发表于 2020-5-26 06:33 | 只看该作者
超级无敌虾 发表于 2020-5-26 00:13
大佬你好,请问自建兵种电脑能用吗?
我想搞几个电脑能用能招募的,如魔兽争霸里面的兽人、丧尸之类的;
我 ...

可以啊
通用还是专用都可以设置
回复 支持 反对

使用道具 举报

121

主题

1720

帖子

7448

积分

游戏精英

Rank: 8Rank: 8

贡献度
1058
金元
32164
积分
7448
精华
0
注册时间
2011-6-9

你开心就好勋章-丘比3DMer(永久)

11#
发表于 2020-5-26 12:54 | 只看该作者
感谢分享,虽然已经看过作者文档说明了
回复 支持 反对

使用道具 举报

2

主题

72

帖子

199

积分

中级玩家

Rank: 3Rank: 3

贡献度
17
金元
1305
积分
199
精华
0
注册时间
2012-5-11
12#
 楼主| 发表于 2020-5-26 13:22 | 只看该作者
ars5217 发表于 2020-5-26 12:54
感谢分享,虽然已经看过作者文档说明了

作者的说明存在一个逻辑bug。
回复 支持 反对

使用道具 举报

121

主题

1720

帖子

7448

积分

游戏精英

Rank: 8Rank: 8

贡献度
1058
金元
32164
积分
7448
精华
0
注册时间
2011-6-9

你开心就好勋章-丘比3DMer(永久)

13#
发表于 2020-5-26 14:18 | 只看该作者
TAIL23 发表于 2020-5-26 13:22
作者的说明存在一个逻辑bug。

ATC应该是个比较不错的兵种框架mod,但是最近几乎没玩游戏,还没有用过,只是简单的看了下说明,你写的比作者详细多了。

这两天有时间的时候在弄佣兵派系,想问一下楼主,知道怎么把自建派系里的人物显示成小派系吗?在faction里所有的设置无效,在heroes里设置职业occupation=""除了贵族外,试了几个相关的无效,其他的能改变成匪徒、流浪者什么的。
如果楼主能告知,真是感激不尽。
附一下总结的所有职业的代码
occupation=""职业
Mercenary雇佣兵
Soldier士兵
Wanderer流浪者
Townsfolk镇民/市民
Villager村民
Lord贵族
Merchant商人
Preacher传教士
Artisan工匠
GangLeader黑社会头目
RuralNotable乡村名人
Outlaw不法之徒
Headman头人/酋长
NotAssigned未分配(中立人物)
Bandit强盗
Companion同伴
PrisonGuard狱警
Judge法官
Blacksmith铁匠
Weaponsmith武器匠
RansomBroker赎金经纪人
ShopKeeper店主
ShopWorker店员
Tavernkeeper酒馆老板
TavernGameHost酒馆游戏东家
Musician音乐家
TavernWench酒馆女招待
Armorer军械师
HorseTrader马商
GoodsTrader货物贸易商
ArenaMaster竞技场大师
CaravanGuard商队警卫
BannerBearer旗手(测试人物)
Special特别的(教程人物)


回复 支持 反对

使用道具 举报

0

主题

1

帖子

4

积分

新手玩家

Rank: 1

贡献度
0
金元
40
积分
4
精华
0
注册时间
2022-2-6
14#
发表于 2022-11-4 02:13 来自手机 | 只看该作者
请问如何设置人自定义兵种在城镇刷新和不是限定定居点呀
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|咖绿茵|求知网|3DMGAME ( 京ICP备14006952号-1  沪公网安备 31011202006753号

GMT+8, 2024-4-23 16:15 , Processed in 0.559533 second(s), 30 queries , Memcache On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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