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

注册 登录

QQ登录

只需一步,快速开始

查看: 1329|回复: 2
打印 上一主题 下一主题

[游戏求助] 有没有大神教教我,怎么在卡片mod里面增加马车和仓库的卸货速度的代码,谢谢啦!

[复制链接]

90

主题

1210

帖子

3316

积分

游戏达人

Rank: 7Rank: 7Rank: 7

贡献度
250
金元
23063
积分
3316
精华
1
注册时间
2009-12-25
跳转到指定楼层
主题
发表于 2021-1-27 13:53 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
有没有大神教教我,怎么在卡片mod里面增加马车和仓库的卸货速度的代码,谢谢啦!我这样直接加了一段,但是进入游戏后没有效果。
<ModOp Type="replace" GUID='190735' Path="/Values">
                                         <Values>
                        <Standard>
                          <GUID>190735</GUID>
                          <Name>mcwj</Name>
                          <IconFilename>data/ui/2kimages/main/icons/icon_ressource_worker_south_america.png</IconFilename>
                          <InfoDescription>12611</InfoDescription>
                        </Standard>
                        <Text>
                          <LocaText>
                            <English>
                              <Text>mcwj</Text>
                              <Status>Exported</Status>
                              <ExportCount>1</ExportCount>
                            </English>                                                       
                          </LocaText>
                          <LineID>15282</LineID>
                        </Text>
                        <Item>
                          <MaxStackSize>1</MaxStackSize>
                          <Rarity>Legendary</Rarity>
                          <ItemType>Specialist</ItemType>
                          <TradePrice>50000</TradePrice>
                          <TradePriceOnlineCurrency>50</TradePriceOnlineCurrency>
                        </Item>
                        <FactoryUpgrade>
                                                        <ProductivityUpgrade>
                                                                <Value>400</Value>
                                                                <Percental>1</Percental>
                                                        </ProductivityUpgrade>                                               
                                                </FactoryUpgrade>
                        <ItemEffect>
                          <EffectTargets>
                            <Item>
                              <GUID>193856</GUID>
                            </Item>
                          </EffectTargets>
                        </ItemEffect>
                        <ItemAction />
                        <ExpeditionAttribute>
                          <BaseMorale>0</BaseMorale>
                          <ExpeditionAttributes />
                          <ItemDifficulties>Average;Hard</ItemDifficulties>
                          <FluffText>12611</FluffText>
                        </ExpeditionAttribute>
                                                <BuildingUpgrade>
                                                        <MaintenanceUpgrade>
                                                                <Value>-50</Value>
                                                                <Percental>1</Percental>
                                                         </MaintenanceUpgrade>
                                                         <WorkforceAmountUpgrade>
                                                                <Value>-50</Value>
                                                                <Percental>1</Percental>
                                                          </WorkforceAmountUpgrade>
                                                </BuildingUpgrade>
                        <ModuleOwnerUpgrade />
                        <IncidentInfluencerUpgrade />
                        <IncidentInfectableUpgrade>
                                                        <IncidentFireIncreaseUpgrade>
                                                          <Value>-9</Value>
                                                        </IncidentFireIncreaseUpgrade>
                                                        <IncidentIllnessIncreaseUpgrade>
                                                          <Value>-9</Value>
                                                        </IncidentIllnessIncreaseUpgrade>
                                                        <IncidentExplosionIncreaseUpgrade>
                              <Value>-9</Value>
                            </IncidentExplosionIncreaseUpgrade>
                                                </IncidentInfectableUpgrade>
        <!--卸货时间和运输速度-->这段写里面没有效果,求解!
       
                     <ProcessingTimes>
                        <LoadingTime>50</LoadingTime>
                        <UnloadingTime>50</UnloadingTime>
                     </ProcessingTimes>
                     <TransporterSpeed>90</TransporterSpeed>
                        <Transporter7 />
                        <ProcessingTimes />
                        <TransporterSpeed />

                        <ResidenceUpgrade />
                        <PopulationUpgrade />
                        <IndustrializableUpgrade />
                        <Locked />
                        <Buff />
                        <CraftableItem />
                        <HeaterUpgrade />
                        <PowerplantUpgrade />
                        <IrrigationUpgrade />
                      </Values>
       
  </ModOp>

回复

使用道具 举报

5

主题

543

帖子

527

积分

高级玩家

Rank: 4

贡献度
3
金元
5148
积分
527
精华
0
注册时间
2012-8-26
舒服的沙发
发表于 2022-4-1 14:48 | 只看该作者
<!-- 工厂运输速度和容量 -->
  <ModOp Type="add" GUID='1010104' Path="/Values/Transporter7">
    <TransporterCapacity>100</TransporterCapacity>
    <ProcessingTimes>
      <LoadingTime>0</LoadingTime>
      <UnloadingTime>0</UnloadingTime>
    </ProcessingTimes>
  </ModOp>

  <!-- 电 工厂运输速度和容量 -->
  <ModOp Type="add" GUID='120028' Path="/Values/Transporter7">
    <TransporterCapacity>100</TransporterCapacity>
  </ModOp>
  <ModOp Type="merge" GUID='120028' Path="/Values/Transporter7/ProcessingTimes">
    <LoadingTime>0</LoadingTime>
    <UnloadingTime>0</UnloadingTime>
  </ModOp>

  <!-- 仓库运输速度和容量 -->
  <ModOp Type="add" GUID='1010105' Path="/Values/Transporter7">
    <TransporterCapacity>100</TransporterCapacity>
    <ProcessingTimes>
      <LoadingTime>0</LoadingTime>
      <UnloadingTime>0</UnloadingTime>
    </ProcessingTimes>
  </ModOp>

  <!-- 电 仓库运输速度和容量 -->
  <ModOp Type="add" GUID='120027' Path="/Values/Transporter7">
    <TransporterCapacity>100</TransporterCapacity>
  </ModOp>
  <ModOp Type="merge" GUID='120027' Path="/Values/Transporter7/ProcessingTimes">
    <LoadingTime>0</LoadingTime>
    <UnloadingTime>0</UnloadingTime>
  </ModOp>

  <!-- 火车运输 -->
  <ModOp Type="merge" GUID='120025' Path="/Values/Transporter7/ProcessingTimes">
    <LoadingTime>0</LoadingTime>
    <UnloadingTime>0</UnloadingTime>
  </ModOp>

  <!-- 拖拉机运输 -->
  <ModOp Type="merge" GUID='120062' Path="/Values/Transporter7/ProcessingTimes">
    <LoadingTime>0</LoadingTime>
    <UnloadingTime>0</UnloadingTime>
  </ModOp>

回复 支持 反对

使用道具 举报

5

主题

543

帖子

527

积分

高级玩家

Rank: 4

贡献度
3
金元
5148
积分
527
精华
0
注册时间
2012-8-26
硬硬的板凳
发表于 2022-4-1 14:49 | 只看该作者
LoadingTime 有道翻译 加载时间  
UnloadingTime 有道翻译  卸货时间
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2026-3-29 15:52 , Processed in 0.026106 second(s), 16 queries , Memcached On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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