조회 수 521 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

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

단축키

Prev이전 문서

Next다음 문서

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

제가 찾아본 스크립트는 두가지입니다. 하나는 횡스크롤 스크립트이구요 하나는 액알스크립트인데..

액알 스크립트 강좌를 만들어준 분 께서 다음 강좌에 모션을 넣는 방법을 알려주신다 하셨는데 지금까지 빠쁘신가

강좌를 만들지 않으셨더라고요.. 그래서 모션을 넣는 방법을 알고 싶습니다.


제가 사용할 자료들입니다. 횡스크롤 스크립트는 첨부파일에 넣었고요, 액알스크립트는 아래 주소로 들어가셔서 읽어주세요.

모션을 넣는 방법을 알려주시면 감사하겠습니다. 답변을 부탁드려요.


http://avangs.iptime.org/xe/index.php?mid=study_xp&category=175071&document_srl=178753


는.. 메모장 파일이 안올라가서 횡스크롤 스크립트를 그냥 올리겠습니다. 여기에요. 아래에 있습니다.

스압 주의해주세요.


######################### 

#하늘을날아 ################# 

######################### 

#퍼온것이다~ 

#번역:오늘도 즐겁게..

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

# □ 커스터마이즈 포인트

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

class XRXS50 

  # 

  # Action-Maps 를 가동시키는 맵 ID의 배열

  # 

  ENABLE_FULL_ACTY_MAPS = [1, 2] 

  # 

  # 「기울기 강하」 

  # 

  ENABLE_SLIDE_DESCENT = true 

  # 

  # 방향 점프(true=진실한  : 향하고 있을 방향에 점프。 

  #              false=틀린 : 키가 밀리고 있을 방향에 점프。) 

  # 

  JUMP_AS_KEY = false 

end 

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

# ■ Game_Player 

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

class Game_Player < Game_Character 

  #-------------------------------------------------------------------------- 

  # ○ 공개 인스턴스 변수

  #-------------------------------------------------------------------------- 

  # 기존 

  attr_writer   :direction_fix 

  attr_accessor :walk_anime 

  # 신규

  attr_accessor :now_jumps 

  attr_writer   :xrxs50_direction_sidefix 

  #-------------------------------------------------------------------------- 

  # ○최대 점프 회수

  #-------------------------------------------------------------------------- 

  def max_jumps 

    return 1 

  end 

  #-------------------------------------------------------------------------- 

  # ● 왼쪽을 향한다

  #-------------------------------------------------------------------------- 

  alias xrxs50_turn_left turn_left 

  def turn_left 

    if @xrxs50_direction_sidefix 

      @direction = 4 

    else 

      xrxs50_turn_left 

    end 

  end 

  #-------------------------------------------------------------------------- 

  # ● 오른쪽을 향한다

  #-------------------------------------------------------------------------- 

  alias xrxs50_turn_right turn_right 

  def turn_right 

    if @xrxs50_direction_sidefix 

      @direction = 6 

    else 

      xrxs50_turn_right 

    end 

  end 

end 

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

# ■ Scene_Map 

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

class Scene_Map 

  #-------------------------------------------------------------------------- 

  # ● 메인 처리

  #-------------------------------------------------------------------------- 

  alias xrxs50_main main 

  def main 

    # 체크

    xrxs50_enable_check 

    # 귀환시킨다 

    xrxs50_main 

  end 

  #-------------------------------------------------------------------------- 

  # ● 프레임 갱신

  #-------------------------------------------------------------------------- 

  alias xrxs50_update update 

  def update 

    # 귀환시킨다 

    xrxs50_update 

    # 프레임 갱신 (좌표계 갱신)

    if @xrxs50_enable 

      update_coordinates 

    end 

  end 

  #-------------------------------------------------------------------------- 

  # ○ 프레임 갱신 (좌표계 갱신)

  #-------------------------------------------------------------------------- 

  def update_coordinates 

    if $game_player.passable?($game_player.x,$game_player.y,2) 

      unless $game_player.moving? 

        if XRXS50::ENABLE_SLIDE_DESCENT and 

           Input.press?(Input::RIGHT) and 

           $game_player.passable?($game_player.x,$game_player.y+1,6) 

          $game_player.move_lower_right 

        elsif XRXS50::ENABLE_SLIDE_DESCENT and 

              Input.press?(Input::LEFT) and 

              $game_player.passable?($game_player.x,$game_player.y+1,4) 

          $game_player.move_lower_left 

        else 

          $game_player.move_down 

        end 

      end 

    else 

      $game_player.move_down 

      $game_player.walk_anime = true unless $game_player.walk_anime 

      $game_player.now_jumps  = 0 

      if Input.trigger?(Input::X) and 

         $game_player.now_jumps < $game_player.max_jumps 

        if XRXS50::JUMP_AS_KEY 

          direction = $game_player.direction == 4 ? -1 : 1 

        else 

          if Input.press?(Input::RIGHT) 

            direction = 1 

          elsif Input.press?(Input::LEFT) 

            direction = -2 

          else 

            direction = 0 

          end 

        end 

        $game_player.jump(direction, -5) 

        $game_player.now_jumps += 1 

        $game_player.walk_anime = false 

      end 

    end 

  end 

  #-------------------------------------------------------------------------- 

  # ●  플레이어의 장소 이동

  #-------------------------------------------------------------------------- 

  alias xrxs50_transfer_player transfer_player 

  def transfer_player 

    # 귀환시킨다

    xrxs50_transfer_player 

    # 체크

    xrxs50_enable_check 

  end 

  #-------------------------------------------------------------------------- 

  # ○ XRXS50 하지만 가동할까 판정

  #-------------------------------------------------------------------------- 

  def xrxs50_enable_check 

    if XRXS50::ENABLE_FULL_ACTY_MAPS.include?($game_map.map_id) 

      $game_player.now_jumps = 0 if $game_player.now_jumps.nil? 

      @xrxs50_enable = true 

      $game_player.direction_fix = true 

      $game_player.xrxs50_direction_sidefix = true 

    else 

      @xrxs50_enable = false 

      $game_player.direction_fix = false 

      $game_player.xrxs50_direction_sidefix = false 

    end 

  end 

end 

#점프키 a 


?

  1. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 85 

    @brrsim_7텔레그램 선불유심내구제 급전 뽀로로통신 선불유심매입 뽀로로통신 선불유심현금화하는업체 선불유심구매 간편무서류소액급전

  2. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 115 

    선불유심내구제 텔레그램@brrsim_7 선불유심매입 선불유심구매 뽀로로통신 급전 대학생내구제 비상금 연체자바로소액급전 주말소액급전

  3. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 87 

    @brrsim_7텔레그램 선불유심내구제 선불유심매입 선불폰내구제 뽀로로통신 급전 선불유심현금화하는업체 선불유심구매 무직신불자소액급전

  4. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 105 

    선불유심내구제 텔레그램@brrsim_7 급전 선불유심매입 뽀로로통신 청년비상금급전 내구제소액 소액급전 정식업체 선불유심구매

  5. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 104 

    선불유심내구제 텔레그램@brrsim_7 뽀로로통신 급전 선불유심매입 신불자소액내구제 연체자바로소액급전 선불유심구매 바로모바일급전

  6. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 112 

    선불유심삽니다 텔레그램@brrsim_7 선불유심내구제 뽀로로통신 선불유심매입 선불유심구매 소액내구제 급전 연체대납 바로소액급전 법인소액작업급전

  7. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 88 

    @brrsim_7텔레그램 선불폰유심내구제 선불유심매입 뽀로로통신 급전 선불유심내구제 급전해결내구제 선불유심현금화하는업체 선불유심구매 바로무직자급전

  8. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 111 

    선불유심매입 텔레그램@brrsim_7 선불유심내구제 뽀로로통신 바로소액내구제급전 선불유심구매 급전 선불유심매입 바로소액급전 무서류무방문급전

  9. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 112 

    @brrsim_7텔레그램 선불유심내구제 선불유심매입 뽀로로통신 급전 선불유심현금화하는업체 선불유심구매 백수바로급전내구제

  10. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 105 

    선불유심내구제 텔레그램@brrsim_7 선불유심매입 뽀로로통신 소액급전내구제 급전 연체자바로소액급전 선불유심구매 대학생용돈

  11. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 89 

    @brrsim_7텔레그램 선불유심내구제 뽀로로통신 급전 선불유심매입 유심현금화하는업체 무직비상금바로급전 선불유심구매

  12. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 86 

    선불유심내구제 정식업체 텔레그램@brrsim_7선불유심매입 뽀로로통신 소상공인긴급생활안정자금 급전 선불유심구매 선불유심내구제 소액급전대출 바로신불급전가능

  13. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 103 

    @brrsim_7텔레그램 선불유심매입 선불유심내구제 뽀로로통신 선불유심현금화하는업체 프리랜서소액급전 선불폰유심매입합니다 급전 선불유심구매 바로정산

  14. No Image 06Jul
    by 선불유심내구제뽀로로통신
    2026/07/06 by 선불유심내구제뽀로로통신
    Views 139 

    @brrsim_7텔레그램 선불유심내구제 선불유심매입 뽀로로통신 급전 선불유심현금화하는업체 선불유심구매 백수바로급전내구제

  15. 쯔꾸르 mv 게임을 apk 파일로 변환했는데...

  16. 쯔꾸르 젖소이야기 결혼 방법좀 알려주세요...

  17. No Image 29Nov
    by game메이커xp
    2021/11/29 by game메이커xp
    Views 2138 

    apk포팅 승인 어케 하나요?

  18. No Image 15Jul
    by Neuromancer
    2021/07/15 by Neuromancer
    Views 2676 

    Yanfly님의 Action Sequence Pack 질문드립니다

  19. 싸게 MV 를 먼저? 아니면 돈을 더 들어서라도 MZ?

  20. RMMV - 스탯창과 대화창 변견 관련 질문입니다. (초보입니다 도움좀 주세요 ㅜㅜ)

Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 443 Next
/ 443


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

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