Project1
标题:
XP里怎么实现让我方角色自动攻击??
[打印本页]
作者:
a125232340
时间:
2012-8-19 10:26
标题:
XP里怎么实现让我方角色自动攻击??
XP里怎么实现让我方角色自动攻击??
用什么脚本
也就是说进入战斗后,敌我双方都是自动作战。不需要自己来控制
貌似VX里面有这个功能,但是不会用,现在专研XP
请大侠 解答。。。。。。。。。
作者:
1594829357
时间:
2012-8-19 11:52
强制行动
作者:
a125232340
时间:
2012-8-19 12:54
1594829357 发表于 2012-8-19 11:52
强制行动
有没有具体的方法
作者:
1594829357
时间:
2012-8-19 14:56
a125232340 发表于 2012-8-19 12:54
有没有具体的方法
第三页-强制行动-设置-OK
作者:
a125232340
时间:
2012-8-19 21:16
我爱是木有找到,XP
你给我上几个图把。。实在感谢了
作者:
灯笼菜刀王
时间:
2012-8-21 05:49
在数据库 敌人队伍设置的事件窗口里使用 强制行动 就可以了
作者:
orochi2k
时间:
2012-8-21 08:35
直接上个强制攻击的状态
作者:
hys111111
时间:
2012-8-22 10:03
class Scene_Battle
alias hys_auto_battle_main main
alias hys_auto_battle_update_phase3_basic_command update_phase3_basic_command
alias hys_auto_ballte_update_phase3_enemy_select update_phase3_enemy_select
def main
@_auto_battle_switch = 13 # 13号开关打开时,自动攻击
hys_auto_battle_main
end
def update_phase3_basic_command
if $game_switches[@_auto_battle_switch]
@active_battler.current_action.kind = 0
@active_battler.current_action.basic = 0
# 开始选择敌人
start_enemy_select
else
hys_auto_battle_update_phase3_basic_command
end
end
def update_phase3_enemy_select
if $game_switches[@_auto_battle_switch]
@active_battler.current_action.target_index = rand($game_troop.enemies.size)
# 选择敌人结束
end_enemy_select
# 显示特技窗口中的情况下
if @skill_window != nil
# 结束特技选择
end_skill_select
end
# 显示物品窗口的情况下
if @item_window != nil
# 结束物品选择
end_item_select
end
# 转到下一位角色的指令输入
phase3_next_actor
else
hys_auto_ballte_update_phase3_enemy_select
end
end
end
复制代码
试试看
作者:
DBZ-1
时间:
2012-8-22 11:16
每个队伍都强制普攻
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1