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 6159
661 장비 Auto Equipment Optimization for Guillaume777's Multi Slot Script by DerVVulfman Alkaid 2012.09.09 1497
660 넷플2.0(펌) 2번째 2 오동훈 2008.02.25 1498
659 아이템 아이템소지수 한계돌파 (중복일지도) 12 카르닉스 2010.02.26 1500
658 저장 세이브 슬롯 갯수 증가와 세이브 덮어씌울 때 확인 by RPG Advocate 5 백호 2009.02.22 1506
657 이동 및 탈것 비공정 스크립트 5 file 백호 2009.02.22 1506
656 이동 및 탈것 데쉬 기능 스크립트 8 file 백호 2009.02.21 1508
655 스킬 Grouping and Detail 7.2 by DerVVulfman 1 file Alkaid 2010.09.02 1510
654 기타 Character Creator by Leon@Creation Asylum 2 file 백호 2009.02.22 1511
653 이동 및 탈것 Mouse_move 호환 100%강화버전 4 file 백호 2009.02.21 1512
652 기타 SFont 사용 스크립트 by Trickster Alkaid 2010.10.05 1513
651 기타 KGC - RMXP 스크립트 개발용 프로젝트 1.01 4 file 백호 2009.02.22 1515
650 상점 상점 시세 변동 스크립트 수정판 3 백호 2009.02.22 1518
649 기타 참 시스템 완성! 1 file 백호 2009.02.22 1523
648 전투 KGC_SPdeath (SP전투불능) file 백호 2009.02.22 1527
647 기타 ↓ 날씨 자동설정 스크립트 3 백호 2009.02.22 1530
646 상점 간단한 여관 by Tsunokiette@Creation Asylum 2 백호 2009.02.22 1530
645 기타 My메세지(메세지 출력 스크립트) 1 file 백호 2009.02.22 1533
644 기타 Seph's Test Bed v.4 (파일첨부) (SDK2.x용) Alkaid 2010.10.08 1533
643 메뉴 MOG - Scroll Bar for XP file 습작 2014.07.06 1534
642 장비 Multislots! 2.1 by DerVVulfman 3 file Alkaid 2010.09.02 1538
Board Pagination Prev 1 ... 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 ... 52 Next
/ 52