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

Project1

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

[已经过期] 怪物图鉴系统出问题了~求教懂脚本的朋友

 关闭 [复制链接]

Lv1.梦旅人

梦石
0
星屑
70
在线时间
233 小时
注册时间
2011-4-25
帖子
148
跳转到指定楼层
1
发表于 2011-5-3 18:13:51 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
出现的问题为:GAME_Enemy 脚本下的第19行    @enemy_id = troop.members[@member_index].enemy_id

我的用怪物系统脚本为:
  1. #===================================================================
  2. #——————————————————————————————————————
  3. #魔物图鉴+介绍
  4. #
  5. #战斗终了时自动添加敌人进入图鉴(class Scene_Battle start_phase5 追加。

  6. #目前与各种战斗系统没有发现冲突)
  7. #不想加入图鉴的怪物设置其“不加入图鉴”属性有效度为A即可
  8. #图鉴完成度的表示功能追加
  9. #SHOW_COMPLETE_TYPE 的数值可以设定
  10. #当为1,显示现有个数/总数,当为2,显示完成百分比,当为3,全显示。
  11. #使用方法:$scene = Scene_MonsterBook.new
  12. #数据库中属性里面那些种族特效的位置,建议把默认的“对 不死”之类改成“不死”,

  13. #不然显示会很奇怪
  14. #由于雷达图的设计问题,只支持8项属性
  15. #默认种族特效处理属性中编号9到编号16,

  16. #如果你做了修改请自行改动380行左右的for i in 9..16这一句代码
  17. #显示各种信息位于630行左右,想不显示的话只要删除相应语句
  18. CHARA_INFO=[]#怪物的介绍,对应怪物id,空格为换行,

  19. #同时也会自动换行,没有写介绍的怪物会自动显示“无详细信息”
  20. CHARA_INFO[1] = "25仔兵兵"
  21. CHARA_INFO[2] = "怪物介绍2"
  22. CHARA_INFO[3] = "经常会袭击各种路过的生物"
  23. CHARA_INFO[4] = "25仔兵兵"
  24. CHARA_INFO[5] = "25仔兵兵"
  25. #没有信息测试,4号怪物
  26. #=============
  27. #雷达图相关处理部分
  28. #=============
  29. class Bitmap
  30. def draw_line(start_x, start_y, end_x, end_y, start_color, width = 1, end_color = start_color)
  31. distance = (start_x - end_x).abs + (start_y - end_y).abs
  32. if end_color == start_color
  33. for i in 1..distance
  34. x = (start_x + 1.0 * (end_x - start_x) * i / distance).to_i
  35. y = (start_y + 1.0 * (end_y - start_y) * i / distance).to_i
  36. if width == 1
  37. self.set_pixel(x, y, start_color)
  38. else
  39. self.fill_rect(x, y, width, width, start_color)
  40. end
  41. end
  42. else
  43. for i in 1..distance
  44. x = (start_x + 1.0 * (end_x - start_x) * i / distance).to_i
  45. y = (start_y + 1.0 * (end_y - start_y) * i / distance).to_i
  46. r = start_color.red * (distance-i)/distance + end_color.red * i/distance
  47. g = start_color.green * (distance-i)/distance + end_color.green * i/distance
  48. b = start_color.blue * (distance-i)/distance + end_color.blue * i/distance
  49. a = start_color.alpha * (distance-i)/distance + end_color.alpha * i/distance
  50. if width == 1
  51. self.set_pixel(x, y, Color.new(r, g, b, a))
  52. else
  53. self.fill_rect(x, y, width, width, Color.new(r, g, b, a))
  54. end
  55. end
  56. end
  57. end
  58. end
  59. #=============
  60. # Graphic_Def_Elem
  61. #=============
  62. class Window_Base
  63. FONT_SIZE = 18
  64. WORD_ELEMENT_GUARD = "属性有效度"
  65. NUMBER_OF_ELEMENTS = 8
  66. ELEMENT_ORDER = [1,3,8,5,2,4,7,6]
  67. GRAPH_SCALINE_COLOR = Color.new(255, 255, 255, 128)
  68. GRAPH_SCALINE_COLOR_SHADOW = Color.new( 0, 0, 0, 192)
  69. GRAPH_LINE_COLOR = Color.new(255, 255, 64, 255)
  70. GRAPH_LINE_COLOR_MINUS = Color.new( 64, 255, 255, 255)
  71. GRAPH_LINE_COLOR_PLUS = Color.new(255, 64, 64, 255)
  72. end

  73. #——————————————————————————————————————
  74. module Enemy_Book_Config
  75. DROP_ITEM_NEED_ANALYZE = true #显示物品
  76. EVA_NAME = "回避修正"              #回避修正的名称(因为数据库中没有定义)
  77. SHOW_COMPLETE_TYPE = 3         #图鉴完成率表示方法
  78. end
  79. class Data_MonsterBook
  80. #--------------------------------------------------------------------------
  81. # ● 图鉴用ID設定
  82. #--------------------------------------------------------------------------
  83. def enemy_book_id_set
  84.    data = [0]
  85.    data[1] = 2
  86.    data[2] = 1
  87.    data[3] = 15
  88.    data[4] = 25
  89.    data[5] = 18
  90.    data[6] = 30
  91.    return data
  92. end
  93. end
  94. class Game_Temp
  95. attr_accessor :enemy_book_data
  96. alias temp_enemy_book_data_initialize initialize
  97. def initialize
  98.    temp_enemy_book_data_initialize
  99.    @enemy_book_data = Data_MonsterBook.new
  100. end
  101. end

  102. class Game_Party
  103. #==============================================
  104. #--------------------------------------------------------------------------
  105.   # ● 公開インスタンス変数
  106.   #--------------------------------------------------------------------------
  107.   attr_reader   :actors                   # アクター
  108.   attr_reader   :gold                     # ゴールド
  109.   attr_reader   :steps                    # 歩数
  110.   attr_accessor :mission                  # 任务★★★★★★★★★★★★★
  111.   attr_accessor   :pr                  # 当前章节数★★★★★★★★★★★★★
  112.   attr_reader   :prname
  113.   #--------------------------------------------------------------------------
  114.   # ● オブジェクト初期化
  115.   #--------------------------------------------------------------------------
  116.   def initialize
  117.     # アクターの配列を作成
  118.     @actors = []
  119.     # ゴールドと歩数を初期化
  120.     @gold = 0
  121.     @steps = 0
  122.     # アイテム、武器、防具の所持数ハッシュを作成
  123.     @items = {}
  124.     @weapons = {}
  125.     @armors = {}
  126.   end
  127. #==============================================
  128. attr_accessor :enemy_info               # 出会った敵情報(図鑑用)

  129. #--------------------------------------------------------------------------
  130. # ● オブジェクト初期化
  131. #--------------------------------------------------------------------------
  132. alias book_info_initialize initialize
  133. def initialize
  134.    book_info_initialize
  135.    @enemy_info = {}
  136. end

  137. #--------------------------------------------------------------------------
  138. # ● エネミー情報の追加(図鑑用)
  139. #     type : 通常遭遇かアナライズか 0:通常 1:アナライズ -1:情報削除
  140. #     0:無遭遇 1:遭遇済 2:アナライズ済
  141. #--------------------------------------------------------------------------
  142. def add_enemy_info(enemy_id, type = 0)
  143.    case type
  144.    when 0
  145.      if @enemy_info[enemy_id] == 2
  146.        return false
  147.      end
  148.      @enemy_info[enemy_id] = 1
  149.    when 1
  150.      @enemy_info[enemy_id] = 2
  151.    when -1
  152.      @enemy_info[enemy_id] = 0
  153.    end
  154. end
  155. #--------------------------------------------------------------------------
  156. # ● 魔物図鑑の最大登録数を取得
  157. #--------------------------------------------------------------------------
  158. def enemy_book_max
  159.    return $game_temp.enemy_book_data.id_data.size - 1
  160. end
  161. #--------------------------------------------------------------------------
  162. # ● 魔物図鑑の現在登録数を取得
  163. #--------------------------------------------------------------------------
  164. def enemy_book_now
  165.    now_enemy_info = @enemy_info.keys
  166.    # 登録無視の属性IDを取得
  167.    no_add = $game_temp.enemy_book_data.no_add_element
  168.    new_enemy_info = []
  169.    for i in now_enemy_info
  170.      enemy = $data_enemies[i]
  171.      next if enemy.name == ""
  172.      if enemy.element_ranks[no_add] == 1
  173.        next
  174.      end
  175.      new_enemy_info.push(enemy.id)
  176.    end
  177.    return new_enemy_info.size
  178. end
  179. #--------------------------------------------------------------------------
  180. # ● 魔物図鑑の完成率を取得
  181. #--------------------------------------------------------------------------
  182. def enemy_book_complete_percentage
  183.    e_max = enemy_book_max.to_f
  184.    e_now = enemy_book_now.to_f
  185.    comp = e_now / e_max * 100
  186.    return comp.truncate
  187. end
  188. end

  189. class Interpreter
  190. def enemy_book_max
  191.    return $game_party.enemy_book_max
  192. end
  193. def enemy_book_now
  194.    return $game_party.enemy_book_now
  195. end
  196. def enemy_book_comp
  197.    return $game_party.enemy_book_complete_percentage
  198. end
  199. end

  200. class Scene_Battle
  201. alias add_enemy_info_start_phase5 start_phase5
  202. def start_phase5
  203.    for enemy in $game_troop.enemies
  204.      # エネミーが隠れ状態でない場合
  205.      unless enemy.hidden
  206.        # 敵遭遇情報追加
  207.        $game_party.add_enemy_info(enemy.id, 0)
  208.      end
  209.    end
  210.    add_enemy_info_start_phase5
  211. end
  212. end

  213. class Window_Base < Window
  214. #--------------------------------------------------------------------------
  215. # ● エネミーの戦闘後獲得アイテムの描画
  216. #--------------------------------------------------------------------------
  217. def draw_enemy_drop_item(enemy, x, y)
  218.    self.contents.font.color = normal_color
  219.    treasures = []
  220.    if enemy.item_id > 0
  221.      treasures.push($data_items[enemy.item_id])
  222.    end
  223.    if enemy.weapon_id > 0
  224.      treasures.push($data_weapons[enemy.weapon_id])
  225.    end
  226.    if enemy.armor_id > 0
  227.      treasures.push($data_armors[enemy.armor_id])
  228.    end
  229.    # 現状ではとりあえず1つのみ描画
  230.    if treasures.size > 0
  231.      item = treasures[0]
  232.      bitmap = RPG::Cache.icon(item.icon_name)
  233.      opacity = 255
  234.      self.contents.blt(x, y + 4, bitmap, Rect.new(0, 0, 24, 24), opacity)
  235.      name = treasures[0].name
  236.    else
  237.      self.contents.font.color = disabled_color
  238.      name = "无"
  239.    end
  240.    self.contents.draw_text(x+28, y, 212, 32, name)
  241. end
  242. #--------------------------------------------------------------------------
  243. # ● エネミーの図鑑IDの描画
  244. #--------------------------------------------------------------------------
  245. def draw_enemy_book_id(enemy, x, y)
  246.    self.contents.font.color = normal_color
  247.    id = $game_temp.enemy_book_data.id_data.index(enemy.id)
  248.    self.contents.draw_text(x, y, 32, 32, id.to_s)
  249. end
  250. #--------------------------------------------------------------------------
  251. # ● 敌人简介描绘
  252. #--------------------------------------------------------------------------
  253. def draw_enemy_other(enemy, x, y)
  254.    if CHARA_INFO[enemy.id]==nil
  255.     CHARA_INFO[enemy.id] = "没有相关资料"
  256.   end
  257.    self.contents.font.size=16
  258.    x+=self.contents.text_size("").width
  259.    info = CHARA_INFO[enemy.id]
  260.    s=info.scan(/./)
  261.     #一行显示21个字
  262.     for i in s
  263.       sss = self.contents.text_size(i)
  264.       
  265.       if  i==" "
  266.         y+=16
  267.         x=0
  268.       elsif (x+sss.width)>(width - 32-260)
  269.         y+=16
  270.         x=0
  271.         self.contents.draw_text(x, y, sss.width, sss.height, i)
  272.         x+=sss.width
  273.       else
  274.       self.contents.draw_text(x, y, sss.width, sss.height, i)
  275.       x+=sss.width
  276.       end
  277.     end
  278.   end
  279.    #--------------------------------------------------------------------------
  280. # ● 敌人特技描绘
  281. #--------------------------------------------------------------------------
  282. def draw_enemy_action(enemy, x, y)
  283.    self.contents.font.size=16
  284.    yy=y
  285.    self.contents.font.color = system_color
  286.    self.contents.draw_text(x, yy, 80, 18,"行动列表")
  287.    self.contents.font.color = normal_color
  288.    for action in enemy.actions
  289.      yy+=18
  290.      if action.kind==0
  291.        case action.basic
  292.         when 0
  293.           ac="普通攻击"
  294.         when 1
  295.           ac="防御"
  296.         when 2
  297.           ac="逃跑"
  298.         when 3
  299.           ac="无"
  300.         end
  301.      self.contents.draw_text(x, yy, 160, 18, ac )
  302.      end
  303.      if action.kind==1
  304.      self.contents.draw_text(x, yy, 160, 18, $data_skills[action.skill_id].name )
  305.      end
  306.    end
  307. end
  308. #雷达图描绘
  309.   #===================================================================
  310.   def draw_actor_element_radar_graph(actor, x, y)
  311.     radius = 56
  312. cx = x + radius + FONT_SIZE + 48
  313. cy = y + radius + FONT_SIZE + 32
  314. self.contents.font.color = system_color
  315. self.contents.draw_text(x, y, 104, 32, WORD_ELEMENT_GUARD)
  316. for loop_i in 0..NUMBER_OF_ELEMENTS
  317. if loop_i == 0

  318. else
  319. @pre_x = @now_x
  320. @pre_y = @now_y
  321. @pre_ex = @now_ex
  322. @pre_ey = @now_ey
  323. @color1 = @color2
  324. end
  325. if loop_i == NUMBER_OF_ELEMENTS
  326. eo = ELEMENT_ORDER[0]
  327. else
  328. eo = ELEMENT_ORDER[loop_i]
  329. end
  330. er = actor.element_rate(eo)
  331. estr = $data_system.elements[eo]
  332. @color2 = er < 0 ? GRAPH_LINE_COLOR_MINUS : er > 100 ? GRAPH_LINE_COLOR_PLUS : GRAPH_LINE_COLOR
  333. if er <0
  334.   then xsh=true
  335. else xsh=false
  336. end
  337. er = er.abs
  338. th = Math::PI * (0.5 - 2.0 * loop_i / NUMBER_OF_ELEMENTS)
  339. @now_x = cx + (radius * Math.cos(th)).floor
  340. @now_y = cy - (radius * Math.sin(th)).floor
  341. @now_wx = cx + ((radius+FONT_SIZE*2/2) * Math.cos(th)).floor - FONT_SIZE
  342. @now_wy = cy - ((radius+FONT_SIZE*1/2) * Math.sin(th)).floor - FONT_SIZE/2
  343. @now_vx = cx + ((radius+FONT_SIZE*6/2) * Math.cos(th)).floor - FONT_SIZE
  344. @now_vy = cy - ((radius+FONT_SIZE*3/2) * Math.sin(th)).floor - FONT_SIZE/2
  345. @now_ex = cx + (er*radius/100 * Math.cos(th)).floor
  346. @now_ey = cy - (er*radius/100 * Math.sin(th)).floor
  347. if loop_i == 0
  348. @pre_x = @now_x
  349. @pre_y = @now_y
  350. @pre_ex = @now_ex
  351. @pre_ey = @now_ey
  352. @color1 = @color2
  353. else

  354. end
  355. next if loop_i == 0
  356. self.contents.draw_line(cx+1,cy+1, @now_x+1,@now_y+1, GRAPH_SCALINE_COLOR_SHADOW)
  357. self.contents.draw_line(@pre_x+1,@pre_y+1, @now_x+1,@now_y+1, GRAPH_SCALINE_COLOR_SHADOW)
  358. self.contents.draw_line(cx,cy, @now_x,@now_y, GRAPH_SCALINE_COLOR)
  359. self.contents.draw_line(@pre_x,@pre_y, @now_x,@now_y, GRAPH_SCALINE_COLOR)
  360. self.contents.draw_line(@pre_ex,@pre_ey, @now_ex,@now_ey, @color1, 2, @color2)
  361. self.contents.font.size = FONT_SIZE
  362. if xsh == true
  363.   then self.contents.font.color = Color.new(100,255,128,128)
  364.   sdd="-"
  365. else self.contents.font.color = system_color
  366.   sdd=""
  367. end
  368. self.contents.draw_text(@now_wx,@now_wy, FONT_SIZE*2, FONT_SIZE, estr, 1)
  369. self.contents.font.color = Color.new(255,255,255,128)
  370. self.contents.draw_text(@now_vx,@now_vy, FONT_SIZE*2, FONT_SIZE, sdd+er.to_s + "%", 2)
  371. end
  372. end
  373. #_----------------------------------------------
  374. def draw_race(enemy,x,y)
  375.       text="无"
  376.       text2="无"
  377.       for i in 9..16
  378.         if enemy.element_rate(i) == 200
  379.         text = $data_system.elements[i]
  380.         end
  381.         if enemy.element_rate(i) == 150
  382.         text2 =$data_system.elements[i]
  383.         end
  384.       end
  385.       self.contents.font.color = system_color
  386.       self.contents.draw_text(x, y, 80, 32,"主要种族")
  387.       self.contents.font.color = normal_color
  388.       self.contents.draw_text(x+80, y, 76, 32,text,2)
  389. end
  390.   
  391. #--------------------------------------------------------------------------
  392. # ● エネミーの名前の描画
  393. #     enemy : エネミー
  394. #     x     : 描画先 X 座標
  395. #     y     : 描画先 Y 座標
  396. #--------------------------------------------------------------------------
  397. def draw_enemy_name(enemy, x, y)
  398.    self.contents.font.color = normal_color
  399.    self.contents.draw_text(x, y, 152, 32, enemy.name)
  400. end
  401. #--------------------------------------------------------------------------
  402. # ● エネミーグラフィックの描画(アナライズ)
  403. #     enemy : エネミー
  404. #     x     : 描画先 X 座標
  405. #     y     : 描画先 Y 座標
  406. #--------------------------------------------------------------------------
  407. def draw_enemy_graphic(enemy, x, y, opacity = 255)

  408. end
  409. #--------------------------------------------------------------------------
  410. # ● エネミーの獲得EXPの描画
  411. #     enemy : エネミー
  412. #     x     : 描画先 X 座標
  413. #     y     : 描画先 Y 座標
  414. #--------------------------------------------------------------------------
  415. def draw_enemy_exp(enemy, x, y)
  416.    self.contents.font.color = system_color
  417.    self.contents.draw_text(x, y, 120, 32, "EXP")
  418.    self.contents.font.color = normal_color
  419.    self.contents.draw_text(x + 120, y, 36, 32, enemy.exp.to_s, 2)
  420. end
  421. #--------------------------------------------------------------------------
  422. # ● エネミーの獲得GOLDの描画
  423. #     enemy : エネミー
  424. #     x     : 描画先 X 座標
  425. #     y     : 描画先 Y 座標
  426. #--------------------------------------------------------------------------
  427. def draw_enemy_gold(enemy, x, y)
  428.    self.contents.font.color = system_color
  429.    self.contents.draw_text(x, y, 120, 32, "掉落金钱")
  430.    self.contents.font.color = normal_color
  431.    self.contents.draw_text(x + 120, y, 36, 32, enemy.gold.to_s, 2)
  432. end
  433. end

  434. class Game_Enemy_Book < Game_Enemy
  435. #--------------------------------------------------------------------------
  436. # ● オブジェクト初期化
  437. #--------------------------------------------------------------------------
  438. def initialize(enemy_id)
  439.    super(2, 1)#ダミー
  440.    @enemy_id = enemy_id
  441.    enemy = $data_enemies[@enemy_id]
  442.    @battler_name = enemy.battler_name
  443.    @battler_hue = enemy.battler_hue
  444.    @hp = maxhp
  445.    @sp = maxsp
  446. end
  447. end

  448. class Data_MonsterBook
  449. attr_reader :id_data
  450. #--------------------------------------------------------------------------
  451. # ● オブジェクト初期化
  452. #--------------------------------------------------------------------------
  453. def initialize
  454.    @id_data = enemy_book_id_set
  455. end
  456. #--------------------------------------------------------------------------
  457. # ● 図鑑用登録無視属性取得
  458. #--------------------------------------------------------------------------
  459. def no_add_element
  460.    no_add = 0
  461.    # 登録無視の属性IDを取得
  462.    for i in 1...$data_system.elements.size
  463.      if $data_system.elements[i] =~ /不加入图鉴/
  464.        no_add = i
  465.        break
  466.      end
  467.    end
  468.    return no_add
  469. end
  470. #--------------------------------------------------------------------------
  471. # ● 図鑑用敵ID設定
  472. #--------------------------------------------------------------------------
  473. def enemy_book_id_set
  474.    data = [0]
  475.    no_add = no_add_element
  476.    # 登録無視の属性IDを取得
  477.    for i in 1...$data_enemies.size
  478.      enemy = $data_enemies[i]
  479.      next if enemy.name == ""
  480.      if enemy.element_ranks[no_add] == 1
  481.        next
  482.      end
  483.      data.push(enemy.id)
  484.    end
  485.    return data
  486. end
  487. end


  488. class Window_MonsterBook < Window_Selectable
  489. attr_reader   :data
  490. #--------------------------------------------------------------------------
  491. # ● オブジェクト初期化
  492. #--------------------------------------------------------------------------
  493. def initialize(index=0)
  494.    super(0, 64, 640, 416)
  495.    @column_max = 2
  496.    @book_data = $game_temp.enemy_book_data
  497.    @data = @book_data.id_data.dup
  498.    @data.shift
  499.    #@data.sort!
  500.    @item_max = @data.size
  501.    self.index = 0
  502.    refresh if @item_max > 0
  503. end
  504. #--------------------------------------------------------------------------
  505. # ● 遭遇データを取得
  506. #--------------------------------------------------------------------------
  507. def data_set
  508.    data = $game_party.enemy_info.keys
  509.    data.sort!
  510.    newdata = []
  511.    for i in data
  512.      next if $game_party.enemy_info[i] == 0
  513.      # 図鑑登録無視を考慮
  514.      if book_id(i) != nil
  515.        newdata.push(i)
  516.      end
  517.    end
  518.    return newdata
  519. end
  520. #--------------------------------------------------------------------------
  521. # ● 表示許可取得
  522. #--------------------------------------------------------------------------
  523. def show?(id)
  524.    if $game_party.enemy_info[id] == 0 or $game_party.enemy_info[id] == nil
  525.      return false
  526.    else
  527.      return true
  528.    end
  529. end
  530. #--------------------------------------------------------------------------
  531. # ● 図鑑用ID取得
  532. #--------------------------------------------------------------------------
  533. def book_id(id)
  534.    return @book_data.index(id)
  535. end
  536. #--------------------------------------------------------------------------
  537. # ● エネミー取得
  538. #--------------------------------------------------------------------------
  539. def item
  540.    return @data[self.index]
  541. end
  542. #--------------------------------------------------------------------------
  543. # ● リフレッシュ
  544. #--------------------------------------------------------------------------
  545. def refresh
  546.    if self.contents != nil
  547.      self.contents.dispose
  548.      self.contents = nil
  549.    end
  550.    self.contents = Bitmap.new(width - 32, row_max * 32)
  551.    #項目数が 0 でなければビットマップを作成し、全項目を描画
  552.    if @item_max > 0
  553.      for i in 0...@item_max
  554.       draw_item(i)
  555.      end
  556.    end
  557. end
  558. #--------------------------------------------------------------------------
  559. # ● 項目の描画
  560. #     index : 項目番号
  561. #--------------------------------------------------------------------------
  562. def draw_item(index)
  563.    enemy = $data_enemies[@data[index]]
  564.    return if enemy == nil
  565.    x = 4 + index % 2 * (288 + 32)
  566.    y = index / 2 * 32
  567.    rect = Rect.new(x, y, self.width / @column_max - 32, 32)
  568.    self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
  569.    self.contents.font.color = normal_color
  570.    draw_enemy_book_id(enemy, x, y)
  571.    if show?(enemy.id)
  572.      self.contents.draw_text(x + 28+16, y, 212, 32, enemy.name, 0)
  573.    else
  574.      self.contents.draw_text(x + 28+16, y, 212, 32, "-----", 0)
  575.      return
  576.    end
  577.    if analyze?(@data[index])
  578.      self.contents.font.color = text_color(3)
  579.      self.contents.draw_text(x + 256, y, 24, 32, "済", 2)
  580.    end
  581. end
  582. #--------------------------------------------------------------------------
  583. # ● アナライズ済かどうか
  584. #--------------------------------------------------------------------------
  585. def analyze?(enemy_id)
  586.    if $game_party.enemy_info[enemy_id] == 2
  587.      return true
  588.    else
  589.      return false
  590.    end
  591. end
  592. end


  593. class Window_MonsterBook_Info < Window_Base
  594. include Enemy_Book_Config
  595. #--------------------------------------------------------------------------
  596. # ● オブジェクト初期化
  597. #--------------------------------------------------------------------------
  598. def initialize
  599.    super(0, 0+64, 640, 480-64)
  600.    self.back_opacity=255
  601.    self.contents = Bitmap.new(width - 32, height - 32)
  602.    
  603. end
  604. #--------------------------------------------------------------------------
  605. # ● リフレッシュ
  606. #--------------------------------------------------------------------------
  607. def refresh(enemy_id)
  608.    self.contents.clear
  609.    self.contents.font.size = 22
  610.    enemy = Game_Enemy_Book.new(enemy_id)
  611.    @gra = Sprite_Enemy_Graphic.new(nil,enemy)
  612.    @gra.z = 120      #怪物图片
  613.    draw_enemy_book_id(enemy, 4, 0)    #各种详细信息
  614.    draw_enemy_name(enemy, 48, 0)
  615.    draw_actor_hp(enemy, 288, 0)
  616.    draw_actor_sp(enemy, 288+160, 0)
  617.    self.contents.font.size=18
  618.    draw_actor_parameter(enemy, 288    ,  25, 0)
  619.    self.contents.font.color = system_color
  620.    self.contents.draw_text(288+160, 25, 120, 32, EVA_NAME)
  621.    self.contents.font.color = normal_color
  622.    self.contents.draw_text(288+160 + 120, 25, 36, 32, enemy.eva.to_s, 2)
  623.    draw_actor_parameter(enemy, 288    ,  50, 3)
  624.    draw_actor_parameter(enemy, 288+160,  50, 4)
  625.    draw_actor_parameter(enemy, 288    ,  75, 5)
  626.    draw_actor_parameter(enemy, 288+160,  75, 6)
  627.    draw_actor_parameter(enemy, 288    , 100, 1)
  628.    draw_actor_parameter(enemy, 288+160, 100, 2)
  629.    draw_enemy_exp(enemy, 288, 125)
  630.    draw_enemy_gold(enemy, 288+160, 125)
  631.    draw_race(enemy, 288, 150)
  632.    #--------------------------------------------------------------------
  633.    draw_enemy_other(enemy, 0, 280)  #简介文字
  634.    draw_enemy_action(enemy,200, 30)  #显示敌人行动
  635.    draw_actor_element_radar_graph(enemy, 360, 180)#雷达图
  636.    #--------------------------------------------------------------------
  637.    if DROP_ITEM_NEED_ANALYZE==true  #掉落物品
  638.      self.contents.font.color = system_color
  639.         self.contents.font.size=16
  640.      self.contents.draw_text(0, 235, 96, 32, "掉落物品")
  641.      draw_enemy_drop_item(enemy, 128, 235)
  642.      self.contents.font.color = normal_color
  643.         self.contents.font.size=18
  644.       end      
  645.     end
  646. def cl
  647.        @gra.dispose
  648. end
  649. #--------------------------------------------------------------------------
  650. # ● アナライズ済かどうか
  651. #--------------------------------------------------------------------------
  652. def analyze?(enemy_id)
  653.    if $game_party.enemy_info[enemy_id] == 2
  654.      return true
  655.    else
  656.      return false
  657.    end
  658. end
  659. end


  660. class Scene_MonsterBook
  661. include Enemy_Book_Config
  662. #--------------------------------------------------------------------------
  663. # ● メイン処理
  664. #--------------------------------------------------------------------------
  665. def main
  666.    $game_temp.enemy_book_data = Data_MonsterBook.new
  667.    # ウィンドウを作成
  668.    @title_window = Window_Base.new(0, 0, 640, 64)
  669.    @title_window.contents = Bitmap.new(640 - 32, 64 - 32)
  670.    @title_window.contents.draw_text(4, 0, 320, 32, "角色介绍", 0)
  671.    if SHOW_COMPLETE_TYPE != 0
  672.      case SHOW_COMPLETE_TYPE
  673.      when 1
  674.        e_now = $game_party.enemy_book_now
  675.        e_max = $game_party.enemy_book_max
  676.        text = e_now.to_s + "/" + e_max.to_s
  677.      when 2
  678.        comp = $game_party.enemy_book_complete_percentage
  679.        text = comp.to_s + "%"
  680.      when 3
  681.        e_now = $game_party.enemy_book_now
  682.        e_max = $game_party.enemy_book_max
  683.        comp = $game_party.enemy_book_complete_percentage
  684.        text = e_now.to_s + "/" + e_max.to_s + " " + comp.to_s + "%"
  685.      end
  686.      if text != nil
  687.        @title_window.contents.draw_text(320, 0, 288, 32,  text, 2)
  688.      end
  689.    end
  690.    @main_window = Window_MonsterBook.new
  691.    @main_window.active = true
  692.    # インフォウィンドウを作成 (不可視・非アクティブに設定)
  693.    @info_window = Window_MonsterBook_Info.new
  694.    @info_window.z = 110
  695.    @info_window.visible = false
  696.    @info_window.active = false
  697.    @visible_index = 0
  698.    # トランジション実行
  699.    Graphics.transition
  700.    # メインループ
  701.    loop do
  702.      # ゲーム画面を更新
  703.      Graphics.update
  704.      # 入力情報を更新
  705.      Input.update
  706.      # フレーム更新
  707.      update
  708.      # 画面が切り替わったらループを中断
  709.      if $scene != self
  710.        break
  711.      end
  712.    end
  713.    # トランジション準備
  714.    Graphics.freeze
  715.    # ウィンドウを解放
  716.    @main_window.dispose
  717.    @info_window.dispose
  718.    @title_window.dispose
  719. end
  720. #--------------------------------------------------------------------------
  721. # ● フレーム更新
  722. #--------------------------------------------------------------------------
  723. def update
  724.    # ウィンドウを更新
  725.    @main_window.update
  726.    @info_window.update
  727. #   gra.update
  728.    if @info_window.active
  729.      update_info
  730.      return
  731.    end
  732.    # メインウィンドウがアクティブの場合: update_target を呼ぶ
  733.    if @main_window.active
  734.      update_main
  735.      return
  736.    end
  737. end
  738. #--------------------------------------------------------------------------
  739. # ● フレーム更新 (メインウィンドウがアクティブの場合)
  740. #--------------------------------------------------------------------------
  741. def update_main
  742.    # B ボタンが押された場合
  743.    if Input.trigger?(Input::B)
  744.      # キャンセル SE を演奏
  745.      $game_system.se_play($data_system.cancel_se)
  746.      $scene = Scene_Menu.new(7)
  747.      return
  748.    end
  749.    # C ボタンが押された場合
  750.    if Input.trigger?(Input::C)
  751.      if @main_window.item == nil or @main_window.show?(@main_window.item) == false
  752.        # ブザー SE を演奏
  753.        $game_system.se_play($data_system.buzzer_se)
  754.        return
  755.      end
  756.      # 決定 SE を演奏
  757.      $game_system.se_play($data_system.decision_se)
  758.      @main_window.active = false
  759.      @info_window.active = true
  760.      @info_window.visible = true
  761.      @visible_index = @main_window.index
  762.      @info_window.refresh(@main_window.item)
  763.      return
  764.    end
  765. end
  766. #--------------------------------------------------------------------------
  767. # ● フレーム更新 (インフォウィンドウがアクティブの場合)
  768. #--------------------------------------------------------------------------
  769. def update_info
  770.    # B ボタンが押された場合
  771.    if Input.trigger?(Input::B)
  772.      # キャンセル SE を演奏
  773.      $game_system.se_play($data_system.cancel_se)
  774.      @main_window.active = true
  775.      @info_window.active = false
  776.      @info_window.visible = false
  777.      @info_window.cl
  778.      return
  779.    end
  780.    # C ボタンが押された場合
  781.    if Input.trigger?(Input::C)
  782.      # 決定 SE を演奏
  783.      #$game_system.se_play($data_system.decision_se)
  784.      return
  785.    end
  786.    if Input.trigger?(Input::L)
  787.      # 決定 SE を演奏
  788.      $game_system.se_play($data_system.decision_se)
  789.      loop_end = false
  790.      while loop_end == false
  791.        if @visible_index != 0
  792.          @visible_index -= 1
  793.        else
  794.          @visible_index = @main_window.data.size - 1
  795.        end
  796.        loop_end = true if @main_window.show?(@main_window.data[@visible_index])
  797.      end
  798.      id = @main_window.data[@visible_index]
  799.      @info_window.refresh(id)
  800.      return
  801.    end
  802.    if Input.trigger?(Input::R)
  803.      # 決定 SE を演奏
  804.      $game_system.se_play($data_system.decision_se)
  805.      loop_end = false
  806.      while loop_end == false
  807.        if @visible_index != @main_window.data.size - 1
  808.          @visible_index += 1
  809.        else
  810.          @visible_index = 0
  811.        end
  812.        loop_end = true if @main_window.show?(@main_window.data[@visible_index])
  813.      end
  814.      id = @main_window.data[@visible_index]
  815.      @info_window.refresh(id)
  816.      return
  817.    end
  818. end
  819. end
  820. #==================================================================
  821. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  822. #==================================================================
  823. class Sprite_Enemy_Graphic< Sprite
  824.   attr_accessor :enemy
  825.   #--------------------------------------------------------------------------
  826.   # ● オブジェクト初期化
  827.   #--------------------------------------------------------------------------
  828.   def initialize(viewport,enemy)
  829.     super(viewport)
  830.     if @enemy != enemy
  831.       self.bitmap = RPG::Cache.battler(enemy.battler_name, enemy.battler_hue)
  832.       cw = self.bitmap.width
  833.       ch = self.bitmap.height
  834.     if cw>ch
  835.      self.zoom_x=200.0/cw
  836.      self.zoom_y=200.0/cw
  837.    else
  838.      self.zoom_x=200.0/ch
  839.      self.zoom_y=200.0/ch     
  840.    end
  841.      self.x=10
  842.      self.y=110
  843.       @enemy=enemy
  844.     end
  845.   end
  846.   #--------------------------------------------------------------------------
  847.   # ● 解放
  848.   #--------------------------------------------------------------------------
  849.   def dispose
  850.     if self.bitmap != nil
  851.       self.bitmap.dispose
  852.     end
  853.     super
  854.   end
  855.   #--------------------------------------------------------------------------
  856.   # ● フレーム更新
  857.   #--------------------------------------------------------------------------
  858.   def refresh(enemy)
  859.   end
  860. end
复制代码

Lv1.梦旅人

虱子

梦石
0
星屑
121
在线时间
1782 小时
注册时间
2010-6-19
帖子
3597
2
发表于 2011-5-4 12:22:15 | 只看该作者
LZ没有删减脚本吗?

http://rpg.blue/thread-175056-1-2.html
PVZ型塔防物一个
http://rpg.blue/thread-155199-1-2.html
RMXP技术讨论区手动认可帖,得到答案请认可
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
70
在线时间
233 小时
注册时间
2011-4-25
帖子
148
3
 楼主| 发表于 2011-5-4 15:05:18 | 只看该作者
没有删减~


李思无于2011-5-6 13:30补充以下内容:
真心求解决~很希望这2个脚本能使用啊!!!!!!!
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-11-26 00:35

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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