Gamestudio Links
Zorro Links
Newest Posts
Zorro 2.70
by jcl. 09/29/25 09:24
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
assetHistory one candle shift
by jcl. 09/21/25 11:36
Plugins update
by Grant. 09/17/25 16:28
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
0 registered members (), 18,008 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
krishna, DrissB, James168, Ed_Love, xtns
19168 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Quicksave and -load functions #81039
07/12/06 00:24
07/12/06 00:24
Joined: May 2004
Posts: 1,510
Denmark
Claus_N Offline OP
Serious User
Claus_N  Offline OP
Serious User

Joined: May 2004
Posts: 1,510
Denmark
Hi,

Just wanted to know if it's possible to call the quicksave and quickload functions (the default functions for F2 and F3) from C-Script?

Thanks

Re: Quicksave and -load functions [Re: Claus_N] #81040
07/14/06 17:13
07/14/06 17:13
Joined: Oct 2002
Posts: 4,753
Munich, Bavaria, South of Germ...
TripleX Offline
Expert
TripleX  Offline
Expert

Joined: Oct 2002
Posts: 4,753
Munich, Bavaria, South of Germ...
of course..The Quick Save and Quick Load function is nth. more than normal game_Save/load calls.

Copied from the default.c

Code:


void def_save()
{
game_save(app_name,1,SV_ALL-SV_INFO);
beep();
}

void def_load()
{
game_load(app_name,1);
}



in c-script:

Code:

function def_save() //f2
{
game_save(app_name,1,SV_ALL - SV_INFO);
}
function def_load() //f3
{
game_load(app_name,1);
}



TripleX

Re: Quicksave and -load functions [Re: TripleX] #81041
07/14/06 23:03
07/14/06 23:03
Joined: May 2004
Posts: 1,510
Denmark
Claus_N Offline OP
Serious User
Claus_N  Offline OP
Serious User

Joined: May 2004
Posts: 1,510
Denmark
Okay.. Also though about that ;P

Thanks


Gamestudio download | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1