RPGVX 스크립트
2011.08.31 09:24

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

조회 수 2802 추천 수 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. Universal Message System 1.8.0 by ccoa

    Date2013.10.01 CategoryRPGXP 스크립트 By Views581 Votes0
    Read More
  2. UNR (아시려나... ) - 상태 이상

    Date2013.01.20 CategoryRPGXP 스크립트 By동동주 Views936 Votes0
    Read More
  3. UNR (아시려나... ) - 상태 이상

    Date2013.01.20 CategoryRPGXP 스크립트 By동동주 Views1085 Votes0
    Read More
  4. VX Ace 스크립트 사이트

    Date2014.08.07 CategoryRPGVX Ace 스크립트 By제피 Views2678 Votes0
    Read More
  5. VX Ace 용 8방향 이동 스크립트

    Date2016.03.17 CategoryRPGVX Ace 스크립트 By도라지power Views1660 Votes0
    Read More
  6. vx 전용 오토세이브<자동저장>

    Date2011.08.31 CategoryRPGVX 스크립트 By고진수 Views2729 Votes0
    Read More
  7. vx 전용 오토세이브<자동저장>

    Date2011.08.31 CategoryRPGVX 스크립트 By고진수 Views2802 Votes0
    Read More
  8. vx 한글이름입력

    Date2010.05.21 CategoryRPGVX 스크립트 By가가상 Views3062 Votes1
    Read More
  9. vx 한글이름입력

    Date2010.05.21 CategoryRPGVX 스크립트 By가가상 Views2773 Votes1
    Read More
  10. VXA에서 XBOX360 컨트롤러 사용 여부 체크

    Date2018.07.15 CategoryRPGVX Ace 스크립트 By러닝은빛 Views695 Votes0
    Read More
  11. Wav 파일 암호화 도구 - RMMV

    Date2016.11.30 CategoryRPGMV 플러그인 By러닝은빛 Views1236 Votes1
    Read More
  12. Wave Filter

    Date2016.01.14 CategoryRPGMV 플러그인 By러닝은빛 Views965 Votes0
    Read More
  13. Weather EX 날씨 확장 플러그인입니다.

    Date2016.01.03 CategoryRPGMV 플러그인 ByBeeBee Views1111 Votes0
    Read More
  14. Window_Message_Plus v3.2

    Date2009.11.29 CategoryRPGVX 스크립트 By에존 Views2446 Votes1
    Read More
  15. Window_Message_Plus v3.2

    Date2009.11.29 CategoryRPGVX 스크립트 By에존 Views2649 Votes1
    Read More
  16. YouTube Player

    Date2016.05.08 CategoryRPGMV 플러그인 By러닝은빛 Views1481 Votes0
    Read More
  17. [ MV ] 심장[체력표시 하트] 플러그인

    Date2018.07.01 CategoryRPGMV 플러그인 By수성의물 Views1993 Votes0
    Read More
  18. [C#] 보안 64비트 정수

    Date2016.01.04 Category유니티 스크립트 By맛난호빵 Views385 Votes0
    Read More
  19. [JS] 세이브 갯수를 20개에서 변경하기.

    Date2015.10.26 CategoryRPGMV 플러그인 By천무 Views510 Votes0
    Read More
  20. [plugin] YEP.58 – Item Synthesis (YEP엔진 아이템 합성 시스템)

    Date2016.01.21 CategoryRPGMV 플러그인 Byplam Views2376 Votes0
    Read More
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 15 Next
/ 15






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

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