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
  1. class Window_Skill < Window_Selectable
  2.   def draw_item(index)
  3.     skill = @data[index]
  4.     if @actor.skill_can_use?(skill.id)
  5.       self.contents.font.color = normal_color
  6.     else
  7.       self.contents.font.color = disabled_color
  8.     end
  9.     x = 4 + index % 2 * (288 + 32)
  10.     y = index / 2 * 32
  11.     rect = Rect.new(x, y, self.width / @column_max - 32, 32)
  12.     self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
  13.     bitmap = RPG::Cache.icon(skill.icon_name)
  14.     opacity = self.contents.font.color == normal_color ? 255 : 128
  15.     self.contents.blt(x, y + 4, bitmap, Rect.new(0, 0, 24, 24), opacity)
  16.     self.contents.draw_text(x + 28, y, 204, 32, skill.name, 0)
  17.     self.contents.draw_text(x + 232, y, 48, 32, PP值.to_s, 2)
  18.   end
  19. end
复制代码
你的PP值是怎么样定义的?
作者: rock吧    时间: 2013-8-2 16:25
pp就是技能次数,每个技能都有,但人物没有。




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1