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

Project1

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

[已经解决] 状态菜单重排 修改为自定义图

 关闭 [复制链接]

Lv1.梦旅人

伸手爱好者

梦石
0
星屑
50
在线时间
8 小时
注册时间
2009-3-28
帖子
527
跳转到指定楼层
1
发表于 2009-8-28 13:50:37 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
本帖最后由 悠悠炸弹 于 2009-8-28 14:02 编辑

这是 状态菜单重排加图
本来是在菜单中是以战斗图来显示的.现在我想把它改成自定义的头像.
要怎么改动呢?谢谢
  1. #==============================================================================
  2. # ■ 本脚本源自www.66rpg.com,转载与使用请保留此信息
  3. #==============================================================================

  4. #==============================================================================
  5. # by Claimh, http://www.k3.dion.ne.jp/~claimh/
  6. #==============================================================================
  7. class Window_Base
  8.   def draw_battler_graphic(actor, x, y)
  9.     battler=RPG::Cache.battler(actor.battler_name, actor.battler_hue)
  10.     w = battler.width
  11.     h = battler.height
  12.     self.contents.blt(x-w/2, y-h, battler, Rect.new(0, 0, w,h),150)
  13.   end
  14. end
  15. class Window_MenuStatus < Window_Selectable
  16.   def refresh
  17.     self.contents.clear
  18.     @item_max = $game_party.actors.size
  19.     for i in 0...$game_party.actors.size
  20.       x = 64
  21.       y = i * 116
  22.       actor = $game_party.actors[i]
  23.       if (i % 2) == 0
  24.         draw_battler_graphic(actor, x - 5, y + 180 - i * 20)
  25.         draw_actor_name(actor, x+50, y)
  26.         draw_actor_class(actor, x + 144+50, y)
  27.         draw_actor_level(actor, x+50, y + 32)
  28.         draw_actor_state(actor, x + 90+40, y + 32)
  29.         draw_actor_exp(actor, x+50, y + 64)
  30.         draw_actor_hp(actor, x + 236, y + 32)
  31.         draw_actor_sp(actor, x + 236, y + 64)
  32.       else
  33.         draw_battler_graphic(actor, x +315, y + 180 - i * 20)
  34.         draw_actor_name(actor, x-60, y)
  35.         draw_actor_class(actor, x +144-60, y)
  36.         draw_actor_level(actor, x-60, y + 32)
  37.         draw_actor_state(actor, x + 90-60, y + 32)
  38.         draw_actor_exp(actor, x-60, y + 64)
  39.         draw_actor_hp(actor, x +196-60, y + 32)
  40.         draw_actor_sp(actor, x +196-60, y + 64)
  41.       end
  42.     end
  43.   end
  44. end
复制代码

Lv3.寻梦者

小柯的徒弟

梦石
0
星屑
1535
在线时间
1157 小时
注册时间
2008-5-24
帖子
3085

贵宾

2
发表于 2009-8-28 13:58:22 | 只看该作者
  1. class Window_Base
  2.   Name = {1=>"囧懒散",2=>"囧小柯"}
  3.   alias lv_draw_battler_graphic draw_battler_graphic
  4.   def draw_battler_graphic(actor, x, y)
  5.     if Name[actor.id]==nil
  6.       lv_draw_battler_graphic(actor, x, y)
  7.       return
  8.     end
  9.     battler=RPG::Cache.picture(Name[actor.id])
  10.     w = battler.width
  11.     h = battler.height
  12.     self.contents.blt(x-w/2, y-h, battler, Rect.new(0, 0, w,h),150)
  13.   end
  14. end
复制代码
插到原脚本下面。
(1=>"囧懒散",1是角色编号,"囧懒散"是图片名.如果没有指定的话,会用成原来的战斗图)
回复 支持 反对

使用道具 举报

Lv1.梦旅人

伸手爱好者

梦石
0
星屑
50
在线时间
8 小时
注册时间
2009-3-28
帖子
527
3
 楼主| 发表于 2009-8-28 14:01:35 | 只看该作者
强人啊.这么快就弄好了...........
谢谢「旅」前辈.
咱在咱的设计素描书上看到有“柳笛”这个名字,恩~到底有怎样的关系呢?
[img]http://rpg.blue/data/attachment/forum/month_0910/09102318341719b34b80b536d4.gif[/img]
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2025-1-10 11:40

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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