设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 1356|回复: 4
打印 上一主题 下一主题

[已经解决] 文章怎样可以让别的按键控制

[复制链接]

Lv1.梦旅人

梦石
0
星屑
80
在线时间
153 小时
注册时间
2012-8-22
帖子
41
跳转到指定楼层
1
发表于 2012-9-4 13:27:37 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
比如说文章显示中,按上显示上一个文章,按下显示下一个

Lv3.寻梦者

梦石
0
星屑
1117
在线时间
882 小时
注册时间
2012-6-28
帖子
1082
2
发表于 2012-9-4 16:48:25 | 只看该作者
本帖最后由 没是的人 于 2012-9-4 16:50 编辑

请善用搜索,搜索读书,读报系统
不追求华丽的商业素材;不依赖与自己运用能力不符的外挂脚本;不搞华而不实的无用噱头。
                    修改,使用最朴实的素材,融入自己的智慧做最好的游戏!
                                    点这里!暂不设加入门槛
         
                               我觉得我的优点是,会认真的画每一张地图。
回复

使用道具 举报

Lv3.寻梦者

虚空人形

梦石
0
星屑
4604
在线时间
2037 小时
注册时间
2011-8-11
帖子
3398

贵宾

3
发表于 2012-9-17 09:27:36 | 只看该作者
这个是否符合要求?
  1. #==============================================================================
  2. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  3. #==============================================================================


  4. class Interpreter
  5.   
  6.   BOOK_READING = 1 # 默认打开1开关后进入读书系统
  7.   
  8.   #--------------------------------------------------------------------------
  9.   # ● 显示文章
  10.   #--------------------------------------------------------------------------
  11.   def command_101
  12.     # 另外的文章已经设置过 message_text 的情况下
  13.     if $game_temp.message_text != nil
  14.       # 结束
  15.       return false
  16.     end
  17.     # 设置信息结束后待机和返回调用标志
  18.     @message_waiting = true
  19.     $game_temp.message_proc = Proc.new { @message_waiting = false }
  20.     # message_text 设置为 1 行
  21.     $game_temp.message_text = @list[@index].parameters[0] + "\n"
  22.     line_count = 1
  23.     # 循环
  24.     loop do
  25.       # 下一个事件指令为文章两行以上的情况
  26.       if $game_switches[BOOK_READING] and @list[@index+1].code == 101#阅读书刊报纸
  27.         unless $game_temp.in_battle
  28.           $scene.message_window.height = 320
  29.           $scene.message_window.contents = Bitmap.new($scene.message_window.width - 32, $scene.message_window.height - 32)
  30.           $scene.message_window.contents.font.size = 20
  31.           $game_temp.message_text += @list[@index+1].parameters[0] +"\n"
  32.           line_count+=1
  33.           @index+=1
  34.         end
  35.       end
  36.       if $game_switches[BOOK_READING]==false
  37.         unless $game_temp.in_battle
  38.           if $scene.message_window.height == 320
  39.             $scene.message_window.height = 160
  40.             $scene.message_window.contents = Bitmap.new($scene.message_window.width - 32, $scene.message_window.height - 32)
  41.             $scene.message_window.contents.font.size = 22
  42.           end
  43.         end
  44.       end
  45.       if @list[@index+1].code == 401
  46.         # message_text 添加到第 2 行以下
  47.         $game_temp.message_text += @list[@index+1].parameters[0] + "\n"
  48.         line_count += 1
  49.       # 事件指令不在文章两行以下的情况
  50.       else
  51.         # 下一个事件指令为显示选择项的情况下
  52.         if @list[@index+1].code == 102
  53.           # 如果选择项能收纳在画面里
  54.           if @list[@index+1].parameters[0].size <= 4 - line_count
  55.             # 推进索引
  56.             @index += 1
  57.             # 设置选择项
  58.             $game_temp.choice_start = line_count
  59.             setup_choices(@list[@index].parameters)
  60.           end
  61.         # 下一个事件指令为处理输入数值的情况下
  62.         elsif @list[@index+1].code == 103
  63.           # 如果数值输入窗口能收纳在画面里
  64.           if line_count < 4
  65.             # 推进索引
  66.             @index += 1
  67.             # 设置输入数值
  68.             $game_temp.num_input_start = line_count
  69.             $game_temp.num_input_variable_id = @list[@index].parameters[0]
  70.             $game_temp.num_input_digits_max = @list[@index].parameters[1]
  71.           end
  72.         end
  73.         # 继续
  74.         return true
  75.       end
  76.       # 推进索引
  77.       @index += 1
  78.     end
  79.   end
  80. end

  81. class Scene_Map
  82.   attr_accessor :message_window
  83. end

  84. #==============================================================================
  85. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  86. #==============================================================================
复制代码
回复

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
80
在线时间
153 小时
注册时间
2012-8-22
帖子
41
4
 楼主| 发表于 2012-9-19 17:56:05 | 只看该作者
hcm 发表于 2012-9-17 09:27
这个是否符合要求?

这个怎么用?
回复

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
251 小时
注册时间
2009-11-13
帖子
453
5
发表于 2012-9-19 21:35:31 | 只看该作者
先复制,然后在软件的脚本编辑器的main的前面插入一个空白页,然后粘贴在空白的这一页里。

另外召唤一位和你头像有渊源的前辈@fxwd

点评

呵呵。。前辈您比我注册的更早。。。  发表于 2012-9-20 20:43
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-6 20:25

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表