赞 | 0 |
VIP | 1 |
好人卡 | 28 |
积分 | 10 |
经验 | 59980 |
最后登录 | 2024-10-19 |
在线时间 | 1685 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 951
- 在线时间
- 1685 小时
- 注册时间
- 2009-7-25
- 帖子
- 534
|
本帖最后由 烁灵 于 2011-3-27 22:15 编辑
回复 冰舞蝶恋 的帖子
解释器那里是这么写的
#--------------------------------------------------------------------------
# ● 显示文章
#--------------------------------------------------------------------------
def command_101
unless $game_message.busy
$game_message.face_name = @params[0]
$game_message.face_index = @params[1]
$game_message.background = @params[2]
$game_message.position = @params[3]
@index += 1
while @list[@index].code == 401 # 文章数据
$game_message.texts.push(@list[@index].parameters[0])
@index += 1
end
if @list[@index].code == 102 # 显示选择项
setup_choices(@list[@index].parameters)
elsif @list[@index].code == 103 # 处理数值输入
setup_num_input(@list[@index].parameters)
end
set_message_waiting # 消息待机状态
end
return false
end
试试看 |
评分
-
查看全部评分
|