赞 | 4 |
VIP | 0 |
好人卡 | 0 |
积分 | 78 |
经验 | 15725 |
最后登录 | 2024-11-9 |
在线时间 | 1335 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7754
- 在线时间
- 1335 小时
- 注册时间
- 2015-8-15
- 帖子
- 750
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 金芒芒 于 2024-6-23 13:48 编辑
class Scene_chuzhan
#--------------------------------------------------------------------------
# ● 初始化对像
# chuzhan_index : 命令光标的初期位置
#--------------------------------------------------------------------------
def initialize(chuzhan_index = 0)
@chuzhan_index = chuzhan_index
end
#--------------------------------------------------------------------------
# ● 主处理
#--------------------------------------------------------------------------
def main
# 生成命令窗口
s1 = "出战1"
s2 = "出战2"
s3 = "出战3"
s4 = "出战4"
s5 = "出战5"
@command_window = Window_Chuzhan_Command.new(300, [s1, s2, s3, s4, s5])
@command_window.index = @chuzhan_index
when 0 #
# 演奏确定 SE
$game_system.se_play($data_system.decision_se)
# 激活状态窗口
$scene = Scene_chuzhan.new-2 #s2 |
|