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

Project1

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

[已经解决] 请教存挡格的问题

[复制链接]

Lv3.寻梦者

梦石
0
星屑
1388
在线时间
343 小时
注册时间
2016-7-17
帖子
132
跳转到指定楼层
1
发表于 2020-8-7 14:06:07 | 只看该作者 回帖奖励 |正序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
想让第一格存檔设定为自动存挡,暗色不能储存的,大佬们有什么好办法吗
自动存挡方面的脚本已经搞定了,只剩让挡案格不给存挡就做完了,但是那边的脚本好奇怪,不会改。

Lv5.捕梦者

梦石
0
星屑
26264
在线时间
5355 小时
注册时间
2016-3-8
帖子
1655
2
发表于 2020-8-7 14:27:05 | 只看该作者
本帖最后由 alexncf125 于 2020-8-7 21:37 编辑

未测试
RUBY 代码复制
  1. class Scene_Save < Scene_File
  2.  
  3.   alias old_on_savefile_ok on_savefile_ok
  4.   def on_savefile_ok
  5.     if @index == 0
  6.       Sound.play_buzzer
  7.       return
  8.     else
  9.       old_on_savefile_ok
  10.     end
  11.   end
  12.  
  13.   alias old_first_savefile_index first_savefile_index first_savefile_index
  14.   def first_savefile_index
  15.     old_first_savefile_index
  16.     DataManager.last_savefile_index == 0 ? 1 : DataManager.last_savefile_index
  17.   end
  18.  
  19.   alias old_cursor_down cursor_down
  20.   def cursor_down(wrap)
  21.     old_cursor_down(wrap)
  22.     if @index == 0
  23.       @index = 1
  24.     end
  25.     ensure_cursor_visible
  26.   end
  27.  
  28.   alias old_cursor_up cursor_up
  29.   def cursor_up(wrap)
  30.     old_cursor_up(wrap)
  31.     if @index == 0
  32.       @index = 1
  33.     end
  34.     ensure_cursor_visible
  35.   end
  36.  
  37.   alias old_cursor_pagedown cursor_pagedown
  38.   def cursor_pagedown
  39.     old_cursor_pagedown
  40.     if @index == 0
  41.       @index = 1
  42.     end
  43.   end
  44.  
  45.   alias old_cursor_pageup cursor_pageup
  46.   def cursor_pageup
  47.     old_cursor_pageup
  48.     if @index == 0
  49.       @index = 1
  50.     end
  51.   end
  52. end

看楼主旧帖,好像对用脚本绘制方面颇有研究,能帮我看看这个么
https://rpg.blue/thread-482783-1-1.html

点评

谢谢,ok了  发表于 2020-8-7 23:05
更新了一下  发表于 2020-8-7 21:37
用了鼠标脚本跟截图存挡脚本  发表于 2020-8-7 21:08
不过如果你用了鼠标脚本就能选得到,你有没有用鼠标脚本?  发表于 2020-8-7 16:54
???,加了这段脚本后,在存档画面中应该是会变得不能选第1格的喔  发表于 2020-8-7 16:00
回复 支持 1 反对 0

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-11-16 06:35

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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