# ───────────────────────
# ★잠수방지 스크립트★
# 제작자 : kcss
# 요청자 : 금금
# 설명 : 일정시간동안 움직이지않고 잠수타면
# 경고메세지 띄우기
# ───────────────────────
Count = 3 #시간설정 초단위임
class Game_Player
alias jamsuno_update update #잠수no로 했음 ㅋㅋ
def update
jamsuno_update
unless moving? or jumping?
if @delay == nil or @delay == 0
@delay = Count*40
else
@delay -= 1
return
end
print("경고")
end
end
end
# ★잠수방지 스크립트★
# 제작자 : kcss
# 요청자 : 금금
# 설명 : 일정시간동안 움직이지않고 잠수타면
# 경고메세지 띄우기
# ───────────────────────
Count = 3 #시간설정 초단위임
class Game_Player
alias jamsuno_update update #잠수no로 했음 ㅋㅋ
def update
jamsuno_update
unless moving? or jumping?
if @delay == nil or @delay == 0
@delay = Count*40
else
@delay -= 1
return
end
print("경고")
end
end
end