[原创攻略] 汉魂全面战争脚本详解,中世纪2全面战争脚本修改教程

[复制链接]
耀武王 发表于 2016-3-28 22:30:50 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

汉魂全面战争3.0以及发布了,感谢大家一直对汉魂MOD网的支持,在此我们特别制作发布汉魂3脚本详解教程,此脚本方便大家更好的体验汉魂3.0
方便各位修改。注:此脚本通用所有中世纪2全面战争,故也作为中世纪2全面战争脚本修改教程友情发布!


1.关于一年八回合脚本

;----------8回合1年-----------

  declare_counter month
  set_counter month 1

;
注:红色部分为月份脚本依次为1-8个月
monitor_event FactionTurnStart FactionIsLocal ; set the season for each month
                        if I_CompareCounter month == 1 ;
                console_command season summer
                        end_if

                        if I_CompareCounter month == 2 ;
                console_command season summer
                        end_if
                        
                        if I_CompareCounter month == 3 ;
                console_command season summer
                        end_if

                        if I_CompareCounter month == 4 ;
                console_command season summer
                        end_if
                        
                        if I_CompareCounter month == 5 ;
                console_command season summer
                        end_if                        

                        if I_CompareCounter month == 6 ;
                console_command season summer
                        end_if
                        
                        
                        if I_CompareCounter month == 7 ;
                console_command season winter
                        end_if                        
                        
                        if I_CompareCounter month == 8
                console_command season winter
                        end_if                        
                        
;
注:第九个月为第二年的开始脚本运行                        
                        inc_counter month 1 ;advance the month
                        if I_CompareCounter month == 9 ;start a new year
                                                set_counter month 1  
                        end_if

end_monitor
注:脚本的意思的小于8回合天气为夏天,各位玩过全战的人都知道,冬天之后就是新的一年,故而,前面8个回合必须强制在夏天!
monitor_event FactionTurnEnd FactionType slave
                        and I_CompareCounter month < 8
                        console_command season summer
end_monitor


;注:end_monitor 为脚本结束语句


2.年龄脚本需要配合年份脚本一起运行
;;;年龄trait;;;
  monitor_event FactionTurnStart FactionIsLocal
        if I_CompareCounter month == 1
        set_event_counter DESCR 1
  end_if
        if I_CompareCounter month == 2
        set_event_counter DESCR 1
  end_if
        if I_CompareCounter month == 3
        set_event_counter DESCR 1
  end_if
        if I_CompareCounter month == 4
        set_event_counter DESCR 1
  end_if
        if I_CompareCounter month == 5
        set_event_counter DESCR 1
  end_if
        if I_CompareCounter month == 6
        set_event_counter DESCR 1
  end_if
        if I_CompareCounter month == 7
        set_event_counter DESCR 1
  end_if
        if I_CompareCounter month == 8
        set_event_counter DESCR 3
  end_if
        if I_CompareCounter month == 9
        set_event_counter DESCR 1
  end_if


        end_monitor  


注:代码与上述月份脚本相同不多做解释


3.外交脚本
;;;1) 外交脚本                        
        
;;;强制外交;;;
注:下面的代码含义是回合小于100回合那么强制papal_states(明朝)与 hre(孙传庭)结盟,也就是说,在100回合以内2个派系是强制同盟关系!
allied是同盟的代码同理下面的
war是战争的意思也就是说强制战争状态的意思

monitor_event FactionTurnStart FactionIsLocal
and I_TurnNumber < 100
console_command diplomatic_stance papal_states hre allied
console_command diplomatic_stance papal_states uzbek allied
console_command diplomatic_stance papal_states maratha allied
console_command diplomatic_stance papal_states sicily allied
console_command diplomatic_stance england saxons allied

end_monitor

注:以上为一段代码

monitor_event FactionTurnStart FactionIsLocal
and I_TurnNumber < 24
console_command diplomatic_stance papal_states france allied
console_command diplomatic_stance scotland maratha allied
console_command diplomatic_stance scotland uzbek allied
console_command diplomatic_stance hanhun_c maratha allied
console_command diplomatic_stance sulu uzbek allied
end_monitor

monitor_event FactionTurnStart FactionIsLocal
and I_TurnNumber < 40
console_command diplomatic_stance byzantium papal_states war
console_command diplomatic_stance moors papal_states war
console_command diplomatic_stance turks papal_states war
end_monitor

monitor_event FactionTurnStart FactionIsLocal
and I_TurnNumber < 16
console_command diplomatic_stance byzantium russia allied
console_command diplomatic_stance poland england allied
end_monitor

注:这里的代码含义是大于十二回合派系之间的关系变化
外交的友好度增加还是减少!
例如:set_faction_standing france papal_states -0.4 代码的含义就是关宁军与明朝在大于12回合后每回合减少0.4友好度!

monitor_event FactionTurnStart FactionIsLocal
and I_TurnNumber > 12
set_faction_standing france papal_states -0.4
set_faction_standing papal_states france -0.2
set_faction_standing france turks -1.0
set_faction_standing turks france -1.0
set_faction_standing france moors -1.0
set_faction_standing moors france -1.0
set_faction_standing france slave -1.0
end_monitor

monitor_event FactionTurnStart FactionIsLocal
and I_TurnNumber > 32
and I_TurnNumber < 64
set_faction_standing byzantium france 1.0
set_faction_standing france byzantium 1.0
end_monitor



4.经济脚本

;;;2) 经济脚本

;;;劫掠;;;
注:以下代码是如果我是明朝那么每回合加400元
       如果我不是明朝那么每回合给明朝加1200元,以此类推,修改各自的派系代码即可!
monitor_event GeneralDevastatesTile FactionType papal_states
        if I_LocalFaction papal_states
                console_command add_money papal_states, 400
        end_if
        if not I_LocalFaction papal_states
                console_command add_money papal_states, 1200
        end_if
end_monitor



下面代码类同,只是加了个回合约束
        monitor_event FactionTurnStart not FactionIsLocal
        and FactionType byzantium
        and I_TurnNumber < 96
        add_money byzantium, 3000
        end_monitor
        monitor_event FactionTurnStart FactionIsLocal
        and FactionType byzantium
        and I_TurnNumber < 32
        add_money byzantium, 23500
        end_monitor



;;;;负资金消除;;;
        monitor_event FactionTurnStart not FactionIsLocal
                and FactionType byzantium
                and Treasury < 0
                add_money byzantium, 20000
        end_monitor





5.下面是汉魂全面战争3.0的游戏脚本比较长,相同部分就省略了!
注:这里的脚本含义是回合大于等于24回合如果moors(大顺)是电脑and(和)明朝是电脑,和北京是明朝的,西安是大顺的
那么将触发脚本,给大顺添加50000元,以及刷出下列的兵种
;------------------------------------------------进军北京
monitor_event FactionTurnStart FactionIsLocal
if I_TurnNumber >= 24
and I_IsFactionAIControlled moors
and I_IsFactionAIControlled papal_states
and  I_SettlementOwner C-0101-b-BeiPing = papal_states
and  I_SettlementOwner C-0901-b-ChangAn = moors
add_money moors 50000
spawn_army
faction moors
character        random_name, named character, age 23, x 235, y 314, label shunBJ1 ;注:这里的lable shunBJ1是作为一个变量,可以自己定义比如我可以定义为了label ming1,为的是作为下面脚本进攻部队的一个代码,好像是一个番号吧!作为记号使用!
traits  Jn1001 6 , Jn2000 1 , Jn3000 5 , Jn4000 6 , Jn5000 5 , jna1000 4 , jna2000 4 , JnA3000 3 , JnA4000 1 , JnA5000 1 , JnA6000 1 , JnB7000 2 , JnA8000 5 , JnA9000 8 , Jnxg4000 2 , B2120JnDB-A 1
unit                generalchuangjunjingruiqibing                        exp 1 armour 0 weapon_lvl 0
unit                chuangjunjingruidao                                exp 1 armour 0 weapon_lvl 0
unit                chuangjunjingruidao                                exp 1 armour 0 weapon_lvl 0
unit                chuangjunjingruidao                                exp 1 armour 0 weapon_lvl 0
unit                chuangjunjingruidao                                exp 1 armour 0 weapon_lvl 0
unit                shunjiangjun1                                exp 1 armour 0 weapon_lvl 0
unit                shunjiangjun1                                exp 1 armour 0 weapon_lvl 0
unit                chuangjunjingruigong                                exp 1 armour 0 weapon_lvl 0
unit                chuangjunjingruigong                                exp 1 armour 0 weapon_lvl 0
unit                dashunjingruidao                                        exp 1 armour 0 weapon_lvl 0
unit                dashunjingruidao                                        exp 1 armour 0 weapon_lvl 0
unit                dashunjingruidao                                        exp 1 armour 0 weapon_lvl 0
unit                dashunjingruidao                                        exp 1 armour 0 weapon_lvl 0
unit                Chuang_chosen_spearman                                exp 1 armour 0 weapon_lvl 0
unit                nongminpaotu                                exp 1 armour 0 weapon_lvl 0
unit                nongminpaotu                                exp 1 armour 0 weapon_lvl 0
unit                Chuang_bambard                                exp 1 armour 0 weapon_lvl 0
unit                Chuang_bambard                                exp 1 armour 0 weapon_lvl 0
        end

'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''在此省略部分相同刷兵脚本代码

spawn_army
faction moors
character        random_name, named character, age 23, x 269, y 394, label shunBJ10
traits  Jn1001 6 , Jn2000 1 , Jn3000 5 , Jn4000 6 , Jn5000 5 , jna1000 4 , jna2000 4 , JnA3000 3 , JnA4000 1 , JnA5000 1 , JnA6000 1 , JnB7000 2 , JnA8000 5 , JnA9000 8 , Jnxg4000 2 , B2120JnDB-A 1
unit                generalchuangjunjingruiqibing                        exp 1 armour 0 weapon_lvl 0
unit                chuangjunjingruidao                                exp 1 armour 0 weapon_lvl 0
unit                chuangjunjingruidao                                exp 1 armour 0 weapon_lvl 0
unit                chuangjunjingruidao                                exp 1 armour 0 weapon_lvl 0
unit                chuangjunjingruidao                                exp 1 armour 0 weapon_lvl 0
unit                shunjiangjun1                                exp 1 armour 0 weapon_lvl 0
unit                shunjiangjun1                                exp 1 armour 0 weapon_lvl 0
unit                chuangjunjingruigong                                exp 1 armour 0 weapon_lvl 0
unit                chuangjunjingruigong                                exp 1 armour 0 weapon_lvl 0
unit                dashunjingruidao                                        exp 1 armour 0 weapon_lvl 0
unit                dashunjingruidao                                        exp 1 armour 0 weapon_lvl 0
unit                dashunjingruidao                                        exp 1 armour 0 weapon_lvl 0
unit                dashunjingruidao                                        exp 1 armour 0 weapon_lvl 0
unit                Chuang_chosen_spearman                                exp 1 armour 0 weapon_lvl 0
unit                nongminpaotu                                exp 1 armour 0 weapon_lvl 0
unit                nongminpaotu                                exp 1 armour 0 weapon_lvl 0
unit                Chuang_bambard                                exp 1 armour 0 weapon_lvl 0
unit                Chuang_bambard                                exp 1 armour 0 weapon_lvl 0

end

end_if


        terminate_monitor
        end_monitor

注:下面的脚本就是如果北京不是大顺的,那么shunbj1部队将强制进攻北京

end

        if I_CompareCounter QIANDU = 1
        and not I_SettlementOwner C-0101-b-BeiPing = moors
        siege_settlement shunBJ1, C-0101-b-BeiPing, maintain:保持进攻意识
        siege_settlement shunBJ1, C-0101-b-BeiPing, attack直接攻打城市
        end_if
        if I_CompareCounter QIANDU = 1
        and not I_SettlementOwner C-0105-b-FanYang = moors
        siege_settlement shunBJ2, C-0105-b-FanYang, maintain
        siege_settlement shunBJ2, C-0105-b-FanYang, attack
        end_if
        if I_CompareCounter QIANDU = 1
        and not I_SettlementOwner C-0303-b-Xindu = moors
        siege_settlement shunBJ3, C-0303-b-Xindu, maintain
        siege_settlement shunBJ3, C-0303-b-Xindu, attack
        end_if
        if I_CompareCounter QIANDU = 1
        and not I_SettlementOwner C-0305-b-ChangShan = moors
        siege_settlement shunBJ4, C-0305-b-ChangShan, maintain
        siege_settlement shunBJ4, C-0305-b-ChangShan, attack
        end_if
        if I_CompareCounter QIANDU = 1
        and not I_SettlementOwner C-0301-b-YeCheng = moors
        siege_settlement shunBJ5, C-0301-b-YeCheng, maintain
        siege_settlement shunBJ5, C-0301-b-YeCheng, attack
        end_if


terminate_monitor
end_monitor




6.;;;派系合并脚本,就是把一个势力的所有东西全部给另一个势力的脚本!;;;


;;;关宁军投降满清

        monitor_event FactionTurnEnd FactionType france
                and not FactionIsLocal;如果关宁军是电脑
                and I_TurnNumber >= 32;回合大于32
                and I_NumberOfSettlements france < 2;关宁军城市小于2
                and I_SettlementOwner C-0101-b-BeiPing = moors;北京城属于大顺军
                and I_IsFactionAIControlled byzantium;大清属于电脑势力
and RandomPercent < 50;触发几率小于百分之50

                give_everything_to_faction france byzantium true;将关宁军所有东西给予大清
                console_command kill_faction france;杀死关宁军这个派系
                historic_event WUDEFEAT ;触发吴三桂降清
                      terminate_monitor
        end_monitor

注:汉魂全面战争主要合并代码放出上同自己看
;;;派系合并;;;

;;;关宁军投降满清

        monitor_event FactionTurnEnd FactionType france
                and not FactionIsLocal
                and I_TurnNumber >= 32
                and I_NumberOfSettlements france < 2
                and I_SettlementOwner C-0101-b-BeiPing = moors
                and I_IsFactionAIControlled byzantium
and RandomPercent < 50

                give_everything_to_faction france byzantium true
                console_command kill_faction france
                historic_event WUDEFEAT
                      terminate_monitor
        end_monitor

;;;李自成占领西安

        monitor_event FactionTurnEnd FactionType hre
                and not FactionIsLocal
                and I_TurnNumber >= 40
                and I_SettlementOwner C-0901-b-ChangAn = hre
                and I_IsFactionAIControlled moors
and RandomPercent < 60
                give_everything_to_faction hre moors true
                console_command kill_faction hre
                historic_event DESMUGHAL event/GXCA.bik
                      terminate_monitor
        end_monitor

;;;順攻灭明朝

        monitor_event FactionTurnEnd FactionType papal_states
               and not FactionIsLocal
               and I_SettlementOwner C-0101-b-BeiPing = papal_states
               and I_SettlementOwner C-0901-b-ChangAn = moors

               and I_IsFactionAIControlled moors
               and I_IsFactionAIControlled papal_states
               and I_NumberOfSettlements papal_states < 12
               and I_TurnNumber >= 32
               and RandomPercent < 50
               
                give_everything_to_faction papal_states moors true
                historic_event SHUNINVASION
                      terminate_monitor
        end_monitor

;;;江东镇投降满清

        monitor_event FactionTurnEnd FactionType portugal
                and not FactionIsLocal
                and I_TurnNumber >= 20
                and I_SettlementOwner C-0106-b-ChangLi = byzantium
                and I_IsFactionAIControlled byzantium
and RandomPercent < 50

                give_everything_to_faction portugal byzantium true
                console_command kill_faction portugal
                historic_event JIN_EREDE_EVENT
                      terminate_monitor
        end_monitor




;;;刘良佐投降满清

        monitor_event FactionTurnEnd FactionType hanhun_c
                and not FactionIsLocal
                and I_TurnNumber >= 30
                and I_SettlementOwner C-0704-b-ZhanChun = byzantium
                and I_IsFactionAIControlled byzantium
and RandomPercent < 50

                give_everything_to_faction hanhun_c byzantium true
                console_command kill_faction hanhun_c
                historic_event CHENGDISCO
                      terminate_monitor
        end_monitor

;;;刘泽清投降满清

        monitor_event FactionTurnEnd FactionType sulu
                and not FactionIsLocal
                and I_SettlementOwner C-0601-b-ChenLiu = byzantium
                and I_IsFactionAIControlled byzantium
and RandomPercent < 50

                and I_TurnNumber >= 30
                give_everything_to_faction sulu byzantium true
                console_command kill_faction sulu
                historic_event CHENGDIMIL
                      terminate_monitor
        end_monitor

;;;左梦庚投降满清

        monitor_event FactionTurnEnd FactionType scotland
                and not FactionIsLocal
                and I_IsFactionAIControlled byzantium
and RandomPercent < 50

                and I_SettlementOwner C-1302-b-JianYe = byzantium
                and I_TurnNumber >= 30
                give_everything_to_faction scotland byzantium true
                console_command kill_faction scotland
                historic_event ENGWAR
                      terminate_monitor
        end_monitor

;;;郑成功攻占台湾

        monitor_event FactionTurnEnd FactionType england
                and not FactionIsLocal
                and I_TurnNumber >= 80
                and I_SettlementOwner C-1310-b-JianAn = poland
                and I_SettlementOwner C-1608-b-MY-TaiWan = england
                and I_IsFactionAIControlled england

                give_everything_to_faction england poland true
                console_command kill_faction england
                historic_event UNZEN_ERUPT
                      terminate_monitor
        end_monitor



;;;李自成攻陷陕西

        monitor_event FactionTurnEnd FactionType hre
                and not FactionIsLocal
                and I_IsFactionAIControlled moors
                and I_SettlementOwner C-0901-b-ChangAn = moors
                and I_TurnNumber >= 32
                give_everything_to_faction hre moors true
                console_command kill_faction hre
                historic_event CHANGERELMOORS
                      terminate_monitor
        end_monitor

7,建立南明脚本
注:如果我不是史可法 (maratha)
几率小于50
我不是大明
大明城市小于等于1
回合大于24回合
北京不属于大明
满足上述条件将触发南明建立脚本
        monitor_event FactionTurnEnd FactionType maratha
                and not FactionIsLocal
                and RandomPercent < 50
                and I_IsFactionAIControlled papal_states
                and I_NumberOfSettlements papal_states >= 1
                and I_TurnNumber >= 24
                and not I_SettlementOwner C-0101-b-BeiPing = papal_states
                 give_everything_to_faction maratha papal_states true
                historic_event CHANGERELTURKS
                      terminate_monitor
        end_monitor



8.;-=====================迁都南京脚本介绍==========================================


;汉魂MOD网原创

declare_counter QIANDU;记录一个变量qiandu代码自己定义!

monitor_event PreFactionTurnStart FactionIsLocal
and I_LocalFaction papal_states 如果我是明朝
and I_TurnNumber >= 18 大于等于18个回合
and RandomPercent < 50 几率小于百分之50
and not I_SettlementOwner C-1302-b-JianYe = papal_states 南京不属于大明
and not I_SettlementOwner C-0701-b-XvChang = papal_states 开封不属于大明

        historic_event QIANDU true factions { papal_states, }

terminate_monitor
end_monitor
注:上面的代码的含义是如果国库金钱小于0元,那么每回合加20000元!
汉魂MOD网原创(www.hanhuns.com




本帖子中包含更多资源

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

x

精彩评论10

正序浏览
耀武王 发表于 2016-3-28 22:31:45 | 显示全部楼层
9.-=====================一片石战役==========================================
declare_counter RUGUAN

monitor_event FactionTurnStart FactionIsLocal
and I_IsFactionAIControlled moors

and I_SettlementOwner C-0101-b-BeiPing = moors
and RandomPercent < 40

spawn_army
faction moors


 楼主| 耀武王 发表于 2016-3-28 22:33:08 | 显示全部楼层
10.;;;;;;;;;;;;;;;;;;;;;;扬州之战;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;扬州之战;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
monitor_event FactionTurnStart FactionIsLocal
and I_IsFactionAIControlled byzantium
and I_SettlementOwner C-0101-b-BeiPing = byzantium
and I_SettlementOwner C-0402-b-BeiHai = byzantium
and I_SettlementOwner C-0504-b-PengCheng = byzantium

and not I_SettlementOwner C-0502-b-GuangLing = byzantium
                and RandomPercent < 30

spawn_army
                faction byzantium
                character        M-09-0012-Xm, named character, age 23, x 292, y 298, portrait Q21, label nanxia1
traits  LieZhuanzhengbai-1 1 , Jn1001 7 , Jn2000 1 , Jn3000 7 , Jn4000 7 , Jn5000 7 , jna1000 4 , jna2000 4 , JnA3000 2 , JnA4000 1 , JnA5000 1 , JnA6000 1 , JnB7000 6 , JnA8000 7 , JnA9000 8 , Jnxg4000 2 , Ch4000 4 , C3040JnJS-A 1 , C3150JnBC-A 1 , B2180JnQM-A 1
                unit                duoze                exp 7 armour 0 weapon_lvl 0
                unit                manzuzhengbaiqi        exp 6 armour 0 weapon_lvl 1
                unit                manzuzhengbaiqi        exp 5 armour 0 weapon_lvl 0
                unit                manzuzhengbaiqi        exp 4 armour 0 weapon_lvl 1
                unit                manzuzhengbaiqi        exp 3 armour 0 weapon_lvl 0
                unit                manzuzhengbaiqi        exp 3 armour 0 weapon_lvl 0
                unit                manzuzhengbaiqi        exp 3 armour 0 weapon_lvl 0
                unit                manzuzhengbaiqi                exp 5 armour 0 weapon_lvl 1
                unit                manzuzhengbaiqi                exp 4 armour 0 weapon_lvl 0
                unit                manzuxiangbai        exp 4 armour 0 weapon_lvl 0
                unit                manzuxiangbai        exp 3 armour 0 weapon_lvl 0
                unit                manzuxiangbai        exp 3 armour 0 weapon_lvl 0
                unit                manzuxiangbai        exp 3 armour 0 weapon_lvl 0
                unit                manzuxiangbai        exp 3 armour 0 weapon_lvl 0
                unit                manzuxiangbai        exp 3 armour 0 weapon_lvl 0
                unit                manzuxiangbai        exp 3 armour 0 weapon_lvl 0
                unit                Qing_cannon        exp 3 armour 0 weapon_lvl 0
                unit                Qing_cannon        exp 3 armour 0 weapon_lvl 0
                unit                Qing_cannon        exp 3 armour 0 weapon_lvl 0
                unit                Qing_cannon        exp 3 armour 0 weapon_lvl 0
        end

                spawn_army
                faction byzantium
                character        M-17-0015-Xm, named character, age 23, x 293, y 298, portrait Q6, label nanxia2
traits  LieZhuanzhenghong-1 1,Jn1001 6 , Jn2000 3 , Jn3000 6 , Jn4000 6 , Jn5000 5 , jna1000 4 , jna2000 4 , JnA3000 3 , JnA4000 1 , JnA5000 1 , JnA6000 1 , JnB7000 2 , JnA8000 5 , JnA9000 8 , Jnxg4000 2 , B2120JnDB-A 1
                unit                generalmanzuzhenghong                exp 7 armour 0 weapon_lvl 0
                unit                manzuzhenghong        exp 6 armour 0 weapon_lvl 1
                unit                manzuzhenghong        exp 5 armour 0 weapon_lvl 0
                unit                manzuzhenghong        exp 4 armour 0 weapon_lvl 1
                unit                manzuzhenghong        exp 3 armour 0 weapon_lvl 0
                unit                manzuzhenghong        exp 3 armour 0 weapon_lvl 0
                unit                manzuzhenghong        exp 3 armour 0 weapon_lvl 0
                unit                manzuzhenghong                exp 5 armour 0 weapon_lvl 1
                unit                manzuzhenghong                exp 4 armour 0 weapon_lvl 0
                unit                hanjunzhongdao        exp 4 armour 0 weapon_lvl 0
                unit                hanjunzhongdao        exp 3 armour 0 weapon_lvl 0
                unit                hanjunzhongdao        exp 3 armour 0 weapon_lvl 0
                unit                hanjunzhongdao        exp 3 armour 0 weapon_lvl 0
                unit                hanjunzhongdao        exp 3 armour 0 weapon_lvl 0
                unit                hanhunzhongqiang        exp 3 armour 0 weapon_lvl 0
                unit                hanhunzhongqiang        exp 3 armour 0 weapon_lvl 0
                unit                hanhunzhongqiang        exp 3 armour 0 weapon_lvl 0
                unit                Qing_cannon        exp 3 armour 0 weapon_lvl 0
                unit                Qing_cannon        exp 3 armour 0 weapon_lvl 0
        end

                spawn_army
                faction byzantium
                character        J-1704-YianPu, named character, age 23, x 294, y 298, portrait Q16, label nanxia3
traits  LieZhuanxianglan-1 1 , Jn1001 8 , Jn2000 1 , Jn3000 6 , Jn4000 6 , Jn5000 6 , jna1000 4 , jna2000 4 , JnA3000 2 , JnA4000 1 , JnA5000 1 , JnA6000 1 , JnB7000 6 , JnA8000 7 , JnA9000 8 , Jnxg4000 2 , Ch4000 4 , C3040JnJS-A 1 , C3150JnBC-A 1 , B2180JnQM-A 1

                unit                manzujingruilan                exp 7 armour 0 weapon_lvl 0
                unit                manzuxianglan        exp 6 armour 0 weapon_lvl 1
                unit                manzuxianglan        exp 5 armour 0 weapon_lvl 0
                unit                manzuxianglan        exp 4 armour 0 weapon_lvl 1
                unit                manzuxianglan        exp 3 armour 0 weapon_lvl 0
                unit                manzubatulu        exp 3 armour 0 weapon_lvl 0
                unit                manzubatulu        exp 3 armour 0 weapon_lvl 0
                unit                manzubatulu                exp 5 armour 0 weapon_lvl 1
                unit                hanjunzhongdao        exp 4 armour 0 weapon_lvl 0
                unit                hanjunzhongdao        exp 3 armour 0 weapon_lvl 0
                unit                hanjunzhongdao        exp 3 armour 0 weapon_lvl 0
                unit                hanjunzhongdao        exp 3 armour 0 weapon_lvl 0
                unit                hanjunzhongdao        exp 3 armour 0 weapon_lvl 0
                unit                hanhunzhongqiang        exp 3 armour 0 weapon_lvl 0
                unit                hanhunzhongqiang        exp 3 armour 0 weapon_lvl 0
                unit                hanhunzhongqiang        exp 3 armour 0 weapon_lvl 0
                unit                Qing_cannon        exp 3 armour 0 weapon_lvl 0
                unit                Qing_cannon        exp 3 armour 0 weapon_lvl 0
        end

                spawn_army
                faction byzantium
                character        M-07-0304-Xm, named character, age 53, x 295, y 298,, label nanxia4
traits  Jn1001 6 , Jn2000 3 , Jn3000 5 , Jn4000 6 , Jn5000 5 , jna1000 4 , jna2000 4 , JnA3000 3 , JnA4000 1 , JnA5000 1 , JnA6000 1 , JnB7000 4 , JnA8000 5 , JnA9000 8 , Jnxg4000 2 , B2120JnDB-A 1

                unit                generallvyingzhongjiajun                exp 7 armour 0 weapon_lvl 0
                unit                Qshenjiying                                exp 6 armour 0 weapon_lvl 1
                unit                Qshenjiying                                exp 5 armour 0 weapon_lvl 0
                unit                hanjunzhonggong                                exp 4 armour 0 weapon_lvl 1
                unit                hanjunzhonggong                                exp 3 armour 0 weapon_lvl 0
                unit                hanjunzhonggong                                exp 3 armour 0 weapon_lvl 0
                unit                hanjunzhonggong                                exp 3 armour 0 weapon_lvl 0
                unit                lvyingjingruidao                                                exp 5 armour 0 weapon_lvl 1
                unit                lvyingjingruidao                                                exp 4 armour 0 weapon_lvl 0
                unit                lvyingjingruidao                                exp 4 armour 0 weapon_lvl 0
                unit                hanjunzhongdao                                exp 3 armour 0 weapon_lvl 0
                unit                hanjunzhongdao                                exp 3 armour 0 weapon_lvl 0
                unit                hanjunzhongdao                                exp 3 armour 0 weapon_lvl 0
                unit                lvyingjingruiqiang                                        exp 3 armour 0 weapon_lvl 0
                unit                lvyingjingruiqiang                                        exp 3 armour 0 weapon_lvl 0
                unit                hanhunzhongqiang                                        exp 3 armour 0 weapon_lvl 0
                unit                Qing_cannon                                        exp 3 armour 0 weapon_lvl 0
                unit                Qing_cannon                                        exp 3 armour 0 weapon_lvl 0
        end

                spawn_army
                faction byzantium
                character        M-09-0011-Xm, named character, age 23, x 296, y 298, portrait Z4, label nanxia5
traits  LieZhuanzhenghuang-1 1 , Jn1001 7 , Jn2000 4 , Jn3000 6 , Jn4000 7 , Jn5000 6 , JnA1000 4 , jna2000 4 , Ch4000 4 , JnA3000 2 , JnA4000 1 , JnA5000 3 , JnA6000 3 , JnB7000 9 , JnA8000 8 , JnA9000 8 , Jnxg4000 2 , C3080JnQJ-A 1 , B2030JnZS-A 2 , C3150JnBC-A 2 ,
                unit                aobai                exp 7 armour 0 weapon_lvl 0
                unit                manzuyongqiang        exp 6 armour 0 weapon_lvl 1
                unit                manzuyongqiang        exp 5 armour 0 weapon_lvl 0
                unit                manzuyongqiang        exp 4 armour 0 weapon_lvl 1
                unit                manzuyongqiang        exp 3 armour 0 weapon_lvl 0
                unit                hanjunzhongdao        exp 3 armour 0 weapon_lvl 0
                unit                hanjunzhongdao        exp 3 armour 0 weapon_lvl 0
                unit                lvyingjingruiqibing                exp 5 armour 0 weapon_lvl 1
                unit                lvyingjingruiqibing                exp 4 armour 0 weapon_lvl 0
                unit                manzubatulu        exp 4 armour 0 weapon_lvl 0
                unit                manzubatulu        exp 3 armour 0 weapon_lvl 0
                unit                manzujingrui        exp 3 armour 0 weapon_lvl 0
                unit                manzujingrui        exp 3 armour 0 weapon_lvl 0
                unit                Qing_cannon        exp 3 armour 0 weapon_lvl 0
                unit                Qing_cannon        exp 3 armour 0 weapon_lvl 0
                unit                manzujingruiqigong        exp 3 armour 0 weapon_lvl 0
                unit                manzujingruiqigong        exp 3 armour 0 weapon_lvl 0
        end


        historic_event TIANSHUI_EARTHQUAKE

        set_faction_standing byzantium papal_states -1.0
        set_counter NANXIA 1

        if not I_SettlementOwner C-0502-b-GuangLing = byzantium
        siege_settlement nanxia1, C-0502-b-GuangLing, maintain

        end_if
        if not I_SettlementOwner C-0503-b-HuaiLing = byzantium
        siege_settlement nanxia2, C-0503-b-HuaiLing, maintain

        end_if
        if not I_SettlementOwner C-0704-b-ZhanChun = byzantium
        siege_settlement nanxia3, C-0704-b-ZhanChun, maintain
        end_if
        if not I_SettlementOwner C-0307-b-LiYang = byzantium
        siege_settlement nanxia4, C-0307-b-LiYang, maintain
        end_if
        if not I_SettlementOwner C-1302-b-JianYe = byzantium
        siege_settlement nanxia5, C-1302-b-JianYe, maintain
        end_if


terminate_monitor
end_monitor

 楼主| 耀武王 发表于 2016-3-28 22:35:46 | 显示全部楼层
11.武将来投脚本

注:代码的含义是如果福州是我的,
郑成功(poland)城市小于1,就是没城市了,
且我是明朝,那么将发生郑成功投效明朝事件,
将在下个回合吧郑成功刷到明朝势力中去

;;;;;;;;;;;;;;;;;;;;;;武将来投;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;郑成功
monitor_event SettlementTurnStart SettlementName C-1310-b-JianAn
and SettlementIsLocal
and I_NumberOfSettlements poland < 1
and not I_CharacterExists M-18-0445-Xm
and I_LocalFaction papal_states


        if I_LocalFaction papal_states
        spawn_army
                faction papal_states

character        M-18-0445-Xm, named character, age 30 x 323, y 146, portrait C1, hero_ability The_Flower_of_Chivalry
traits  LieZhuan-Xiang-12 1 , Jn1001 7 , Jn2000 6 , Jn3000 8 , Jn4000 9 , Jn5000 8 , jna1000 4 , jna2000 4 , JnA3000 2 , JnA4000 3 , JnA5000 3 , JnA6000 2 , JnA7000 7 , JnA8000 9 , JnA9000 6 , Jnxg3000 3 , Ch2000 2 , YXJN-BW 1 , A1090JnLJ-A 3 , C3160JnAY-A 1 , C3150JnBC-A 2

        unit                zhengchenggong                                exp 1 armour 0 weapon_lvl 0
        unit                hanhuntierenjun                                exp 1 armour 0 weapon_lvl 0
        unit                hanhuntierenjun                                exp 1 armour 0 weapon_lvl 0
        unit                hanhuntierenjun                                exp 1 armour 0 weapon_lvl 0
        unit                hanhuntierenjun                                exp 1 armour 0 weapon_lvl 0
        unit                hanhuntierenjun                                exp 1 armour 0 weapon_lvl 0
        unit                hanhuntierenjun                                exp 1 armour 0 weapon_lvl 0
        unit                hanhuntierenjun                                exp 1 armour 0 weapon_lvl 0
        unit                hanhuntierenjun                                exp 1 armour 0 weapon_lvl 0
        unit                hanhuntierenjun                                exp 1 armour 0 weapon_lvl 0

        end
historic_event wujiangchengnian factions { papal_states, }
end_if

terminate_monitor
end_monitor


 楼主| bismack 发表于 2016-4-2 12:58:13 | 显示全部楼层
有没有松山战役的脚本?
xwjwd241 发表于 2016-5-8 22:39:14 来自手机 | 显示全部楼层
能说说科举剧本么
q3411539 发表于 2017-5-9 20:05:18 | 显示全部楼层
好东西,收下了
2517890157 发表于 2017-7-9 14:25:35 来自手机 | 显示全部楼层
dddddddddddd
asd1035743424 发表于 2017-12-11 09:09:15 | 显示全部楼层
66666666666666
liaochenglong 发表于 2022-4-10 18:36:28 | 显示全部楼层
在哪个文件夹里面改啊
您需要登录后才可以回帖 登录 | 注册账号

本版积分规则

1关注

13粉丝

134帖子

推荐阅读更多+
论坛大神更多+
广告位

信息推荐

更多+

最新信息

更多+

关注我们:游戏社区

官方微信

官方支付宝

售后时间:

13:00-23:00

公司地址:上海市嘉定区银翔路655号B区1068室

运营中心:成都市锦江区东华正街42号

邮编:610066 Email:395137554@qq.com

Copyright   ©2015-2016  汉魂王爵会员站  Powered by©Hanhuns  技术支持:汉魂网络