设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 3437|回复: 1
打印 上一主题 下一主题

[已经解决] 怎样增加一个经验值槽?

[复制链接]

Lv1.梦旅人

梦石
0
星屑
50
在线时间
32 小时
注册时间
2012-5-3
帖子
25
跳转到指定楼层
1
发表于 2012-5-10 16:29:03 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
本帖最后由 LoHill 于 2012-5-10 16:44 编辑

图书馆里的脚本看不懂……范例只能打开运行不了 {:4_119:}

Lv1.梦旅人

梦石
0
星屑
48
在线时间
543 小时
注册时间
2011-6-25
帖子
441
2
发表于 2012-5-10 16:34:58 | 只看该作者

脚本脚本脚本脚本

本帖最后由 poiuy12348609 于 2012-5-10 16:41 编辑

给你吧!

#===================================
#  ●設定區域
#===================================

module WD
module Exp_Gauge
  #EXP條COLOR,請修改成TEXT文字
  EXP_GAUGE_COLOR1 = 6
  EXP_GAUGE_COLOR2 = 14

  #EXP條文字顯示設定,true為打開,false為關閉
  EXP_TEXT_DISPLAY = false
end
end

#==============================================================================
# ■ Window_Base
#------------------------------------------------------------------------------
#  ゲーム中の全てのウィンドウのスーパークラスです。
#==============================================================================

class Window_Base < Window
  include WD::Exp_Gauge

  def exp_gauge_color1;   text_color(EXP_GAUGE_COLOR1);  end;    # EXP ゲージ 1
  def exp_gauge_color2;   text_color(EXP_GAUGE_COLOR2);  end;    # EXP ゲージ 2

  #--------------------------------------------------------------------------
  # ● シンプルなステータスの描画
  #--------------------------------------------------------------------------
  def draw_actor_simple_status(actor, x, y)
    draw_actor_name(actor, x, y + line_height * 0.5)
    draw_actor_level(actor, x, y - line_height * 0.5)
    draw_actor_icons(actor, x, y + line_height * 1.5)
    draw_actor_class(actor, x + 120, y - line_height * 0.5)
    draw_actor_hp(actor, x + 120, y + line_height * 0.5)
    draw_actor_mp(actor, x + 120, y + line_height * 1.5)
    draw_actor_exp(actor, x, y + line_height * 2.5, EXP_TEXT_DISPLAY)
  end
  #--------------------------------------------------------------------------
  # ● EXP の描画
  #--------------------------------------------------------------------------
  def draw_actor_exp(actor, x, y, display = true, width = 244)
    this_level = actor.exp - actor.past_level_exp
    next_level = actor.next_level_exp - actor.past_level_exp
    draw_gauge(x, y, width, actor.exp_rate, exp_gauge_color1, exp_gauge_color2)
    change_color(system_color)
    if display
      draw_text(x, y, 30, line_height, "EXP")
      draw_current_and_max_values(x, y, width, this_level, next_level, mp_color(actor), normal_color)
    end
  end
end

class Game_Actor < Game_Battler
  #--------------------------------------------------------------------------
  # ● EXP の割合を取得
  #--------------------------------------------------------------------------
  def exp_rate
    this_level = exp - past_level_exp
    next_level = next_level_exp - past_level_exp
    next_level > 0 ? this_level.to_f / next_level : 0
  end
  #--------------------------------------------------------------------------
  # ● 前のレベルの経験値を取得
  #--------------------------------------------------------------------------
  def past_level_exp
    @level > 1 ? exp_for_level(@level - 1) : 0
  end
end

点评

感谢:D!  发表于 2012-5-10 16:44

评分

参与人数 1星屑 +200 梦石 +2 收起 理由
zhixin1997 + 200 + 2 认可答案

查看全部评分



------------------------------------------我只放我看中的遊戲-----------------------------------------------
臉書:http://www.facebook.com/brian.lee.52643821
  音速君的論壇
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-23 07:02

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表