The Daily Click ::. Forums ::. Klik Coding Help ::. Permadeath
 

Post Reply  Post Oekaki 
 

Posted By Message

Sketchy

Cornwall UK

Registered
  06/11/2004
Points
  1970

VIP MemberWeekly Picture Me This Round 43 Winner!Weekly Picture Me This Round 47 WinnerPicture Me This Round 49 Winner!
15th October, 2008 at 01:11:04 -

I was just wondering if anyone has any ideas on the best way to achieve this in a game.

Basically,
I want the player to be able to save their game, so they can come back and continue it later. However, if they die, I don't want them to be able to just load up the saved game again like nothing happened - death should be permanent.

The obvious solution would be to just delete the saved game file when the player dies, but then what's to stop the player looking in the game folder and creating copies of the saved game before they die?

Any suggestions appreciated

 
n/a

OMC

What a goofball

Registered
  21/05/2007
Points
  3516

KlikCast Musician! Guy with a HatSomewhat CrazyARGH SignLikes TDCHas Donated, Thank You!Retired Admin
15th October, 2008 at 01:14:44 -

I have alot of ideas... unique ID's upon bootup, storing the info in the game instead of an INI, setting a value upon exit, etc...

You could just let them be cheap cheaters.

 

  		
  		

simon kubisch



Registered
  21/09/2008
Points
  13
15th October, 2008 at 01:16:29 -

save on a server^^

or save another hidden file somewhere nobody finds it with the information which savegames are "lost"

i think there are not many opportunities... look at games like diablo 2, they are no "hardcore"-characters in singleplayer because of this problem

Image Edited by the Author.

 
n/a

Sketchy

Cornwall UK

Registered
  06/11/2004
Points
  1970

VIP MemberWeekly Picture Me This Round 43 Winner!Weekly Picture Me This Round 47 WinnerPicture Me This Round 49 Winner!
15th October, 2008 at 01:40:26 -

Thanks for the suggestions.

OldManClayton: Sorry, could you elaborate on those please - I don't really understand. How could you store the info "in the game" without losing it when the player quits?

Simon Kubisch: It won't be an online game, so the server idea isn't really an option. I think a lot of people don't like games leaving random files all over their harddrives without their consent.


I've played games that do it very effectively, so they can tell if the file you're loading is a copy and not the original. "Critical Mass" for example - I was devestated after working my way up to Admiral, only to be killed by a fluke hit to my ejector pod...

Is there some way to read the "time & date modified" or "time & date created" of a file in mmf2? Maybe then I could store the date in the file somewhere and check they match? Or can you edit the "date modified" easily from windows? That would make it useless.

 
n/a

AndyUK

Mascot Maniac

Registered
  01/08/2002
Points
  14586

Game of the Week WinnerSecond GOTW AwardHas Donated, Thank You!VIP Member
15th October, 2008 at 02:29:26 -

I was going to add a perma death feature to my game, but then i realized the same as you did in that people could copy their save file.

 
.

aphant



Registered
  18/05/2008
Points
  1242
15th October, 2008 at 03:11:33 -

I've played with the concept of permadeath, but then I realized its a pain in the ass for the player. What if there's a bug in your game that causes the player to die instantly for no reason? You're basically saying, "Screw you, restart your game from scratch," for something that's entirely YOUR fault. Punishing the player for something they didn't do is bad game design.

Don't want people to save/load to "cheat" your game? Don't cheat them out of your game with permadeath. Instead, consider options like designated save points that are few in number, like at the beginning of a level in a platformer or only in the hotels of large cities in RPGs.

 

Cecilectomy

noPE

Registered
  19/03/2005
Points
  305

Has Donated, Thank You!VIP MemberWeekly Picture Me This Winner!Cardboard BoxGhostbuster!Pokemon Ball!ComputerBox RedSanta HatSnowman
I am an April Fool
15th October, 2008 at 04:08:18 -

permadeath is basically a no save feature. problem solved.

 
n/a

Marko

I like you You like you

Registered
  08/05/2008
Points
  2804

Has Donated, Thank You!Game of the Week WinnerVIP Member360 OwnerDos Rules!Happy FellahCrazy EvilI am an April FoolGingerbread House
15th October, 2008 at 07:57:18 -

How about having a setting in the save game file that when set at, for example 0, nothing happens. However, when a player dies the setting is changed to 1 automatically saves progress. From then on whenever that save game file is opened the setting switched to 1 will automatically send the player to a game-over screen?

 
Image

Subliminal Dreams. . ., daily gaming news and the home of Mooneyman Studios!
www.mooneyman-studios.webs.com

Ricky

loves Left For Dead 2

Registered
  28/12/2006
Points
  4175

Has Donated, Thank You!Game of the Week WinnerVIP MemberWii OwnerHero of TimeGOTM Winner! - November 2009I am an April Fool
15th October, 2008 at 08:13:32 -

the player can still make a back up copy of that file and replace it.

 
-

aphant



Registered
  18/05/2008
Points
  1242
15th October, 2008 at 08:31:00 -

They could also just stop playing the game. Or, they could write a program in MMF for it to manage their saves!

 

]Alpha[



Registered
  19/09/2003
Points
  245
15th October, 2008 at 11:18:20 -

I think it should be quite easy.

Let's assume you have a .INI file with all the saved data.
For example :

[Save01]
Level=3
Lives=5
Points=1200

Then if you want permadeath, you can do something like this :
+ Number of lives of "player1" reach 0
° Set ("File.INI", "Save01", "Level") to 0
° Set ("File.INI", "Save01", "Lives") to 0
° Set ("File.INI", "Save01", "Points") to 0


This way you have erased all the data in your INI file.
If you need more specific help for your situation, just ask

 
All that I see is the years...

Assault Andy

Administrator
I make other people create vaporware

Registered
  29/07/2002
Points
  5686

Game of the Week WinnerVIP Member360 OwnerGOTM JUNE - 2009 - WINNER!GOTM FEB - 2010 - WINNER!	I donated an open source project
15th October, 2008 at 12:01:54 -

If you want to get really pedantic about it you could use the binary extension to slap the MD5 of the savefile onto the end of your exe. Then when you start the game check the MD5 of the save file against the one stored at the end of your exe. Most people wouldn't guess to copy and backup both the exe and the save file.

But I don't really like the idea of permadeath in the first place

 
Creator of Faerie Solitaire:
http://www.create-games.com/download.asp?id=7792
Also creator of ZDay20 and Dungeon Dash.
http://www.Jigxor.com
http://twitter.com/JigxorAndy

Sketchy

Cornwall UK

Registered
  06/11/2004
Points
  1970

VIP MemberWeekly Picture Me This Round 43 Winner!Weekly Picture Me This Round 47 WinnerPicture Me This Round 49 Winner!
15th October, 2008 at 17:26:04 -

ok, thanks a lot everybody - I should be able to come up with something using one or more of those ideas.

I agree that permadeath isn't good in most cases, but sometimes it is appropriate. Generally, if the game doesn't have a specific long-term goal (and especially if there are a never-ending supply of randomly generated levels), or if the goal is deliberately so hard to achieve that most players won't be able to, then permadeath is a good idea. Imagine if you could keep loading saved games in Tetris - it would go on forever; however, it would still be nice to be able to save your game, because let's face it - tetris does get quite tedious after a while. Permadeath is also one of the defining features of a "rogue-like".

Adam Phant: I'm certainly hoping that there won't be any bugs resulting in "unfair" death, so I'm not concerned about that. I don't think it's cheating the player.

 
n/a

Del Duio

Born in a Bowling Alley

Registered
  29/07/2005
Points
  1078

GOTW WINNER CUP 1!GOTW WINNER CUP 2!GOTW WINNER CUP 3!GOTW WINNER CUP 4!Evil klikerHasslevania 2!The OutlawSanta Boot
16th October, 2008 at 01:16:05 -

Permadeath in the old Apple II game Deathlord was really brutal but maybe you could do the same type of thing. As soon as one of your guys (or THE guy) dies, make the game save instantly. You could also alter one or two variables to that same save file so that if the person tried to re-load the thing it'd detect the guy had already died and refuse to load the information. You could also do funny things like make the player's max HP equal to 0 when the die.

I don't know, but it shouldn't be too hard.

 
--

"Del Duio has received 0 trophies. Click here to see them all."

"To be a true ninja you must first pick the most stealthy of our assorted combat suits. Might I suggest the bright neon orange?"

DXF Games, coming next: Hasslevania 2- This Space for Rent!

Sketchy

Cornwall UK

Registered
  06/11/2004
Points
  1970

VIP MemberWeekly Picture Me This Round 43 Winner!Weekly Picture Me This Round 47 WinnerPicture Me This Round 49 Winner!
16th October, 2008 at 02:26:12 -

I think you might be missing the point a bit. The player could still just open up the game folder in the windows explorer, find the saved game file, and make a copy of it every now and then before they die. Then, if they do die, they just overwrite the existing file with their copy.

What I need, is a way to check the save game file is an original and not a copy.

 
n/a
   

Post Reply



 



Advertisement

Worth A Click