UltimaForum

Skrypty [VX] - Nie widać kosztu umiejętności gdy wynosi on 0 MP

PaKiTos - Wto 20 Lip, 2010 18:34
Temat postu: Nie widać kosztu umiejętności gdy wynosi on 0 MP
O co chodzi? Ten skrypt ukrywa, że jakaś umiejętność nie kosztuje nic ;P W walce powinno działać, w menu nie wiem.
Oto skrypt:
Spoiler:

Kod:
#===============================================================================
#
# Hide 0 MP Cost - By JFace
# July 19, 2010
#
# This script hides the MP cost of a skill when the cost is 0. This is
# particularly useful if a character has physical attack type skills, and
# MP should not be displayed. This cleans up the skill list in both the battle
# and main menus.
#
#
# Instructions
# -----------------------------------------------------------------------------
# To use this script, place this script anywhere below ? Materials
# but above ? Main. Save your game.
#
# This script has no customizable features.
# ==============================================================================
#dla ultimateam.pl

class Window_Skill
  #--------------------------------------------------------------------------
  # * Draw Item
  #     index : item number
  #--------------------------------------------------------------------------
  def draw_item(index)
    rect = item_rect(index)
    self.contents.clear_rect(rect)
    skill = @data[index]
    if skill != nil
      rect.width -= 4
      enabled = @actor.skill_can_use?(skill)
      draw_item_name(skill, rect.x, rect.y, enabled)
      if @actor.calc_mp_cost(skill) != 0
        self.contents.draw_text(rect, @actor.calc_mp_cost(skill), 2)
      end
    end
  end
end


Fotka:
Spoiler:

Co, fotki jeszcze?
Spoiler:

Dobra leniu.



Powered by phpBB modified by Przemo © 2003 phpBB Group