Hi! Welcome to the forum for Platinum Arts Sandbox Free 3D Game Maker. I currently have the forums locked as I am attempting to properly update them.

In the meantime please join the new Discord Server!

If you have any questions please e-mail me through the Platinum Arts website.

Autosave App

Have any cool screenshots and/or projects to show off? Post your content here!
(If you need somewhere to post your images, why not use our gallery?)
Locked
User avatar
Leo_V117
Support Team
Support Team
Posts: 1640
Joined: February 16th, 2010, 8:00 pm
Name: Leo
IRC Username: Leo_V117
Location: That one place...
Contact:

Autosave App

Post by Leo_V117 »

Does anyone ever get annoyed when Youve spent hours on a map and your computer crashes and you realise that you didnt save the map?

Well..... I have a solution to that problem.

If you already have an "autoexec.cfg" file just simply paste the code into the bottom of the file and save it.

Code: Select all

autosave = [
    echo AutoSave ON
    echo Autosave: Autosave Active
    echo Created by: Leo_V117
    asloop_on = 1;
    autosave_loop
]

autosave_loop = [
    sleep 50000 [
        if (= $asloop_on 1) [
            savemap
            echo Autosave: The Map was successfully saved
            autosave_loop
        ] []
    ]
    adscript = [
        echo AutoSave OFF
        asloop_on = 0;
        autosave_loop
        autosave = [
            echo AutoSave ON
            asloop_on = 1;
            autosave_loop
        ]  
    ]
]
If not. Download the autoexec.cfg from one of my other apps and paste the code at the bottom.

Then type /autosave into the console and let the engine do the rest.
User avatar
GR1M
Support Team
Support Team
Posts: 1305
Joined: August 22nd, 2009, 4:35 pm
Name: Luke
IRC Username: Gr1m
Location: Texas
Contact:

Re: Autosave App

Post by GR1M »

Keep up the good work :), it was smart of you to create a autoexec.
Image
Want a user bar like this one? PM Leo
User avatar
Leo_V117
Support Team
Support Team
Posts: 1640
Joined: February 16th, 2010, 8:00 pm
Name: Leo
IRC Username: Leo_V117
Location: That one place...
Contact:

Re: Autosave App

Post by Leo_V117 »

heh heh. The autosave was designed for win 7 users. as the editor always crashes.
Locked