赞 | 0 |
VIP | 3 |
好人卡 | 0 |
积分 | 1 |
经验 | 2670 |
最后登录 | 2023-3-21 |
在线时间 | 39 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 60
- 在线时间
- 39 小时
- 注册时间
- 2008-9-25
- 帖子
- 294
|
- if @new_atk != nil
- self.contents.font.color = system_color
- self.contents.draw_text(160, 50, 40, 30, "→", 1)
- self.contents.font.color = normal_color
- self.contents.draw_text(200, 50, 36, 30, @new_atk.to_s, 2)
- end
- if @new_pdef != nil
- self.contents.font.color = system_color
- self.contents.draw_text(160, 75, 40, 30, "→", 1)
- self.contents.font.color = normal_color
- self.contents.draw_text(200, 75, 36, 30, @new_pdef.to_s, 2)
- end
- if @new_mdef != nil
- self.contents.font.color = system_color
- self.contents.draw_text(160, 100, 40, 30, "→", 1)
- self.contents.font.color = normal_color
- self.contents.draw_text(200, 100, 36, 30, @new_mdef.to_s, 2)
- end
- if @new_str != nil
- self.contents.font.color = system_color
- self.contents.draw_text(160, 125, 40, 30, "→", 1)
- self.contents.font.color = normal_color
- self.contents.draw_text(200, 125, 36, 30, @new_str.to_s, 2)
- end
- if @new_dex != nil
- self.contents.font.color = system_color
- self.contents.draw_text(160, 150, 40, 30, "→", 1)
- self.contents.font.color = normal_color
- self.contents.draw_text(200, 150, 36, 30, @new_dex.to_s, 2)
- end
- if @new_agi != nil
- self.contents.font.color = system_color
- self.contents.draw_text(160, 175, 40, 30, "→", 1)
- self.contents.font.color = normal_color
- self.contents.draw_text(200, 175, 36, 30, @new_agi.to_s, 2)
- end
- if @new_int != nil
- self.contents.font.color = system_color
- self.contents.draw_text(160, 200, 40, 30, "→", 1)
- self.contents.font.color = normal_color
- self.contents.draw_text(200, 200, 36, 30, @new_int.to_s, 2)
- end
- end
复制代码 |
评分
-
查看全部评分
|