赞 | 0 |
VIP | 0 |
好人卡 | 3 |
积分 | 1 |
经验 | 14100 |
最后登录 | 2024-6-29 |
在线时间 | 393 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 105
- 在线时间
- 393 小时
- 注册时间
- 2008-11-7
- 帖子
- 353
|
本帖最后由 枪胜贤者 于 2011-6-24 10:47 编辑
菜单里描绘的脚本德行罪恶的脚本- #==============================================================================
- # ■ Window_Shane
- #------------------------------------------------------------------------------
- # 菜单画面显示各种度的窗口。
- #==============================================================================
- class Window_Shane < Window_Base
- #--------------------------------------------------------------------------
- # ● 初始化对像
- #--------------------------------------------------------------------------
- def initialize
- super(0, 0, 160, 96)
- self.contents = Bitmap.new(width - 32, height - 32)
- refresh
- end
- #--------------------------------------------------------------------------
- # ● 刷新
- #--------------------------------------------------------------------------
- def refresh
- self.contents.clear
- self.contents.font.color = system_color
- self.contents.draw_text(4, 30, 120, 32, "德行") #描绘声望字样
- self.contents.draw_text(4, 0, 120, 32, "罪恶")
- self.contents.font.color = normal_color
- self.contents.draw_text(4,2,120,32, $game_variables[3].to_s,2)#描绘3号
- self.contents.draw_text(4,30,120,32, $game_variables[2].to_s,2) #描绘2号变量,可以自己改~~
- end
- end
复制代码 变量2和3是描绘德行与善恶值的
|
评分
-
查看全部评分
|