Project1
标题:
怎么把sp变成pp
[打印本页]
作者:
rock吧
时间:
2013-8-1 12:30
标题:
怎么把sp变成pp
我想让技能拥有使用次数,不显示sp了。我下了一个pp的系统,但在战斗,状态栏中还是能显示sp,怎么把他们也删掉?
最好给个范例{:2_270:}
作者:
end55rpg
时间:
2013-8-1 16:43
我把sp看做变成sb了。。。。。。
你搜脚本的”s“全部改成p?
作者:
hys111111
时间:
2013-8-1 21:05
class Window_Skill < Window_Selectable
def draw_item(index)
skill = @data[index]
if @actor.skill_can_use?(skill.id)
self.contents.font.color = normal_color
else
self.contents.font.color = disabled_color
end
x = 4 + index % 2 * (288 + 32)
y = index / 2 * 32
rect = Rect.new(x, y, self.width / @column_max - 32, 32)
self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
bitmap = RPG::Cache.icon(skill.icon_name)
opacity = self.contents.font.color == normal_color ? 255 : 128
self.contents.blt(x, y + 4, bitmap, Rect.new(0, 0, 24, 24), opacity)
self.contents.draw_text(x + 28, y, 204, 32, skill.name, 0)
self.contents.draw_text(x + 232, y, 48, 32, PP值.to_s, 2)
end
end
复制代码
你的PP值是怎么样定义的?
作者:
rock吧
时间:
2013-8-2 16:25
pp就是技能次数,每个技能都有,但人物没有。
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1