赞 | 7 |
VIP | 20 |
好人卡 | 0 |
积分 | 16 |
经验 | 11472 |
最后登录 | 2024-7-10 |
在线时间 | 526 小时 |
Lv3.寻梦者 宛若
- 梦石
- 0
- 星屑
- 1568
- 在线时间
- 526 小时
- 注册时间
- 2007-8-19
- 帖子
- 1493
|
- class Game_Party
- attr :battle_count,true
- alias ini initialize
- def initialize
- @battle_count = 0
- ini
- end
- end
- class Scene_Battle
- alias m main
- def main
- $game_party.battle_count += 1
- m
- end
- end
- class Window_Steps < Window_Base
- def refresh
- self.contents.clear
- self.contents.font.color = system_color
- self.contents.draw_text(4, 0, 120, 32, "战斗次数")
- self.contents.font.color = normal_color
- self.contents.draw_text(4, 32, 120, 32, $game_party.battle_count.to_s, 2)
- end
- end
复制代码 如果想判定战斗次数可以条件分歧 $game_party.battle_count >= X
|
|