赞 | 1 |
VIP | 220 |
好人卡 | 25 |
积分 | 7 |
经验 | 51477 |
最后登录 | 2013-1-12 |
在线时间 | 943 小时 |
Lv2.观梦者 花开堪折直须折
- 梦石
- 0
- 星屑
- 676
- 在线时间
- 943 小时
- 注册时间
- 2010-7-17
- 帖子
- 4963
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
…………直接甩脚本好了
虽然很简单,但各位大大一定要慷慨解囊啊喵~~> <咱穷得要命了……- #============================================================================
- # 〇 开关/变量被改变时的提示
- # ——By.冰舞蝶恋
- #----------------------------------------------------------------------------
- # 备注:用法就不用说了吧!很简单的一个脚本,自己看设定部分更改就行了。
- # 咱还处于菜鸟阶级……所以,请勿吐槽!
- #============================================================================
- #-以下是设定部分-----------------------------------
- $NS = 1 # 当此开关开启时,变量开关改变时不作提示。
- # 注意:此开关本身的开启和关闭也将不做提示。
- #-详情请看注释部分---------------------------------
- class Game_Switches
- #--------------------------------------------------------------------------
- # ● 设置开关
- # switch_id : 开关 ID
- # value : ON (true) / OFF (false)
- #--------------------------------------------------------------------------
- def []=(switch_id, value)
- if switch_id <= 5000
- @data[switch_id] = value
- if $game_switches[switch_id] == true
- a = "开启"
- else
- a = "关闭"
- end
- if $game_switches[$NS] == false
- if switch_id != $NS
- $game_message.texts.push("#{$data_system.switches[switch_id]}被#{a}了!")
- end
- end
- end
- end
- end
- class Game_Variables
- #--------------------------------------------------------------------------
- # ● 设置变量
- # variable_id : 变量 ID
- # value : 变量的值
- #--------------------------------------------------------------------------
- def []=(variable_id, value)
- if variable_id <= 5000
- @data[variable_id] = value
- if $game_switches[$NS] == false
- $game_message.texts.push("#{$data_system.variables[variable_id]}被改变了!")
- $game_message.texts.push("#{$data_system.variables[variable_id]}现在是#{$game_variables[variable_id]}!")
- end
- end
- end
- end
复制代码 好吧,附两张截图:
嗯哼~ |
评分
-
查看全部评分
|