VX 스크립트

#===============================================================
# ● [VX] ◦ Item Price Changer ◦ □
# * Change item/weapon/armor's price in-game *
#--------------------------------------------------------------
# ◦ by Woratana [woratana@hotmail.com]
# ◦ Thaiware RPG Maker Community
# ◦ Released on: 26/06/2008
# ◦ Version: 1.0
#--------------------------------------------------------------

#==================================================================
# ** HOW TO USE **
#-----------------------------------------------------------------
# ** To change item's price, call script:
#  Price_Edit.item(id, price)
#
# * id: ID of item you want to change price
# * price: New price
#
# ** To change weapon's price, call script:
#  Price_Edit.weapon(id, price)
#
# ** To change armor's price, call script:
#  Price_Edit.armor(id, price)
#
# ** You can leave the price blank to reset item's price:
#  Price_Edit.item(id)
#  Price_Edit.weapon(id)
#  Price_Edit.armor(id)
# * This will use default price you set in database.
#===============================================================

module Price_Edit
  def self.item(id, price = nil)
    price ||= $data_items[id].real_price
    $game_system.new_price['item'][id] = price
  end
  
  def self.weapon(id, price = nil)
    price ||= $data_weapons[id].real_price
    $game_system.new_price['weapon'][id] = price
  end
  
  def self.armor(id, price = nil)
    price ||= $data_armors[id].real_price
    $game_system.new_price['armor'][id] = price
  end
end

class Game_System
  def new_price
    if @new_price.nil?
      @new_price = {}
      @new_price['item'] = []
      @new_price['weapon'] = []
      @new_price['armor'] = []
    end
    return @new_price
  end
end

module RPG
  class BaseItem
    def real_price
      return @price
    end
  end
  
  class Item
    def price
      return $game_system.new_price['item'][@id].nil? ? @price :
    $game_system.new_price['item'][@id]
    end
  end
  
  class Weapon
    def price
      return $game_system.new_price['weapon'][@id].nil? ? @price :
    $game_system.new_price['weapon'][@id]
    end
  end
  
  class Armor
    def price
      return $game_system.new_price['armor'][@id].nil? ? @price :
    $game_system.new_price['armor'][@id]
    end
  end
end
Comment '7'

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 스크립트 자료 게시물 작성시 주의사항 3 습작 2012.12.24 5398
557 스킬 Grid Inventory 1.0f by Modern Algebra 2 Alkaid 2010.09.05 1960
556 전투 GTBS 1.0 [스크립트] 24 아방스 2009.02.05 6141
555 전투 GTBS 1.5.1.4 - GubiD's Tactical Battle System 10 아방스 2010.12.11 4451
554 전투 GTBS for 2d_iso_x3 by Clarabel 2 습작 2013.05.13 1879
553 전투 GTBS_VX 1.0 택틱컬rpg 14 file RPGbooster 2008.10.08 3352
552 맵/타일 GubiD's Isometric Maps for RPG Maker VX 1 Man... 2008.10.28 1681
551 전투 GubiD's Tactical Battle System 1.5.1.4 (RMVX용) 2 Alkaid 2010.09.03 2858
550 메뉴 GuiRPG menu시스템 13 file 할렘 2009.02.07 4849
549 메시지 HG_POP_TEXT (맵 화면에 문자 표시) 4 file 허걱 2011.09.16 3589
548 퀘스트 HG_QUEST_SYSTEM 29 file 허걱 2010.06.18 4130
547 변수/스위치 HG_SelfVariables 셀프 변수 8 file 허걱 2010.11.19 2341
546 기타 HG_SHOOT_ANIMATION 4 file 허걱 2010.11.17 2596
545 변수/스위치 HG_Variables : 변수 확장 시스템 11 file 허걱 2010.06.14 2957
544 스킬 hp소모스킬 31 file DH Games 2010.02.14 3141
543 HUD HUD HP / MP 게이지바 스크립트 29 file 아방스 2009.07.02 5677
542 HUD HUD 스크립트 모음 10 아방스 2010.12.11 3658
541 제작도구 Icon Preview Window by Woratana 8 file 허걱 2009.08.20 2891
540 기타 IEX - Script Library 1.0 by IceDragon 8 Alkaid 2011.01.11 2619
» 아이템 Item Price Changer 7 Man... 2008.10.28 1530
538 Jens009's Critical Flash 1.0 3 Man... 2008.10.27 1240
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ... 32 Next
/ 32