Easy backup

J-M v2.5.5

BANNED
BANNED
Joined
Feb 26, 2005
Messages
5,675
Reaction score
1
Age
35
Location
Nijmegen, the Netherlands.
Gotta love Batch files :D

I made one that decompiles all my 80 custom MS maps so I can check them out. Of course I only need such a thing once but it's really handy.



Back on topic: Too bad the link is broken, I would like to see how you did it.
 

Kuroneko

New Adventurer
MSC Developer
Joined
Jul 18, 2004
Messages
998
Reaction score
1
Location
Pittsburgh, Pennsylvania
Backup.bat



copy save1.char \char-bak\

copy save2.char \char-bak\

copy save3.char \char-bak\



Restore.bat



copy \char-bak\save1.char \.

copy \char-bak\save2.char \.

copy \char-bak\save3.char \.





Thats one way to do it.
 
Top