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

Project1

 找回密码
 注册会员
搜索

如何改变角色等级名称

查看数: 2571 | 评论数: 18 | 收藏 0
关灯 | 提示:支持键盘翻页<-左 右->
    组图打开中,请稍候......
发布时间: 2009-8-7 13:49

正文摘要:

本帖最后由 flzt5354 于 2009-8-7 15:56 编辑 就是LV1 LV2的 变自定义的 见习Lv1 ----Lv10(1-10级) 初级LV1----Lv10(11-20级) 像这样的 ---------------------------------------- ----------------------------- ...

回复

goahead 发表于 2009-9-14 09:16:10
提示: 作者被禁止或删除 内容自动屏蔽
flzt5354 发表于 2009-8-7 21:37:44
临时有事走开了~~来晚了~~~尽管如此,霜冻之狼的办法是简单的枚举,其实完全可以用哈希表######在下面填好你的等级与名称对应,应该看得懂~~~~
Custom_Words = {1=>"初级", 11=>"见习", 21=>"转正",           99 =>  ...
goahead 发表于 2009-8-7 16:28

额。。你这个是直接使用的?
我直接插入会出错- -
宇文暮 发表于 2009-8-7 17:37:36
提示: 作者被禁止或删除 内容自动屏蔽
goahead 发表于 2009-8-7 16:28:40
提示: 作者被禁止或删除 内容自动屏蔽
flzt5354 发表于 2009-8-7 15:52:35
谢谢了
flzt5354 发表于 2009-8-7 15:50:32
class Window_Base < Window
  def draw_actor_level(actor, x, y)
    text = ""
    lv = "0"
    case actor.level
    when 1..10
      text = "初级"
      lv = actor.level.to_s
    when 11..20
      text ...
后知后觉 发表于 2009-8-7 15:45



你距离成功又近了一大步了
80%了//
还是显示不全的问题- -
霜冻之狼 发表于 2009-8-7 15:50:17
终于改好了,我好笨~

class Window_Base < Window
def draw_actor_level(actor, x, y)
self.contents.font.color = system_color
if actor.level > 10
self.contents.draw_text(x, y, 70, 32, "初级Lv")
a = actor.level-10
self.contents.draw_text(x + 60, y, 24, 32, a.to_s, 2)
elsif actor.level > 0
self.contents.draw_text(x, y, 70, 32, "见习Lv")
self.contents.draw_text(x + 60, y, 24, 32, actor.level.to_s, 2)
end
self.contents.font.color = normal_color
end
end
后知后觉 发表于 2009-8-7 15:45:22
class Window_Base < Window
  def draw_actor_level(actor, x, y)
    text = ""
    lv = "0"
    case actor.level
    when 1..10
      text = "初级"
      lv = actor.level.to_s
    when 11..20
      text = "中级"
      lv = (actor.level % 10).to_s
    when 21..30
      text = "高级"
      lv = (actor.level % 20).to_s
    end
   
    self.contents.font.color = system_color
    self.contents.draw_text(x, y, 32, 32, text+"Lv:")
    self.contents.font.color = normal_color
    self.contents.draw_text(x + 32, y, 24, 32, lv, 2)
  end
end
flzt5354 发表于 2009-8-7 15:25:37
本帖最后由 flzt5354 于 2009-8-7 15:36 编辑

额.你新改的效果变成
1-10级显示见习LV1
就是说等级升级了名称不变
11后显示初级LV1
也是一样升级名称不再变化- -
..额,Q你没什么反应...
郁闷..临时会话说我版本过低..
明明是2009SP3了
拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

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

GMT+8, 2025-1-9 16:32

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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