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

Project1

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

[已经解决] 如何在地图上显示自己的血条.经验条.敌人血条以及金钱

 关闭 [复制链接]

Lv1.梦旅人

梦石
0
星屑
120
在线时间
0 小时
注册时间
2009-10-14
帖子
1
跳转到指定楼层
1
发表于 2009-10-14 20:05:34 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
本帖最后由 凌辰 于 2009-10-14 21:45 编辑

本人做的是ARPG的..请问.
如何在地图上显示自己的血条.经验条.敌人血条以及金钱什么的
谢谢了...

请在标题处写明问题,此乃版规,谢谢合作。
凌辰留

Lv1.梦旅人

梦石
0
星屑
50
在线时间
0 小时
注册时间
2009-7-24
帖子
160
2
发表于 2009-10-14 20:13:32 | 只看该作者
看置顶贴。或者用搜索。顺便说一句。你沙发违反版规。
回复 支持 反对

使用道具 举报

Lv1.梦旅人

随缘

梦石
0
星屑
55
在线时间
12 小时
注册时间
2007-12-16
帖子
671
3
发表于 2009-10-14 23:30:27 | 只看该作者
显示自己的血条.经验条.敌人血条以及金钱

这脚本有请用 搜索
或者 搜索 “ARPG”
论坛:
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
1 小时
注册时间
2007-8-18
帖子
701
4
发表于 2009-10-15 13:15:37 | 只看该作者
笑天下谁是敌手,问千年谁主沉浮
回复 支持 反对

使用道具 举报

Lv1.梦旅人

~琉璃の雪~<

梦石
0
星屑
49
在线时间
36 小时
注册时间
2008-11-6
帖子
3678
5
发表于 2009-10-15 15:01:56 | 只看该作者
  1. #==============================================================================
  2. # ■ Scene_Map
  3. #------------------------------------------------------------------------------
  4. #  处理地图画面的类。
  5. #==============================================================================
  6. class Scene_Map
  7.   #--------------------------------------------------------------------------
  8.   # ● 在这里控制脚本的属性
  9.   #--------------------------------------------------------------------------
  10.   SWITCH_ID = 1 #在这里设定开关的编号……
  11.   $center_hud = false #这里决定是否将HUD(状态窗口)居中显示……
  12.   #--------------------------------------------------------------------------
  13.   # ● 初始化别名
  14.   #--------------------------------------------------------------------------
  15.   alias raz_hud_main main
  16.   alias raz_hud_update update
  17.   #--------------------------------------------------------------------------
  18.   # ● 主进程
  19.   #--------------------------------------------------------------------------  
  20.   def main
  21.     @size = $game_party.actors.size
  22.     raz_hud_main
  23.     @hud_window.dispose
  24.     for i in 0...$game_party.actors.size
  25.       @hud_dummy[i].dispose
  26.     end #for
  27.   end #def
  28.   #--------------------------------------------------------------------------
  29.   # ● 刷新画面
  30.   #--------------------------------------------------------------------------  
  31.   def update
  32.     if @size != $game_party.actors.size
  33.       @hud_window.refresh
  34.       show_window
  35.     end #if
  36.     if @hud != true
  37.       main_window
  38.     end #if
  39.     turn_hud_on_off
  40.     @hud_window.update
  41.     raz_hud_update
  42.   end #def
  43.   #--------------------------------------------------------------------------
  44.   # ● 与状态窗口的显示行为相关的语句
  45.   #--------------------------------------------------------------------------   
  46.   def show_window
  47.     @size = $game_party.actors.size
  48.     for i in 0..3
  49.       @hud_dummy[i].visible = ($game_party.actors[i] != nil)
  50.     end #for
  51.   end #def
  52.   #--------------------------------------------------------------------------
  53.   # ● 与状态窗口的创建相关的语句
  54.   #--------------------------------------------------------------------------     
  55.   def main_window
  56.     @opacity = 0
  57.     @hud_dummy = []
  58.     for i in 0...4
  59.       y = $game_party.actors.size - 1
  60.       x = 240 - (y * 80)
  61.       if $center_hud == true
  62.         @hud_dummy[i] = Window_Base.new(160 * i + x, 372,160, 108)
  63.       else
  64.         @hud_dummy[i] = Window_Base.new(160 * i, 372,160, 108)
  65.       end #if
  66.       @hud_dummy[i].opacity = @opacity
  67.       @hud_dummy[i].visible = false
  68.     end #for
  69.     @hud_window = Window_HUD.new
  70.     for i in 0...$game_party.actors.size
  71.       @hud_dummy[i].visible = $game_party.actors[i] != nil
  72.     end #for
  73.     @hud = true
  74.   end #def
  75.   #--------------------------------------------------------------------------
  76.   # ● 与状态窗口的开关相关的语句
  77.   #--------------------------------------------------------------------------   
  78.   def turn_hud_on_off
  79.    if $game_switches[SWITCH_ID] == false #关掉开关
  80.     @hud_window.visible = false
  81.       for i in 0...$game_party.actors.size
  82.         @hud_dummy[i].visible = false
  83.       end #for
  84.     end #if
  85.    if $game_switches[SWITCH_ID] == true #打开开关
  86.      @hud_window.visible = true
  87.      for i in 0...$game_party.actors.size
  88.        @hud_dummy[i].visible = true
  89.      end #for
  90.    end #if
  91.   end #def
  92. end #class
  93. #==============================================================================
  94. # ■ Window_HUD
  95. #------------------------------------------------------------------------------
  96. #  地图画面中显示的状态窗口。
  97. #==============================================================================
  98. class Window_HUD < Window_Base
  99.   #--------------------------------------------------------------------------
  100.   # ● 初始化对象
  101.   #--------------------------------------------------------------------------
  102.   def initialize
  103.     super(0, 0, 800, 600)
  104.     self.contents = Bitmap.new(width - 32, height - 32)
  105.     self.opacity = 0
  106.     for i in 0...$game_party.actors.size
  107.       actor = $game_party.actors[i]
  108.       eval("@old_hp#{i+1} = actor.hp; @old_sp#{i+1} = actor.sp; @old_exp#{i+1} = actor.now_exp")
  109.     end #for
  110.     refresh
  111.   end #def
  112.   #--------------------------------------------------------------------------
  113.   # ● 刷新
  114.   #--------------------------------------------------------------------------
  115.   def refresh
  116.     self.contents.clear
  117.     for i in 0...$game_party.actors.size
  118.       a = $game_party.actors.size - 1
  119.       actor = $game_party.actors[i]
  120.       if $center_hud == true
  121.        x = (i * 160 + 25) + (240 - (a * 80))
  122.       else
  123.        x = i * 160 + 25
  124.       end #if
  125.       self.contents.font.size = 21
  126.       draw_actor_graphic(actor, x - 15, 445)
  127.       self.contents.font.color = normal_color
  128.       self.contents.draw_text(x, 360, 100, 32, actor.name)
  129.       width = 200
  130.       height = 6
  131.       draw_slant_bar(x + 8, 396, actor.hp, actor.maxhp, width, height, Color.new(150, 0, 0), Color.new(155, 155, 60))
  132.       draw_slant_bar(x + 8, 416, actor.sp, actor.maxsp, width, height, Color.new(0, 0, 150), Color.new(60, 155, 155))
  133.       unless actor.level == 99
  134.         draw_slant_bar(x + 8, 436, actor.now_exp, actor.next_exp, width, height, Color.new(0, 150, 0), Color.new(60, 255, 60))
  135.       else
  136.         draw_slant_bar(x + 8, 436, 1, 1, width = 200, height = 6, Color.new(0, 150, 0), Color.new(60, 255, 60))
  137.       end #unless
  138.       self.contents.font.size = 16
  139.       draw_actor_state(actor, x + 125, 360)
  140.       self.contents.font.color = normal_color
  141.       self.contents.font.bold = true
  142.       self.contents.font.color = actor.hp == 0 ? knockout_color : actor.hp <= actor.maxhp / 4 ? crisis_color : normal_color
  143.       self.contents.draw_text(x + 60, 382, 100, 32, "#{actor.hp}/#{actor.maxhp}", 1)
  144.       self.contents.font.color = actor.sp == 0 ? crisis_color : actor.sp <= actor.maxsp / 4 ? crisis_color : normal_color
  145.       self.contents.draw_text(x + 60, 402, 100, 32, "#{actor.sp}/#{actor.maxsp}", 1)
  146.       self.contents.draw_text(x + 25, 422, 100, 32, "#{(actor.now_exp.to_f / actor.next_exp.to_f * 100).truncate}"+"%", 1)
  147.       self.contents.font.color = system_color
  148.       self.contents.font.size = 20
  149.       self.contents.font.bold = false
  150.       self.contents.draw_text(x, 384, 50, 32, "精") #HP的显示文本,可修改。
  151.       self.contents.draw_text(x, 404, 50, 32, "神") #SP的显示文本,可修改。
  152.       self.contents.draw_text(x, 424, 50, 32, "经") #EXP的显示文本,可修改。
  153.     end #for
  154.   end #def
  155.   #--------------------------------------------------------------------------
  156.   # ● 刷新画面
  157.   #--------------------------------------------------------------------------
  158.   def update
  159.     super
  160.     for i in 0...$game_party.actors.size
  161.       actor = $game_party.actors[i]
  162.       if (eval("@old_hp#{i+1}") != actor.hp or eval("@old_sp#{i+1}") != actor.sp or
  163.         eval("@old_exp#{i+1}") != actor.now_exp)
  164.         refresh
  165.         eval("@old_hp#{i+1} = actor.hp; @old_sp#{i+1} = actor.sp; @old_exp#{i+1} = actor.now_exp")
  166.       end #if
  167.     end #super
  168.   end #def
  169. end #class
  170. #==============================================================================
  171. # ■ Window_Base
  172. #------------------------------------------------------------------------------
  173. #  游戏中全部窗口的超级类。
  174. #==============================================================================
  175. class Window_Base < Window
  176.   #状态条的绘制
  177.   def draw_slant_bar(x, y, min, max, width = 152, height = 6,
  178.       bar_color = Color.new(150, 0, 0, 255), end_color = Color.new(255, 255, 60, 255))
  179.     for i in 0..height
  180.       self.contents.fill_rect(x + i, y + height - i, width + 1, 1, Color.new(50, 50, 50, 255))
  181.     end #for
  182.     for i in 1..(height - 1)
  183.       r = 100 * (height - i) / height + 0 * i / height
  184.       g = 100 * (height - i) / height + 0 * i / height
  185.       b = 100 * (height - i) / height + 0 * i / height
  186.       a = 255 * (height - i) / height + 255 * i / height
  187.       self.contents.fill_rect(x + i, y + height - i, width, 1, Color.new(r, b, g, a))
  188.     end #for
  189.     for i in 1..( (min / max.to_f) * width - 1)
  190.       for j in 1..(height - 1)
  191.         r = bar_color.red * (width - i) / width + end_color.red * i / width
  192.         g = bar_color.green * (width - i) / width + end_color.green * i / width
  193.         b = bar_color.blue * (width - i) / width + end_color.blue * i / width
  194.         a = bar_color.alpha * (width - i) / width + end_color.alpha * i / width
  195.         self.contents.fill_rect(x + i + j, y + height - j, 1, 1, Color.new(r, g, b, a))
  196.       end #for
  197.     end #for
  198.   end #def
  199. end #class
  200. #==============================================================================
  201. # ■ Game_Actor
  202. #------------------------------------------------------------------------------
  203. #  处理角色的类。本类在 Game_Actors 类 ($game_actors)
  204. # 的内部使用、Game_Party 类请参考 ($game_party) 。
  205. #==============================================================================
  206. class Game_Actor
  207.   #获取当前EXP
  208.   def now_exp
  209.     return @exp - @exp_list[@level]
  210.   end #def
  211.   #获取下一级需要EXP的数值
  212.   def next_exp
  213.     return @exp_list[@level+1] > 0 ? @exp_list[@level+1] - @exp_list[@level] : 0
  214.   end #def
  215. end
复制代码
~现在开始自绘头像~
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-12-30 03:39

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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