XP 스크립트

안녕하세요,

앞잡이입니다.

탤레포트 쓰고 싶은분들 많으신데

아래를 복사해서 스크립트에 담으면 됩니다.

키는 D입니다

 

 

#=================================================
# ■ 텔레포트 스크립트
#-------------------------------------------------
#   기존 대쉬 스크립트를 플레이어를
#    순간이동 시키도록 만들었습니다
#    움직이는동안 D키를 누르면 됩니다
#    수정:kcss
#=================================================

Animation = 2
Con_sp = 2

class Game_Player #클래스 지정 입니다.
alias teleport_update update
def update #업데이트
if Input.trigger?(Input::Z) #Z버튼을 눌렀을때 시작
unless $game_party.actors[0].sp < Con_sp
case @direction
when 2  # 하
if Input.press?(Input::DOWN)
$game_player.animation_id = Animation
$game_party.actors[0].sp -= Con_sp
moveto($game_player.x, $game_player.y+2)
else
moveto($game_player.x, $game_player.y)
end
when 4  # 왼쪽
if Input.press?(Input::LEFT)
$game_player.animation_id = Animation
$game_party.actors[0].sp -= Con_sp
moveto($game_player.x-2, $game_player.y)
else
moveto($game_player.x, $game_player.y)
end
when 6  # 오른쪽
if Input.press?(Input::RIGHT)
$game_player.animation_id = Animation
$game_party.actors[0].sp -= Con_sp
moveto($game_player.x+2, $game_player.y) 
else
moveto($game_player.x, $game_player.y)
end
when 8  # 상
if Input.press?(Input::UP)
$game_player.animation_id = Animation 
$game_party.actors[0].sp -= Con_sp
moveto($game_player.x, $game_player.y-2) 
else
moveto($game_player.x, $game_player.y)
end
end
end
end
teleport_update
end
end


List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 스크립트 자료 게시물 작성시 주의사항 습작 2012.12.24 6153
961 오디오 Audio Module Rewrite mciSendString 1.1 by DerVVulfman Alkaid 2012.09.18 1367
960 장비 Auto Equipment Optimization for Guillaume777's Multi Slot Script by DerVVulfman Alkaid 2012.09.09 1497
959 영상 avi 동영상 실행 스크립트 9 백호 2009.02.21 2278
958 영상 AVI 동영상 파일 지원가능하게 하는 스크립트 5 아방스 2007.11.09 2070
957 전투 Battle Report 1.6 by Raziel@rmxp.org 1 file 백호 2009.02.22 1672
956 상태/속성 BattleStatus Modification 1.1 for RTAB by DerVVulfman@rmxp.org 2 file 백호 2009.02.22 1788
955 영상 berka's Video Script II Reloaded 1.2 2 Alkaid 2010.10.08 1399
954 그래픽 Bitmap update 2.0 by Linkin_T 1 백호 2009.02.22 985
953 스킬 Blacksmith System 2.0 by ForeverZer0 4 Alkaid 2011.09.07 1768
952 전투 Blizz-ABS 1.95 27 아방스 2008.03.05 4028
951 기타 Boat Script 백호 2009.02.21 729
950 기타 Book Event v2 by Bruth 5 백호 2009.02.22 1694
949 메뉴 Breath Of Fire 스타일의 메뉴 3 file 백호 2009.02.21 2342
948 맵/타일 Call Map Event by DerVVulfman Alkaid 2011.12.21 1861
947 아이템 Categorized Items Menu 1.3 by albertfish 1 file Alkaid 2010.09.09 1795
946 오디오 CG, 음악 감상 스크립트 [한글화] 11 file 백호 2009.02.21 2403
945 기타 CG그림 감상 스크립트 file 백호 2009.02.21 1735
944 기타 CG모드 도입 스크립트 file 백호 2009.02.21 1383
943 기타 Chaos Project Debug System 1.06b by Blizzard file Alkaid 2010.09.07 1367
942 저장 Chaos Project Save Layout 1.4 by Fantasist, Blizzard file Alkaid 2010.10.08 1558
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ... 52 Next
/ 52