RPGVX 스크립트
2011.08.31 09:24

vx 전용 오토세이브<자동저장>

조회 수 2736 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
#===========================================================================
# ⊙ 자동저장[AutoSave] (실시간 저장)
# 원본 제작자 : 패닉(kcss)
# 원본 개조자 : 좌절금지(pronto_jop)
# 사용법:스크립트[이벤트내장] -> 'AutoSave' 입력하고 ['' 는 빼고]
# 대기 1프레임씩 주고 병렬처리
#===========================================================================
#
# 취급주의(?)
# 사용시 반드시 저장경로를 적어주셔야합니다.
# 수정할곳 : Scene_Title , Scene_File , Window_SaveFile
#
#===========================================================================
def 오토세이브
file = File.open("D:라스트겟엠-스트라이커", "wb")
write_save_data(file)
file.close
end
def write_save_data(file)
characters = [1]
for i in 0...$game_party.actors.size
actor = $game_party.actors[i]
characters.push([actor.character_name, actor.character_hue])
end
Marshal.dump(characters, file)
Marshal.dump(Graphics.frame_count, file)
$game_system.save_count += 1
$game_system.magic_number = $data_system.magic_number
Marshal.dump($game_system, file)
Marshal.dump($game_switches, file)
Marshal.dump($game_variables, file)
Marshal.dump($game_self_switches, file)
Marshal.dump($game_screen, file)
Marshal.dump($game_actors, file)
Marshal.dump($game_party, file)
Marshal.dump($game_troop, file)
Marshal.dump($game_map, file)
Marshal.dump($game_player, file)
Marshal.dump($ABS, file) # ABS 관련 [ABS 안쓰시면 삭제]
Marshal.dump($name, file) # 조합한글 관련 [조합한글 안쓰시면 삭제]
Marshal.dump($name_id, file) # 조합한글 관련 [조합한글 안쓰시면 삭제]
Marshal.dump($passwords, file) # 조합한글 관련 [조합한글 안쓰시면 삭제]
Marshal.dump($words, file) # 조합한글 관련 [조합한글 안쓰시면 삭제]
end
#===========================================================================

사용법 모르겟씀 ㅠㅠ

?

  1. 맵 이름을 화면 상단에 띄우기.

    Date2008.10.12 CategoryRPGXP 스크립트 By창조도시 Views2778 Votes1
    Read More
  2. 대각선 방향 이동추가로 8방향 이동 만들기.

    Date2008.08.14 CategoryRPGXP 스크립트 By창조도시 Views2061 Votes1
    Read More
  3. 대화 글씨 폰트를 원하는 폰트로 바꾸기

    Date2007.12.01 CategoryRPGXP 스크립트 By창조도시 Views1825 Votes2
    Read More
  4. 새로운 게임 시작/로드 시 미묘한 연출 추가.

    Date2007.12.01 CategoryRPGXP 스크립트 By창조도시 Views2615 Votes1
    Read More
  5. UNR (아시려나... ) - 상태 이상

    Date2013.01.20 CategoryRPGXP 스크립트 By동동주 Views940 Votes0
    Read More
  6. 아이템획득 표시

    Date2010.10.14 CategoryRPGXP 스크립트 ByA.M.S Views2284 Votes0
    Read More
  7. 특정범위내에들어오면이동하기

    Date2010.10.14 CategoryRPGXP 스크립트 ByA.M.S Views3094 Votes0
    Read More
  8. 스텟포인트투자

    Date2010.10.24 CategoryRPGXP 스크립트 ByA.M.S Views2152 Votes2
    Read More
  9. 아이템소지 한계돌파

    Date2010.10.24 CategoryRPGXP 스크립트 ByA.M.S Views1968 Votes0
    Read More
  10. 퀘스트스크립트

    Date2010.10.24 CategoryRPGXP 스크립트 ByA.M.S Views2514 Votes1
    Read More
  11. 1인용메뉴

    Date2010.07.18 CategoryRPGVX Ace 스크립트 ByA.M.S Views2623 Votes0
    Read More
  12. vx 전용 오토세이브<자동저장>

    Date2011.08.31 CategoryRPGVX 스크립트 By고진수 Views2736 Votes0
    Read More
  13. 그레고리우스력 원리.

    Date2011.06.22 CategoryRPGXP 스크립트 By협객 Views2514 Votes0
    Read More
  14. [무한응용]스위치/변수 임시 저장/로딩하기

    Date2010.04.10 CategoryRPGXP 스크립트 By카리스 Views2597 Votes1
    Read More
  15. 반칸이동

    Date2010.07.18 CategoryRPGXP 스크립트 ByA.M.S Views2187 Votes0
    Read More
  16. 8방향이동

    Date2010.10.14 CategoryRPGXP 스크립트 ByA.M.S Views2160 Votes0
    Read More
  17. 새로운 턴형식(사이드뷰비슷한...)

    Date2010.10.14 CategoryRPGXP 스크립트 ByA.M.S Views2477 Votes1
    Read More
  18. 직업명 표시

    Date2010.10.24 CategoryRPGXP 스크립트 ByA.M.S Views1794 Votes0
    Read More
  19. 부드러운화면이동

    Date2010.10.24 CategoryRPGXP 스크립트 ByA.M.S Views2051 Votes0
    Read More
  20. 상점에서 상세정보보여주기

    Date2010.10.24 CategoryRPGXP 스크립트 ByA.M.S Views1824 Votes0
    Read More
Board Pagination Prev 1 ... 6 7 8 9 10 11 12 13 14 15 Next
/ 15






[개인정보취급방침] | [이용약관] | [제휴문의] | [후원창구] | [인디사이드연혁]

Copyright © 1999 - 2016 INdiSide.com/(주)씨엘쓰리디 All Rights Reserved.
인디사이드 운영자 : 천무(이지선) | kernys(김원배) | 사신지(김병국)