本帖最后由 陈大帅帅帅哥 于 2016-7-11 13:07 编辑
……你根本没有用我的那个脚本,请把我发的脚本插入到main前
另外,删掉你的物品美化脚本的class Window_Skill下面的self.contents.draw_text(x + 232, y, 48, 32, skill.sp_cost.to_s, 2)
self.contents.draw_text(x + 232, y, 48, 32, skill.sp_cost.to_s, 2)
改成self.contents.draw_text(x + 166, y, 112, 32, "PP:" + @actor.skills_pp[@actor.skills.index(skill.id)].to_s + "/" + skill.sp_cost.to_s, 2)
self.contents.draw_text(x + 166, y, 112, 32, "PP:" + @actor.skills_pp[@actor.skills.index(skill.id)].to_s + "/" + skill.sp_cost.to_s, 2)
|