首页 XTG游戏攻略 正文

《骑马与砍杀》武器动作代码

今天,在boyzhanxun大大帖子的指引下,完成了以下这篇文章,在他帖子中他说看不懂那长串数字的规律,其实

header_items.py文件里写的非常非常清楚了,boyzhanxun大大绕了一大圈才达到目的,其实只要告诉我们以下内

小编温馨提醒:本站只提供游戏介绍,下载游戏推荐89游戏,89游戏提供真人恋爱/绅士游戏/3A单机游戏大全,点我立即前往》》》绅士游戏下载专区


容就行了

# Item capabilities:

itcf_thrust_onehanded 单手刺                         = 0x

itcf_overswing_onehanded 单手砍                      = 0x

itcf_slashright_onehanded 单手右砍                   = 0x

itcf_slashleft_onehanded 单手左砍                    = 0x

itcf_thrust_twohanded 双手刺                         = 0x

itcf_overswing_twohanded 双手砍                      = 0x

itcf_slashright_twohanded 双手右砍                   = 0x

itcf_slashleft_twohanded 双手左砍                    = 0x

itcf_thrust_polearm 长杆刺                           = 0x

itcf_overswing_polearm 长杆砍                        = 0x

itcf_slashright_polearm 长杆右砍                     = 0x

itcf_slashleft_polearm 长杆左砍                      = 0x

itcf_shoot_bow                                       = 0x

itcf_shoot_javelin                                   = 0x

itcf_shoot_crossbow                                  = 0x

itcf_throw_stone                                     = 0x

itcf_throw_knife                                     = 0x

itcf_throw_axe                                       = 0x

itcf_throw_javelin                                   = 0x

itcf_shoot_pistol                                    = 0x

itcf_shoot_musket                                    = 0x

itcf_shoot_mask                                      = 0xff000

itcf_horseback_thrust_onehanded 没用过               = 0x

itcf_horseback_overswing_right_onehanded 没用过      = 0x

itcf_horseback_overswing_left_onehanded 没用过       = 0x

itcf_horseback_slashright_onehanded 单手马上右砍     = 0x

itcf_horseback_slashleft_onehanded 单手马上左砍      = 0x

itcf_thrust_onehanded_lance 枪骑单手刺               = 0x

itcf_thrust_onehanded_lance_horseback 枪骑单手马上刺 = 0x

itcf_carry_mask                                      = 0xf

itcf_carry_sword_left_hip                            = 0x

itcf_carry_axe_left_hip                              = 0x

itcf_carry_dagger_front_left                         = 0x

itcf_carry_dagger_front_right                        = 0x

itcf_carry_quiver_front_right                        = 0x

itcf_carry_quiver_back_right                         = 0x

itcf_carry_quiver_right_vertical                     = 0x

itcf_carry_quiver_back                               = 0x

itcf_carry_revolver_right                            = 0x

itcf_carry_pistol_front_left                         = 0xa

itcf_carry_bowcase_left                              = 0xb

itcf_carry_axe_back                                  = 0x

itcf_carry_sword_back                                = 0x

itcf_carry_kite_shield                               = 0x

itcf_carry_round_shield                              = 0x

itcf_carry_buckler_left                              = 0x

itcf_carry_crossbow_back                             = 0x

itcf_carry_bow_back                                  = 0x

itcf_carry_spear                                     = 0x

itcf_carry_katana                                    = 0x

itcf_carry_wakizashi                                 = 0x

itcf_show_holster_when_drawn                         = 0x

itcf_reload_pistol                                   = 0x

itcf_reload_musket                                   = 0x

itcf_reload_mask                                     = 0xf

这部分是格挡

itcf_parry_forward_onehanded                         = 0x

itcf_parry_up_onehanded                              = 0x

itcf_parry_right_onehanded                           = 0x

itcf_parry_left_onehanded                            = 0x

itcf_parry_forward_twohanded                         = 0x

itcf_parry_up_twohanded                              = 0x

itcf_parry_right_twohanded                           = 0x

itcf_parry_left_twohanded                            = 0x

itcf_parry_forward_polearm                           = 0x

itcf_parry_up_polearm                                = 0x

itcf_parry_right_polearm                             = 0x

itcf_parry_left_polearm                              = 0x

itcf_force_64_bits *标注1                            = 0x

举例来说 这是一个长杆武器的动作代码

换成16进制:FD800D00

F,就是10进制的15,代表了它拥有长杆武器格挡的4个动作

D,就是10进制的13,代表了它拥有单手马上左砍 枪骑单手刺 枪骑单手马上刺

8,代表了它拥有单手马上右砍

D,代表了它拥有除了砍以外的长杆武器动作

如果您是资深玩家,现在来猜猜这把武器究竟是什么样的动作呢

答案就是:地面上,无盾牌时可以用长杆武器标准刺杀 左右砍,用盾牌时使用骑兵长矛标准刺杀,马上,即使用盾也

可以左右砍,因为是单手攻击动作,不受盾的影响,但是马上是没有长杆武器标准刺杀动作的,并且不用盾牌时可以格

挡很多动作是地面马上合并在一起的,竖砍这个动作,只要加了,地面马上都会有,想只能地面砍,马上不砍是做不到

的(起码我不会),刺杀也一样,为了保险起见,也为了好看,我这把武器用了3个刺杀动作,其实仅仅一个枪骑单手

刺,功能就足够了

*标注1:有很多非长杆武器有此代码,但我并不知道它的作用,求高人解答

附表:

单手武器: 破盾代码:

双手武器: 破盾代码:

长杆武器:(这个代码对盾牌有惩罚,也是默认的配置) 破盾代码:

长杆武器(不能配盾): 破盾代码:

弓:          破盾代码:

单/双手武器: 破盾代码:

弩:          破盾代码:

手枪:       破盾代码:

长杆火枪:  破盾代码: