Project1

标题: 求脚本帝写“调查提示”脚本 [打印本页]

作者: 只是逛逛    时间: 2013-6-25 14:44
标题: 求脚本帝写“调查提示”脚本
之前提过这个问题,不过秒沉了- -
要求:



附上我按教程写了1%的脚本
  1. #===============================================================================
  2. #                                 调查提示脚本
  3. #===============================================================================
  4. module Window_Survey_Preparation
  5.   Expression = /调查类型(\d+)/
  6. end

  7. class Window_Survey < Window_Base
  8.   #=============================================================================
  9.   #                                 初始化
  10.   #=============================================================================
  11.   def initialize
  12.     super(484,371, 60, 45)
  13.     self.opacity = 180
  14.     self.padding = 2
  15.     self.padding_bottom = 0
  16.     refresh
  17.   end
  18.   #=============================================================================
  19.   #                                刷新画面
  20.   #=============================================================================
  21.   def update
  22.     super
  23.     refresh
  24.   end
  25.   #=============================================================================
  26.   #                                更新内容
  27.   #=============================================================================
  28.   def refresh
  29.     self.contents.clear
  30.     self.contents.font.size = 16
  31.     self.contents.draw_text(0,0,self.contents.width + 8,self.contents.height + 8,"调查",1)
  32.   end
  33. end
复制代码
越快越好




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