Save-Point
Has Anyone Ever Tried to Create A Game+ System? - Printable Version

+- Save-Point (https://www.save-point.org)
+-- Forum: Games Development (https://www.save-point.org/forum-4.html)
+--- Forum: Development Discussion (https://www.save-point.org/forum-17.html)
+--- Thread: Has Anyone Ever Tried to Create A Game+ System? (/thread-10424.html)



Has Anyone Ever Tried to Create A Game+ System? - Solitaire - 10-16-2024

Anyone around these here forums ever attempt to implement their own game+ type system into their game?
(Discounting password systems, which are cool, but I more-so was thinking actual changes to the code upon completing the game.)

I had the idea to do one for a very simple, small project I was doing (Super basic, just having icons appear on the menu screen for each ending completed.) But after looking up some stuff I gained the impression that doing it would be fairly complicated, with use of global variables and/or external ini files, etc.

I still think it's an interesting topic though, and wondered if anyone here ever tried it for themselves, and had any anecdotes from their experiences.

[Moved this from general, thought this section might be more fitting. Still getting used to posting on a forum Xp]


RE: Has Anyone Ever Tried to Create A Game+ System? - DerVVulfman - 10-17-2024

Well, a friend of mine wanted something... entertaining.

She wanted to use an ABS for her combat system. Now an ABS (or Active Battle System) is basically ZELDA or DIABLO or whatnot... all the combat is on the map and you move your character all around dodging magic bolts lobbed at her. Yep, her. I could best describe the character lead as "Rukia Kuchiki" from Bleach, but with a spiritually conjured bow.

However, she wanted to give the player some ... grief. In every ABS system out there, the player could just up and cheat and hit ESC to bring up the menu and pause the game while in combat. Well, either that or work to ensure that the ESC button didn't work unless you were in a safe zone. But she was like "That gives too much away.". You knew you were safe if you could open the menu.

So Mister Bright-Idea here thought, why not make it so all the menu windows are actually brought up within the field map???

The basic principle of the default menu system is that when you enter a menu, you leave SCENE_MAP, the actual Scene/Engine that handles the field map. You actually EXIT the map, though game values of player position and such are memorized. Still, you leave it just the same and all actions are basically frozen. And when you decide to look at the Skiill Menu, you switch over to SCENE_SKILL and aren't even in SCENE_MENU.

Booooring. My idea was to just move all the mechanics into Scene_Map itself. When hitting ESC, you didn't leave the field map. You only turned on an in-map switch that brought up the "Window_Menu" and like screens. And while the menu was up, it would turn off the player's movement system and allowed cursor control. However, all map events would work just fine.

And if you were in combat.... you better be in that menu for a VERY short period of time. :D

SHE loved it.

Our friend Mark hated it. He was like "YOU TOOK OUT MY CHEAT!!!!!"


RE: Has Anyone Ever Tried to Create A Game+ System? - Solitaire - 10-17-2024

(Yesterday, 03:13 AM)DerVVulfman Wrote: Well, a friend of mine wanted something... entertaining.

She wanted to use an ABS for her combat system.  Now an ABS (or Active Battle System) is basically ZELDA or DIABLO or whatnot... all the combat is on the map and you move your character all around dodging magic bolts lobbed at her.  Yep, her.  I could best describe the character lead as "Rukia Kuchiki" from Bleach, but with a spiritually conjured bow.

However, she wanted to give the player some ... grief.  In every ABS system out there, the player could just up and cheat and hit ESC to bring up the menu and pause the game while in combat.  Well, either that or work to ensure that the ESC button didn't work unless you were in a safe zone.  But she was like "That gives too much away.".  You knew you were safe if you could open the menu.

So Mister Bright-Idea here thought, why not make it so all the menu windows are actually brought up within the field map???

The basic principle of the default menu system is that when you enter a menu, you leave SCENE_MAP, the actual Scene/Engine that handles the field map.  You actually EXIT the map, though game values of player position and such are memorized.  Still, you leave it just the same and all actions are basically frozen.  And when you decide to look at the Skiill Menu, you switch over to SCENE_SKILL and aren't even in SCENE_MENU.

Booooring.  My idea was to just move all the mechanics into Scene_Map itself.  When hitting ESC, you didn't leave the field map.  You only turned on an in-map switch that brought up the "Window_Menu" and like screens.  And while the menu was up, it would turn off the player's movement system and allowed cursor control.  However, all map events would work just fine.

And if you were in combat.... you better be in that menu for a VERY short period of time. :D

SHE loved it.

Our friend Mark hated it.  He was like "YOU TOOK OUT MY CHEAT!!!!!"

Hahaha xD that's hilarious, it sounds like a really fun project too