嗯,手残党福音来咯! 所有肉搏战自动适配正确姿势,上去直接无脑榨,不用按姿势了
1、提供服务的场景修改
找到 28_Functions_Chcg_Events.rb 文件
搜索 if $game_player.actor.stat["SexEventInput"] == temp_tar_slot && passive != true #win
修改为 if passive != true #win
这样在提供服务的场景,不用按任何热键,直接生效正确姿势效果。
2、肉搏战斗场景修改
找到 150_Game_Character_BattleSexSystem.rb 文件
搜索 def player_sex_mode_input #overwrite
然后往下数5行,找到 @sex_input_a_count +=1
在这行下面添加如下三行:
@sex_input_s_count +=1
@sex_input_d_count +=1
@sex_input_f_count +=1
这样,在战斗场景只用无脑按A就行了,全姿势发力!

1、提供服务的场景修改
找到 28_Functions_Chcg_Events.rb 文件
搜索 if $game_player.actor.stat["SexEventInput"] == temp_tar_slot && passive != true #win
修改为 if passive != true #win
这样在提供服务的场景,不用按任何热键,直接生效正确姿势效果。
2、肉搏战斗场景修改
找到 150_Game_Character_BattleSexSystem.rb 文件
搜索 def player_sex_mode_input #overwrite
然后往下数5行,找到 @sex_input_a_count +=1
在这行下面添加如下三行:
@sex_input_s_count +=1
@sex_input_d_count +=1
@sex_input_f_count +=1
这样,在战斗场景只用无脑按A就行了,全姿势发力!