赞 | 4 |
VIP | 0 |
好人卡 | 0 |
积分 | 77 |
经验 | 15725 |
最后登录 | 2024-11-8 |
在线时间 | 1334 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7749
- 在线时间
- 1334 小时
- 注册时间
- 2015-8-15
- 帖子
- 750
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 金芒芒 于 2024-7-2 13:03 编辑
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"
@command1_window = Window_Chuzhan_Command.new(300, [s1, s2, s3, s4, s5])
@command1_window.index = @chuzhan_index
class Scene_zhenwei
#--------------------------------------------------------------------------
# ● 初始化对像
# zhenwei_index : 命令光标的初期位置
#--------------------------------------------------------------------------
def initialize(zhenwei_index = 0)
@zhenwei_index = zhenwei_index
end
#--------------------------------------------------------------------------
# ● 主处理
#--------------------------------------------------------------------------
def main
# 生成命令窗口
s1 = "阵位1"
s2 = "阵位2"
s3 = "阵位3"
s4 = "阵位4"
s5 = "阵位5"
s6 = "阵位6"
s7 = "阵位7"
s8 = "阵位8"
s9 = "阵位9"
s10 = "阵位10"
@command_window = Window_Zhenwei_Command.new(300, [s1, s2, s3, s4, s5,s6,s7,s8,s9,s10])
@command_window.index = @zhenwei_index |
|