Project1
标题:
求脚本帝写“调查提示”脚本
[打印本页]
作者:
只是逛逛
时间:
2013-6-25 14:44
标题:
求脚本帝写“调查提示”脚本
之前提过这个问题,不过秒沉了- -
要求:
通过在事件中插入脚本“调查提示1”或“调查提示2” ,在画面的左下方显示一个对话框,内容为“调查”
当用户在事件中插入脚本“调查提示1”时,判断方式为:当主角面向该事件时,在画面的左下方显示一个对话框,内容为“调查”
当用户在事件中插入脚本“调查提示2”时,判断方式为:当主角的xy坐标=该事件xy坐标时,在画面的左下方显示一个对话框,内容为“调查”
附上我按教程写了1%的脚本
#===============================================================================
# 调查提示脚本
#===============================================================================
module Window_Survey_Preparation
Expression = /调查类型(\d+)/
end
class Window_Survey < Window_Base
#=============================================================================
# 初始化
#=============================================================================
def initialize
super(484,371, 60, 45)
self.opacity = 180
self.padding = 2
self.padding_bottom = 0
refresh
end
#=============================================================================
# 刷新画面
#=============================================================================
def update
super
refresh
end
#=============================================================================
# 更新内容
#=============================================================================
def refresh
self.contents.clear
self.contents.font.size = 16
self.contents.draw_text(0,0,self.contents.width + 8,self.contents.height + 8,"调查",1)
end
end
复制代码
越快越好
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1