赞 | 0 |
VIP | 10 |
好人卡 | 49 |
积分 | 10 |
经验 | 22958 |
最后登录 | 2020-8-1 |
在线时间 | 2161 小时 |
Lv3.寻梦者 酱油的
- 梦石
- 0
- 星屑
- 1020
- 在线时间
- 2161 小时
- 注册时间
- 2007-12-22
- 帖子
- 3271
|
不,這是腳本本來就有的bug,你的version還沒有fixed。我只是指出來而已。因爲腳本沒有對正負附加值作出判斷,所有的附加值都當作附加值處理。請看:
if @armor.agi_plus!=0#敏捷
x=0
y+=1
text=$data_system.words.agi+" + "[email protected]_plus.to_s
self.contents.font.color = text_color(6)#颜色脚本
self.contents.font.size=14
self.contents.draw_text(x, y*15+5, text.size*6, 14, text, 0)
end
這是我的version:
if @armor.agi_plus!=0#敏捷
x=0
y+=1
anti_agi_plus = [email protected]_plus
if @armor.agi_plus>0#敏捷
text=$data_system.words.agi+" +"[email protected]_plus.to_s
end
if @armor.agi_plus<0#敏捷
text=$data_system.words.agi+" -"+anti_agi_plus.to_s
end
self.contents.font.color = normal_color
self.contents.font.size=@d_s
self.contents.draw_text(x, y*@d_s+5, text.size*6, 14, text, 0)
end |
|