Solarus-Games English Forum

Community => General discussion => Topic started by: Saeion on July 19, 2018, 11:01:05 PM

Title: Stealth Action Adventure Game Possible?
Post by: Saeion on July 19, 2018, 11:01:05 PM
Hi! New Here!

I heard about this Engine from itch.io via a recommendation. I m interested in making a Stealth Action Game akin to the Old Metal Gear Games, I m wondering if such game is possible with this Engine?

Thanks in advance for any help :)
Title: Re: Stealth Action Adventure Game Possible?
Post by: llamazing on July 20, 2018, 12:44:26 AM
Yes, there is huge flexibility in what you can accomplish through the use of lua scripting, but the downside is you'll have to write some custom scripts to do so because to the best of my knowledge no one else has done something like that yet. Shouldn't be too difficult, though, depending on how ambitious you want to be.
Title: Re: Stealth Action Adventure Game Possible?
Post by: Saeion on July 20, 2018, 03:47:34 AM
Glad to hear it! Any resource recommendation to get an idea how Lua Scripting works? (especially for this engine)
Title: Re: Stealth Action Adventure Game Possible?
Post by: Max on July 20, 2018, 04:47:45 AM
If you learn best by doing, download maybe the Zelda resource pack or the open source one (not sure how complete that is) and try making something like the intro pre-dungeons that Zelda has (Link to the Past's sewers, for example). Get the code to someone else's game (if they're on this forum, they'll probably help you understand it for references so you can learn stuff like making doors that open when you kill enemies, how switches and timers work, etc.

That's how I'd start, at least. And any specific questions you have, just ask on here, somebody usually can help you pretty quickly. Welcome to the forum : D
Title: Re: Stealth Action Adventure Game Possible?
Post by: Saeion on July 20, 2018, 12:01:36 PM
Will do! That will definitely help me get the basics down at least and get an understanding on how lua works
Title: Re: Stealth Action Adventure Game Possible?
Post by: Diarandor on July 22, 2018, 12:34:20 AM
You need to learn Lua, but also read carefully the Lua API of Solarus (there you have all the tools you need nicely explained). And of course, read others' scripts (as examples) and study their code, and make a lot of tests.