RMVXA

걸을때 소리나는 스크립트

by ㅅㅇ posted Oct 07, 2014
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
Extra Form


module Omg_n213y2
  
  FileName = '말발굽3'
  Volume = 100
  Pitch = 100
  
  end

#==============================================================================
# ** Game_Player
#------------------------------------------------------------------------------
#  This class handles the player. It includes event starting determinants and
# map scrolling functions. The instance of this class is referenced by
# $game_player.
#==============================================================================

class Game_Player < Game_Character
#--------------------------------------------------------------------------
  # * Increase Steps
  #--------------------------------------------------------------------------
  def increase_steps
    super
    
    @name = Omg_n213y2::FileName
    @volume = Omg_n213y2::Volume
    @pitch = Omg_n213y2::Pitch

  def play
      Audio.se_play('Audio/SE/' + @name, @volume, @pitch)
    end
  end
  def self.stop
    Audio.se_stop
  end
 

    $game_party.increase_steps
    if def normal_walk?
    @vehicle_type == :walk && !@move_route_forcing
    end
end

윽 오메가로이드님 동영상보고 vx ace를 통해 응용을 해보는데 자꾸 저런 경고 메세지가 뜨네요ㅠㅠ end를 지워도 안 되고...
제가 스크립트를 어제 처음 만져보는거라 거의 컴맹 수준이에요...ㅠㅠ