Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Game URL: http://atomicbrainbag.itch.io/6-week-lord

I'd Like feedback on: Just aboot everything. Somethings I know are janky and I will iron those out.

I need help on: Just aboot everything. This is my first game so ;) Generally I'm trying to wrack my brain around arrays and how to use them in unity. Any and all advice there would be muchly apperciated.

Played the game twice. Ended with 100 happiness and 200 gold the first time round and 120 happiness and 150 gold the second time. It gave me the "long live the queen" sorta gameplay vibe (albeit a shorter,simpler version of it), which I really loved.

I would really like to see some in depth reaction from the nobles or the commoners at the end. Some scenarios were good for a laugh although it would be good to allow certain choices carry a harsher penalty (towards gold or happiness) or allow the choices carry over to another scenario.


Just curious though, the game didn't seem all that buggy (really awesome considering its your first game), so what kinda advice were you looking for in particular?

Hey mate,

Cheers for playing the game and double cheers for doing it twice. As far as reactions go, that is definitely something that was in the initial 'document' (my brain) and some of the in game choices were going to be risk now, pay off later deals. Like the inter knight problems were going to escalate if you didn't do specific things etc.

Right now, the advice I'm looking for is how to implement some of my ideas and the systems that I would need to achieve that. Basically, arrays/lists are something I am horrified of and intrigued by in unity. I'm also looking at how the game 'feels' in terms of player interaction to game reaction.

Thanks again for playing it, really appreciate it,

Atomic Brainbag

Well, just sharing my experience as one whom messed with Unity (or C#) for a fair bit:

  • I tend to use List more than arrays, they are very similar. I do think some of the beginner mistakes I made are usually due not keeping track of them (like initializing them or adding and removing of stuff), but errors logs will help you out.

some read on choosing collection type: http://wiki.unity3d.com/index.php/Choosing_the_rig...

  • [SerializeField] (for private lists/arrays) / making list public (the former is a better approach imo) can help you keep track of your list in your inspector, so you can quickly refer to its contents during debugging
  • Pretty much everything else comes with experience. Do I need a class to store stuff or can a list of variables do the same trick? Planning out what your script does and needs on paper helps a bunch!

Considering your art style for the game. One approach I would try to emphasize on is the immediate feedback that comes along with the players choices (e.g. maybe a lower pitch SFX during speech to indicate hostility, colored font etc). Just my 2 cents though.

Hope it helped! :>

Hey mate,

Cheers for the help there. Will look into them. As for the player choices bit, never thought of that. 200% going into the next build.

Thanks again,
Atomic Brainbag