Project1

标题: 对话框的快进 [打印本页]

作者: ltcjietan    时间: 2011-11-5 01:55
标题: 对话框的快进
只找到一个 做AVG用XP写的  我试着用VX硬套了一下 果然不行 脚本那里不对称 能不能麻烦写一个VX的dsu_plus_rewardpost_czw
作者: 皮卡星    时间: 2011-11-5 04:12
类似AVG的对话么,要半身图还是无半身图的……
表示没有半身图的很多
如果是专门制作AVG,而且要半身图的话
我有范例:
http://115.com/file/e6rwyyag#
PS:
请问LZ是这位么……
http://girlsoul.5d6d.com/thread-11077-1-1.html

作者: ltcjietan    时间: 2011-11-5 13:09
表示要无半身的  另外 真心表示不是那位  头像的话 碰巧吧
作者: 429259591    时间: 2011-11-5 13:22
于是沉影不器大神的对话框加强被无视了么?~~~
作者: ltcjietan    时间: 2011-11-5 17:34
于是其实那个看过了 于是没有那段快速显示的脚本
作者: 我妻由乃    时间: 2011-11-5 23:41
本帖最后由 我妻由乃 于 2011-11-5 23:42 编辑
  1. module Input
  2.   class << self
  3.     alias gasai_yuno_tr? trigger?
  4.     def trigger?(*arg)
  5.       unless @force_return.nil?
  6.         return @force_return.delete(arg[0]) if @force_return[arg[0]] != nil
  7.       end
  8.       gasai_yuno_tr?(*arg)
  9.     end
  10.     def force_return(k,v)
  11.       if @force_return.nil?
  12.         @force_return = Hash.new
  13.       end
  14.       @force_return[k] = v
  15.     end
  16.   end
  17. end
  18. class Window_Message
  19.   #------------User Defined-----------
  20.   @@快进等待帧数 = 3
  21.   #-----------------------------------
  22.   alias gasai_yuno_ip input_pause
  23.   def input_pause
  24.     if @skip_count.nil?
  25.       @skip_count = @@快进等待帧数
  26.     end
  27.     @skip_count -= 1 if Input.press?(Input::CTRL)
  28.     if @skip_count <= 0
  29.       @skip_count = @@快进等待帧数
  30.       Input.force_return(Input::C,true)
  31.       Input.force_return(Input::B,true)
  32.     end
  33.     if Input.trigger?(Input::B) or Input.trigger?(Input::C)
  34.       @skip_count = @@快进等待帧数
  35.     end
  36.     gasai_yuno_ip
  37.   end
  38.   alias gasai_yuno_usf update_show_fast
  39.   def update_show_fast
  40.     gasai_yuno_usf
  41.     if Input.press?(Input::CTRL)
  42.       @show_fast = true
  43.       @wait_count = 0
  44.     end
  45.   end
  46. end
复制代码

作者: ltcjietan    时间: 2011-11-6 02:08
于是好吧  真的很感谢




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1