Save without using scene_save

Started by cyclope, September 09, 2010, 08:07:49 pm

Previous topic - Next topic

cyclope

What i want is exactly what this topic name says, save without using Scene_Save. I (not the player) want to be able to choose in wich save file I want the game to be saved when I am doing and event.. I am ussing blizz-aabs, Mouse controller, C'coa UMS and Item Storage by g_g.
Things I Hate

1. People who point at their wrist asking for the time... I know where my watch is pal, where the hell is yours? Do I point at my crotch when I ask where the toilet is?

2. People who are willing to get off their a** to search the entire room for the TV remote because they refuse to walk to the TV and change the channel manually.

3. When people say "Oh you just want to have your cake and eat it too". Damn Right! What good is cake if you can't eat it?

4. When people say "it's always the last place you look". Of course it is. Why the hell would you keep looking after you've found it? Do people do this? Who and where are they?

5. When people say while watching a film, "did ya see that?" No Loser, I paid $12 to come to the cinema and stare at the damn floor!

6. People who ask "Can I ask you a question?"... Didn't give me a choice there, did ya sunshine?

gerrtunk

Quote from: cyclope on September 09, 2010, 08:07:49 pm
What i want is exactly what this topic name says, save without using Scene_Save. I (not the player) want to be able to choose in wich save file I want the game to be saved when I am doing and event.. I am ussing blizz-aabs, Mouse controller, C'coa UMS and Item Storage by g_g.


Maybe in a few days i will post a save script that is in development andd let you this and a lot of other things

cyclope

Things I Hate

1. People who point at their wrist asking for the time... I know where my watch is pal, where the hell is yours? Do I point at my crotch when I ask where the toilet is?

2. People who are willing to get off their a** to search the entire room for the TV remote because they refuse to walk to the TV and change the channel manually.

3. When people say "Oh you just want to have your cake and eat it too". Damn Right! What good is cake if you can't eat it?

4. When people say "it's always the last place you look". Of course it is. Why the hell would you keep looking after you've found it? Do people do this? Who and where are they?

5. When people say while watching a film, "did ya see that?" No Loser, I paid $12 to come to the cinema and stare at the damn floor!

6. People who ask "Can I ask you a question?"... Didn't give me a choice there, did ya sunshine?

gerrtunk

Quote from: cyclope on September 09, 2010, 09:11:02 pm
Ty, ill we waiting for it.

I think it will take some more time. Anyway, what you want to do is too easy to script if you know about the save system:

Call this script:

s = Scene_Save.new                         
n = s.make_filename(X)
f = File.open(n, "wb")
s.write_save_data(f)
f.close

Where X is the save slot number -1. Ex: if you want to save in the slot 2 use:

s = Scene_Save.new                         
n = s.make_filename(1)
f = File.open(n, "wb")
s.write_save_data(f)
f.close