원레 텔포 스크립트가
#=================================================
# ■ 텔레포트 스크립트
#-------------------------------------------------
# 기존 대쉬 스크립트를 플레이어를
# 순간이동 시키도록 만들었습니다
# 움직이는동안 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+5)
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-5, $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+5, $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-5)
else
moveto($game_player.x, $game_player.y)
end
end
end
end
teleport_update
end
end
인데
마나가 너무 적게 소비된다거나 너무 많이 소비된다 하는분들을 위해
이강좌를 올립니다.
만약게 중복이면 죄송
다시 강좌로 가면
Animation = 2
Con_sp = 2
이부분에
Con_sp = 2←를 조정하면 됩니다.
만약에 한번쓰면 10을 소비한다하면
Con_sp = 10로
난 소비하지 않고 하겠다 하면
Con_sp = 0으로 하면 됩니다
이상으로 지존이었습니다.