赞 | 38 |
VIP | 2420 |
好人卡 | 100 |
积分 | 33 |
经验 | 75384 |
最后登录 | 2024-7-7 |
在线时间 | 3619 小时 |
Lv3.寻梦者 (暗夜天使) 名侦探小柯
- 梦石
- 0
- 星屑
- 3299
- 在线时间
- 3619 小时
- 注册时间
- 2006-9-6
- 帖子
- 37400
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 越前リョーマ 于 2012-1-19 19:41 编辑
该脚本是我请非法用户给我写的(非法用户就是lim吧?),
可能别人也想要,
我就顺便帖这吧。
[LINE]1,#dddddd[/LINE]
如果要显示变量1的话,那:
$variables_id = 1
如果要显示50号图表的话,那:
$icon_index = 50
- #------------------------------------------------------------------------
- # 本脚本来自于66RPG 转载请著名 非法用户【编写】
- #------------------------------------------------------------------------
- # 设定要显示的变量号
- $variables_id = 1
-
- # 设置图标显示号
- $icon_index = 2
- #------------------------------------------------------------------------
- # 新建窗口
- class Window_Variables < Window_Base
- # 初始化
- def initialize
- # 创建大小
- super(416,360,128,56)
- # 获取图标编号
- @icon = 0
- # 获取变量编号
- @variable = 0
- # 刷新
- refresh
- # 初始化结束
- end
- # 刷新
- def refresh
- # 在图表与变量都有变化的情况下
- if @icon != $icon_index or @variable != $game_variables[$variables_id]
- # 清楚内容
- self.contents.clear
- # 描绘图表
- draw_icon($icon_index,4,0,true)
- # 描绘变量,偏右
- self.contents.draw_text(32,0,64,24,$game_variables[$variables_id].to_s,2)
- # 带入变量
- @icon = $icon_index
- @variable = $game_variables[$variables_id]
- # if 结束
- end
- # 刷新结束
- end
- # class 结束
- end
- # 地图生成窗口
- class Scene_Map < Scene_Base
- # 生成窗口
- alias new_start start
- def start
- new_start
- @varia_window = Window_Variables.new
- end
- # 刷新窗口
- alias new_update update
- def update
- new_update
- @varia_window.refresh
- end
- # 释放窗口
- alias new_terminate terminate
- def terminate
- @varia_window.dispose
- new_terminate
- end
- # class 结束
- end
复制代码 [LINE]1,#dddddd[/LINE]
PS。如果发布的话VIP要加给非法用户…… |
|