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 7282
661 이동 및 탈것 비공정 스크립트 5 file 백호 2009.02.22 1515
660 아이템 아이템소지수 한계돌파 (중복일지도) 12 카르닉스 2010.02.26 1525
659 이동 및 탈것 데쉬 기능 스크립트 8 file 백호 2009.02.21 1526
658 기타 Character Creator by Leon@Creation Asylum 2 file 백호 2009.02.22 1527
657 기타 SFont 사용 스크립트 by Trickster Alkaid 2010.10.05 1527
656 스킬 Grouping and Detail 7.2 by DerVVulfman 1 file Alkaid 2010.09.02 1528
655 그래픽 Event Transparency by DerVVulfman (XP/VX/VXA) Alkaid 2012.09.01 1528
654 기타 KGC - RMXP 스크립트 개발용 프로젝트 1.01 4 file 백호 2009.02.22 1532
653 저장 세이브 슬롯 갯수 증가와 세이브 덮어씌울 때 확인 by RPG Advocate 5 백호 2009.02.22 1533
652 이동 및 탈것 Mouse_move 호환 100%강화버전 4 file 백호 2009.02.21 1534
651 장비 Auto Equipment Optimization for Guillaume777's Multi Slot Script by DerVVulfman Alkaid 2012.09.09 1535
650 기타 참 시스템 완성! 1 file 백호 2009.02.22 1536
649 기타 My메세지(메세지 출력 스크립트) 1 file 백호 2009.02.22 1542
648 기타 Seph's Test Bed v.4 (파일첨부) (SDK2.x용) Alkaid 2010.10.08 1542
647 기타 ↓ 날씨 자동설정 스크립트 3 백호 2009.02.22 1544
646 전투 KGC_SPdeath (SP전투불능) file 백호 2009.02.22 1544
645 상점 상점 시세 변동 스크립트 수정판 3 백호 2009.02.22 1547
644 상점 간단한 여관 by Tsunokiette@Creation Asylum 2 백호 2009.02.22 1550
643 넷플2.0(펌) 1 오동훈 2008.02.25 1552
642 기타 디버그 윈도우 강화! 3 file 백호 2009.02.21 1561
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