RPGXP 스크립트
2014.06.01 22:35

횡스크롤 점프 [버튼허용스위치추가]

조회 수 1626 추천 수 0 댓글 3
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 수정 삭제
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 수정 삭제
bandicam 2014-06-01 13-28-50-918.jpg
이벤트도중에 이동 경로 설정 해놓고 가고있는데..
점프키 누르면 도중에 되버려서 짜증났는데..
if($game_switches[27]) 스위치 27 ON 일 경우 [점프] 누르면 점프
스위치 OFF 일 경우 점프버튼 눌러도 무반응
Shadow.png

=begin

□횡스크롤 점프 스크립트 ■ (2014년 6월 1일)

! 스크립트 위치는 Scene_Debug 밑에서

※점프키: Alt 

점프키버튼 87줄

점프키스위치 100줄

※사다리 126줄

=end

class XRXS50 

  ENABLE_FULL_ACTY_MAPS = true

  ENABLE_SLIDE_DESCENT = true 

  JUMP_AS_KEY = false

end 


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 


class Scene_Map 


  alias xrxs50_main main 

  def main 


    xrxs50_enable_check 


    xrxs50_main 

  end 


  alias xrxs50_update update 

  def update

    xrxs50_enable_check 

    $tag = $game_player.terrain_tag 

    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

      $game_variables[18] = 0

       if Input.trigger?(Input::ALT)  and            # 점프키■

         $game_player.now_jumps < $game_player.max_jumps

        if XRXS50::JUMP_AS_KEY 

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

        else 

          if Input.press?(Input::RIGHT) 

            direction = 2.25

          elsif Input.press?(Input::LEFT) 

            direction = -2.25 

          else 

            direction = 0 

          end 

        end 

        if($game_switches[27])                # 점프키 스위치 스위치27ON 할경우 점프가능/ OFF 할경우 점프키눌러도 무반응■

        $game_player.jump(direction, -2)

        $game_variables[1] = 1

        $game_player.now_jumps += 1

        

        $game_player.walk_anime = true

        end

      end 

    end 


  end 


  alias xrxs50_transfer_player transfer_player 

  def transfer_player 


    xrxs50_transfer_player 


    xrxs50_enable_check 

  end 


  def xrxs50_enable_check 

  if $tag == 0 and XRXS50::ENABLE_FULL_ACTY_MAPS 

      $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 

     elsif $tag == 1 and XRXS50::ENABLE_FULL_ACTY_MAPS    # 태그1이면 사다리■

      @xrxs50_enable = false

      $game_player.direction_fix = false

      $game_player.xrxs50_direction_sidefix = false 

    end 

  end 

  end

?
  • ?
    j군 2014.07.05 15:27
    스크립트 오류 뜹니다.
    어디서부터 시작하는거죠?
    스크립트 한글 끝난거부터입니까?
    아니면다입니까?
  • ?
    qfz-34 2014.12.10 05:18
    위키 누루면 점프되네요
  • ?
     운 2014.07.05 21:12
    =begin 부터합니다. 횡스크롤 스크립트는 몇몇스크립트 충돌이 많이 일어나서, 조심히 다루어야 합니다..

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수 추천 수
148 RPGVX Ace 스크립트 LuD Script Package 1 file LuD 2017.08.16 1468 0
147 RPGXP 스크립트 그림자문자 사용하기.. 바탕색이 무슨색이건 상관없이 글자가 잘보인다!!! 창조도시 2007.11.06 1475 1
146 RPGMV 플러그인 YouTube Player 6 file 러닝은빛 2016.05.08 1477 0
145 RPGVX Ace 스크립트 지속데미지 스크립트(MBS) 天下太平 2016.02.14 1516 0
144 RPGXP 스크립트 캐릭터 그림자 2 청담 2013.09.24 1546 0
143 RPGMV 플러그인 [鳥小屋] 실적 플러그인(인게임 트로피 시스템) file 이니군 2017.10.31 1548 0
142 RPGMV 플러그인 퀘스트 시스템 플러그인! Gameus' Quest System 1 file willmv 2015.11.07 1571 0
141 RPGXP 스크립트 메세지에 얼굴, 이름등 다양한 기능 넣기 UMS 스크립트 1 데노제 2013.12.10 1616 0
» RPGXP 스크립트 횡스크롤 점프 [버튼허용스위치추가] 3  운 2014.06.01 1626 0
139 RPGXP 스크립트 아이템창을 아이템 분류별로 나누어 지게 개조. 3 file 창조도시 2007.12.02 1641 1
138 RPGMV 플러그인 업적플러그인 스트레이보우 2020.09.02 1643 0
137 RPGMV 플러그인 발소리 재생 플러그인 6 file 러닝은빛 2015.12.28 1644 0
136 RPGXP 스크립트 촬영 기술(부드러운 맵스크롤) 2 청담 2013.09.24 1650 0
135 RPGXP 스크립트 게임도중에 글씨체를 바꿔보자. 창조도시 2008.12.31 1652 1
134 RPGVX Ace 스크립트 VX Ace 용 8방향 이동 스크립트 1 도라지power 2016.03.17 1654 0
133 RPGXP 스크립트 상점에서 아이템 능력치를 표시해주는 스크립트 1 2013.10.01 1656 0
132 RPGXP 스크립트 가상 키보드 입력 스크립트 2013.10.01 1660 0
131 RPGMV 플러그인 한글 이름 입력 처리 플러그인 1 file 파란별빛 2015.10.24 1670 0
130 RPGXP 스크립트 네코에서 되는 마우스 스크립트 13 휴리드 2013.09.30 1675 0
129 RPGXP 스크립트 로고를 띄우는 스크립트 14 XEONSOFT블로그 2013.10.07 1678 0
Board Pagination Prev 1 ... 3 4 5 6 7 8 9 10 11 12 ... 15 Next
/ 15






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

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