RPGXP 스크립트
2013.10.01 06:44

발소리 스크립트

조회 수 1730 추천 수 0 댓글 6
?

단축키

Prev이전 문서

Next다음 문서

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

단축키

Prev이전 문서

Next다음 문서

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

이전에 올라온 것 보다 조금 더 간단합니다.

 

#==============================================================================
# ■ 발소리(ver 0.95) 
# by 피놀
#==============================================================================

 

module PLAN_STEP_SE
  # TAG[태그 ID] = RPG::AudioFile.new("파일명", 볼륨, 피치)
  TAG    = []
  TAG[1] = RPG::AudioFile.new("se_asioto_tuti01", 80)   # 흙 위를 걷는 소리
  TAG[2] = RPG::AudioFile.new("se_asioto_kusa01", 80)   # 풀 위를 걷는 소리
  TAG[3] = RPG::AudioFile.new("se_asioto_ki01", 80)     # 나무 위를 걷는 소리
  TAG[4] = RPG::AudioFile.new("se_asioto_tuti02", 80)   # 흙 위를 걷는 소리
  TAG[5] = RPG::AudioFile.new("se_asioto_isi01", 80)    # 돌 위를 걷는 소리
  TAG[6] = RPG::AudioFile.new("se_asiuoto_yuki01", 80)  # 눈 위를 걷는 소리
  TAG[7] = RPG::AudioFile.new("se_asioto_za01", 80)     # 행진
end


#==============================================================================
# 걾 Game_Character
#==============================================================================

class Game_Character
  #--------------------------------------------------------------------------
  # 걶 뺖릶몵돿
  #--------------------------------------------------------------------------
  def increase_steps
    $game_map.terrain_tag($game_player.x, $game_player.y)
     #화면상에서의 위치
    if ($game_map.display_y - 128 <= @real_y and $game_map.display_y + 16 * 128 > @real_y) and
       ($game_map.display_x - 128 <= @real_x and $game_map.display_x + 21 * 128 > @real_x)
      tag = $game_map.terrain_tag(self.x, self.y)
      $game_system.se_play(PLAN_STEP_SE::TAG[tag])
    end
    # 정지 카운트를 클리어
    @stop_count = 0
  end
end

# 걾 Game_Character
#==============================================================================

#발소리를 수정하시려면 module PLAN_STEP_SE 부분을 수정하시면 됩니다.

#==============================================================================

?

  1. 촬영 기술(부드러운 맵스크롤)

    Date2013.09.24 CategoryRPGXP 스크립트 By청담 Views1652 Votes0
    Read More
  2. 게임도중에 글씨체를 바꿔보자.

    Date2008.12.31 CategoryRPGXP 스크립트 By창조도시 Views1653 Votes1
    Read More
  3. 상점에서 아이템 능력치를 표시해주는 스크립트

    Date2013.10.01 CategoryRPGXP 스크립트 By Views1656 Votes0
    Read More
  4. 가상 키보드 입력 스크립트

    Date2013.10.01 CategoryRPGXP 스크립트 By Views1660 Votes0
    Read More
  5. 네코에서 되는 마우스 스크립트

    Date2013.09.30 CategoryRPGXP 스크립트 By휴리드 Views1675 Votes0
    Read More
  6. 로고를 띄우는 스크립트

    Date2013.10.07 CategoryRPGXP 스크립트 ByXEONSOFT블로그 Views1681 Votes0
    Read More
  7. 8방향 이동스크립트

    Date2014.02.22 CategoryRPGXP 스크립트 By천둥번들 Views1725 Votes6
    Read More
  8. 발소리 스크립트

    Date2013.10.01 CategoryRPGXP 스크립트 By Views1730 Votes0
    Read More
  9. 창고 시스템

    Date2008.01.18 CategoryRPGXP 스크립트 By창조도시 Views1737 Votes3
    Read More
  10. 스텟찍기스크립트

    Date2014.02.22 CategoryRPGXP 스크립트 By천둥번들 Views1767 Votes3
    Read More
  11. 파티 선두 캐릭터 id 변수에 넣기

    Date2008.01.08 CategoryRPGXP 스크립트 ByEvangelista Views1786 Votes1
    Read More
  12. 직업명 표시

    Date2010.10.24 CategoryRPGXP 스크립트 ByA.M.S Views1787 Votes0
    Read More
  13. 대화 글씨 폰트를 원하는 폰트로 바꾸기

    Date2007.12.01 CategoryRPGXP 스크립트 By창조도시 Views1813 Votes2
    Read More
  14. 게임프레임 조절

    Date2013.09.20 CategoryRPGXP 스크립트 By청담 Views1817 Votes0
    Read More
  15. 상점에서 상세정보보여주기

    Date2010.10.24 CategoryRPGXP 스크립트 ByA.M.S Views1818 Votes0
    Read More
  16. 말풍선 메세지 스크립트

    Date2014.02.24 CategoryRPGXP 스크립트 By천둥번들 Views1855 Votes0
    Read More
  17. 미니맵 스크립트

    Date2013.09.20 CategoryRPGXP 스크립트 By청담 Views1875 Votes0
    Read More
  18. 기차 파티 스크립트

    Date2008.07.24 CategoryRPGXP 스크립트 By창조도시 Views1879 Votes2
    Read More
  19. 그림자문자 사용하기.. 바탕색이 무슨색이건 상관없이 글자가 잘보인다!!!

    Date2007.11.06 CategoryRPGXP 스크립트 By창조도시 Views1888 Votes1
    Read More
  20. 대화에 얼굴이 나오는 스크립트 by: killarot(네이버 dust_mite)(수정버전)

    Date2016.02.22 CategoryRPGXP 스크립트 By부초 Views1899 Votes0
    Read More
Board Pagination Prev 1 2 3 4 5 6 7 8 Next
/ 8






[개인정보취급방침] | [이용약관] | [제휴문의] | [후원창구] | [인디사이드연혁]

Copyright © 1999 - 2016 INdiSide.com/(주)씨엘쓰리디 All Rights Reserved.
인디사이드 운영자 : 천무(이지선) | kernys(김원배) | 사신지(김병국)