赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 495 |
最后登录 | 2014-9-9 |
在线时间 | 13 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 13 小时
- 注册时间
- 2012-12-6
- 帖子
- 20
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
软件的脚本是什么语言?JAVA?
还有就是我想设置战斗是随机敌人数量,怎么弄? 是不是改变下面的代码?- def command_301
- return if $game_party.in_battle
- if @params[0] == 0 # 直接指定
- troop_id = @params[1]
- elsif @params[0] == 1 # 变量指定
- troop_id = $game_variables[@params[1]]
- else # 地图指定的敌群
- troop_id = $game_player.make_encounter_troop_id
- end
- if $data_troops[troop_id]
- BattleManager.setup(troop_id, @params[2], @params[3])
- BattleManager.event_proc = Proc.new {|n| @branch[@indent] = n }
- $game_player.make_encounter_count
- SceneManager.call(Scene_Battle)
- end
- Fiber.yield
- end
复制代码 |
|