赞 | 4 |
VIP | 0 |
好人卡 | 0 |
积分 | 26 |
经验 | 25090 |
最后登录 | 2020-3-26 |
在线时间 | 896 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 2605
- 在线时间
- 896 小时
- 注册时间
- 2011-4-30
- 帖子
- 131
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
让两个脚本互不干扰,也就是让MOG计时器具有正数和变速功能(时间条从左往右加)
多元化:- #==============================================================================
- # ■ 事件計時器多元化控制 Diversiform Timer Control
- #-----------------------------------------------------------------------------
- # 作者:TERENCE (龙皇)
- # 本類別的實例請參考 $game_system
- #==============================================================================
- class Game_System
- #--------------------------------------------------------------------------
- # ● 自定义设定
- #--------------------------------------------------------------------------
- Timer_Pause = 127 # 計時器暫停的開關編號
-
- Timer_CountUp = 128 # 計時器 "啟動" 正數 的開關編號
- Midway_CountUp = 129 # 計時器 "中途" 改變計數方式 的開關編號
-
- Count_speed = 129 # 計時器計算速度的變量編號
-
- #--------------------------------------------------------------------------
- # ● 更新畫面
- #--------------------------------------------------------------------------
- def update
- unless $game_switches[Timer_CountUp] #若要正數,使遊戲的10號開關為ON
- # 計時器減 1
- if @timer_working and @timer > 0*40
- if $game_switches[Timer_Pause] # 計時器是否暫停
- @timer -= 0
- else
- unless $game_switches[Midway_CountUp]
- if $game_variables[Count_speed]<=0
- @timer -= 1
- else
- @timer -= 1*$game_variables[Count_speed]
- end
- else
- if @timer_working and @timer < 5999*40
- if $game_variables[Count_speed]<=0
- @timer += 1
- else
- @timer += 1*$game_variables[Count_speed]
- end
- end
- end
- end
- end
- else
- # 計時器加 1
- if @timer_working and @timer < 5999*40
- if $game_switches[Timer_Pause] # 計時器是否暫停
- @timer += 0
- else
- unless $game_switches[Midway_CountUp]
- if $game_variables[Count_speed]<=0
- @timer += 1
- else
- @timer += 1*$game_variables[Count_speed]
- end
- else
- if @timer_working and @timer > 0*40
- if $game_variables[Count_speed]<=0
- @timer -= 1
- else
- @timer -= 1*$game_variables[Count_speed]
- end
- end
- end
- end
- end
- end
- end
- end
复制代码 MOG:
|
|