Project1

标题: VX怎么让一个物品显示一个图片 [打印本页]

作者: 小小阿狸    时间: 2011-9-25 17:56
标题: VX怎么让一个物品显示一个图片
请问VX的怎么让一个物品可以显示素材库里的一个图片?dsu_plus_rewardpost_czw
作者: MSQ    时间: 2011-9-25 18:01
物品调用公共事件,用公共事件显示图片。
作者: 各种压力的猫君    时间: 2011-9-25 18:37
补充一下:
Scene_Item 约56-75行
  1.   #--------------------------------------------------------------------------
  2.   # ● 更新物品选择
  3.   #--------------------------------------------------------------------------
  4.   def update_item_selection
  5.     if Input.trigger?(Input::B)
  6.       Sound.play_cancel
  7.       return_scene
  8.     elsif Input.trigger?(Input::C)
  9.       @item = @item_window.item
  10.       if @item != nil
  11.         $game_party.last_item_id = @item.id
  12.       end
  13.       if $game_party.item_can_use?(@item)
  14.         Sound.play_decision
  15.         determine_item
  16.       else
  17.         Sound.play_buzzer
  18.       end
  19.     end
  20.   end
复制代码
在"@item = @item_window.item"下面加一行
  1. $item_id = @item
复制代码
然后在公共事件里这样写:
这样可以实现多个物品共用一个公共事件。




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1