- 好友
- 1
- 在线时间
- 961 小时
- 最后登录
- 2023-9-21
见习骑士

- UID
- 756679
- 第纳尔
- 1462
- 精华
- 0
- 互助
- 5
- 荣誉
- 3
- 贡献
- 0
- 魅力
- 1
- 注册时间
- 2012-4-19

 鲜花( 14)  鸡蛋( 0)
|
本帖最后由 菊小隐 于 2020-5-16 00:11 编辑
首先需要控制台DeveloperConsole。进入游戏,开启控制台,移动人物到你想添加城市的位置,输入campaign.get_main_party_position,获取当前XY坐标。同时寻找你想复制的城市/城堡/村庄的名字,记下来。
1、建立文件夹,名称X(新添加城市的名字)。在文件夹内建立SubModule XML文件,创建ModuleData文件夹,创建SceneObj文件夹
2、打开游戏Modules—SandBox—ModuleData文件夹,复制settlements XML文件到你创建的ModuleData文件夹中,重命名为Xsettlements。打开游戏Modules—SandBox—SceneObj文件夹,复制Main_map文件夹到你创建的SceneObj文件夹中。
3、编辑SubModule
<?xml version="1.0" encoding="utf-8"?>
<Module>
<Name value="X"/>
<Id value="X"/>
<Version value="v1.0.0"/>
<SingleplayerModule value="true"/>
<MultiplayerModule value="false"/>
<DependedModules>
<DependedModule Id="Native"/>
<DependedModule Id="SandBoxCore"/>
<DependedModule Id="Sandbox"/>
<DependedModule Id="CustomBattle"/>
<DependedModule Id="StoryMode" />
</DependedModules>
<SubModules>
</SubModules>
<Xmls>
<XmlNode>
<XmlName id="Settlements" path="Xsettlements"/>
<IncludedGameTypes>
<GameType value = "Campaign"/>
<GameType value = "CampaignStoryMode"/>
</IncludedGameTypes>
</XmlNode>
</Xmls>
</Module>
4、打开游戏Modules—SandBox—ModuleData—Languages—CNs—std_settlements_xml-zho-CN,输入你记下的城市名字,复制ID。
然后打开游戏Modules—SandBox—ModuleData—settlements,查找ID,复制ID信息。例如(我的例子是一个阿塞莱城堡)
<Settlement id="castle_A1" name="{=Settlements.Settlement.name.castle_A1}Tubilis Castle" owner="Faction.clan_aserai_1" posX="274.181" posY="272.167" culture="Culture.aserai" prosperity="930" gate_posX="275.4893" gate_posY="271.7934">
<Components>
<Town id="castle_comp_A1" is_castle="true" level="2" background_crop_position="0.0" background_mesh="menu_aserai_3" wait_mesh="wait_aserai_town" gate_rotation="0.908" />
</Components>
<Locations complex_template="LocationComplexTemplate.castle_complex">
<Location id="center" scene_name="aserai_castle_002" scene_name_1="aserai_castle_002" scene_name_2="aserai_castle_002" scene_name_3="aserai_castle_002" />
<Location id="lordshall" scene_name_1="aserai_castle_keep_a_l1_interior" scene_name_2="aserai_castle_keep_a_l2_interior" scene_name_3="aserai_castle_keep_a_l3_interior" />
<Location id="prison" scene_name="aserai_dungeon_a" />
</Locations>
</Settlement>
下面则是城堡附加村庄的代码(只举一个例子,一般来说城镇附加3个村庄,城堡2个村庄)
<Settlement id="castle_village_A1_1" name="{=Settlements.Settlement.name.castle_village_A1_1}Tubilis" posX="251.632" posY="263.255" culture="Culture.aserai" text="{=Settlements.Settlement.text.castle_village_A1_1}Tubilis is a fishing village where the river that the Aserai call the Gabsa reaches the sea. Villagers sail out onto the calm waters of the gulf to seek tuna, sardines, and shark.">
<Components>
<Village id="castle_village_comp_A1_1" village_type="VillageType.fisherman" hearth="148" trade_bound="Settlement.castle_A1" bound="Settlement.castle_A1" background_crop_position="0.214" background_mesh="menu_aserai_village_1" wait_mesh="wait_aserai_village" castle_background_mesh="gui_bg_castle_aserai" />
</Components>
<Locations complex_template="LocationComplexTemplate.village_complex">
<Location id="village_center" scene_name="aserai_village_i" />
</Locations>
<CommonAreas>
<Area type="Pasture" name="{=fOUsLdZR}Pasture" />
<Area type="Thicket" name="{=66Mzk0NZ}Thicket" />
<Area type="Bog" name="{=iXA5SttU}Bog" />
</CommonAreas>
</Settlement>
将它们复制到你自己创建的Xsettlements中,放在<Settlements>下面。然后修改这段(这步可以直接在你Xsettlements里面复制,但是如果你怕出错就从游戏本体的文件复制到你的文件里)。例如
<Settlement id="X_A1" name="{=*}城市名字" owner="Faction.你想给的家族" posX="横坐标" posY="纵坐标" culture="Culture.国家" prosperity="繁荣度" gate_posX="入口横坐标" gate_posY="入口纵坐标">(用入口原坐标对照城市原坐标,记下坐标差,通过城市新坐标得出入口新坐标)
<Components>
<Town id="X_comp_A1" is_castle="true" level="2" background_crop_position="0.0" background_mesh="menu_aserai_3" wait_mesh="wait_aserai_town" gate_rotation="0.908" />
</Components>(下面的不要动)
<Locations complex_template="LocationComplexTemplate.castle_complex">
<Location id="center" scene_name="aserai_castle_002" scene_name_1="aserai_castle_002" scene_name_2="aserai_castle_002" scene_name_3="aserai_castle_002" />
<Location id="lordshall" scene_name_1="aserai_castle_keep_a_l1_interior" scene_name_2="aserai_castle_keep_a_l2_interior" scene_name_3="aserai_castle_keep_a_l3_interior" />
<Location id="prison" scene_name="aserai_dungeon_a" />
</Locations>
</Settlement>
附加的村庄代码则为
<Settlement id="X_village_A1_1" name="{=*}村庄名字" posX="横坐标" posY="纵坐标" culture="Culture.国家" text="介绍村庄。">
<Components>
<Village id="X_village_comp_A1_1" village_type="VillageType.fisherman(这是村庄特产,可以修改)" hearth="148" trade_bound="Settlement.X_A1" bound="Settlement.X_A1" background_crop_position="0.214" background_mesh="menu_aserai_village_1" wait_mesh="wait_aserai_village" castle_background_mesh="gui_bg_castle_aserai" />
</Components>
<Locations complex_template="LocationComplexTemplate.village_complex">
<Location id="village_center" scene_name="aserai_village_i" />
</Locations>
<CommonAreas>
<Area type="Pasture" name="{=fOUsLdZR}Pasture" />
<Area type="Thicket" name="{=66Mzk0NZ}Thicket" />
<Area type="Bog" name="{=iXA5SttU}Bog" />
</CommonAreas>
</Settlement>
5、打开游戏Modules—SandBox—SceneObj—Main_map—scene.xscene,C++打开比较慢(代码太多了),稍等一会,用VS的话快一些。查找步骤4里面你记下的城市/城堡/村庄ID,复制整个ID下面的代码。一个城市大概有3000多行代码,这个比较麻烦,需要你盯着看(这一步同样可以在你自己的scene.xscene复制,不用开启2个scene.xscene,但是单一scene.xscene复制起来很容易出错)。复制以后,打开你自己建立的SceneObj—Main_map—scene.xscene,找到第27673行</game_entity>(这一行是一个分界,比较明显,要不然一个一个看太麻烦),回车。然后将代码粘贴到27674行。修改game_entity name="X_A1"(村庄同理,一定要填ID)。修改<transform position="横坐标, 纵坐标, Z轴坐标(这个是最麻烦的,现在无法在游戏里面直接看Z轴,只修改XY轴就是把模型平移了,但是由于地图有地形起伏,必须一遍一遍进游戏调整)" rotation_euler="0.000, 0.000, 1.185"/>(这3个数据是用来旋转的,比如城市模型入口朝左,可以通过修改这个让入口朝右)
6、保存并在启动界面开启mod。
最后放一个雪漫城视频
|
评分
-
查看全部评分
鲜花鸡蛋方骑骑士 在2022-9-29 05:46 送朵鲜花 并说:我非常同意你的观点,送朵鲜花鼓励一下 Notealot 在2020-5-22 16:50 送朵鲜花 并说:我非常同意你的观点,送朵鲜花鼓励一下 rainyboy27 在2020-5-18 04:14 送朵鲜花 并说:我非常同意你的观点,送朵鲜花鼓励一下
|