Padz' journal
#31
Posted 04 August 2008 - 09:36 PM
#32
Posted 04 August 2008 - 10:04 PM
#34
Posted 04 December 2008 - 12:31 PM
Also put in some more HINT boxes explaining keys.
Just to clarify the combat room in the demo was just my combat test board that I attached to the demo for you to see, its not meant to be an intro to combat.
I am however working on a combat/skill tutorial now. It will be quite extensive as it could become fairly complicated. I'll also write up a seperate help menu that you can bring up ingame which will explain the tutorial again in text format. There will be an option to skip the tutorial when starting the game.
T-bone, Galladin: If you've had a look, what do you think?
Also I prob wont be putting footprint sounds in just yet, but if anyone has any ambient music with similar styles to the 2 tracks in the demo i'd be grateful. And if anyone could help me locate some weapon sound effects and other usefull sounds that would be spiffing
#35
Posted 04 December 2008 - 07:16 PM
Micah, on Aug 4 2008, 04:36 PM, said:
ZZT had step sounds haha does anyone remember that?
As for the game, I did a quick run through, didn't get very far (I'm at work on a computer with no sound). The design is great and your text boxes are pretty decent. I noticed that if the last name in the beginning is too short you can't proceed.
This post has been edited by T-Bone: 04 December 2008 - 07:26 PM
#36
Posted 06 December 2008 - 05:49 PM
I also set a 3 character minimum on 1st or 2nd names.
#37
Posted 06 December 2008 - 06:13 PM
Oh and the character limit of 3 is fine.
#38
Posted 06 December 2008 - 06:43 PM
I'm working on a combat tutorial at the moment and smothing out some of the engines. I'll release an official Demo which will basically be the 1st tutorial chapter of the game including some basic missions and exploration areas but most likely no more than 10% of the final game.
And that'll probably be it for a long while as I am by no means a speedy Mzxer!
I'd also love some idea's on what anyone wants to see in this game and if anyone can help with music/sounds.
#39
Posted 08 December 2008 - 05:18 PM
<Beige> In Finland, they defecate on each other's sleeping areas.
<Beige> It's a cultural sign of respect.
#40
Posted 26 January 2009 - 08:46 PM
I'm back Mzxing, for a few weeks a least! I'm not in Hiveworld mode at the moment I'm feeling some work on the RPG. I don't have any major plans but I do want to work on making the world design and history random, I've tried before and had problems with how the different area types connect, I generally don't like messy links. But I will try again and see what happens.
If anyone has ideas or indeed any input please don't hesitate, you may just tip me into a massive MZX drive!
#42
Posted 26 January 2009 - 09:29 PM
I want to make it so there is more than just enemies attack player as well, Maybe the player walks in on a massive battle or other warriors battling monsters and chooses what side to help, that sort of thing.
#43
Posted 26 January 2009 - 10:11 PM
#44
Posted 29 January 2009 - 12:07 PM
Okay I've been designing my map tiles, these are some of them so far, they are 5x5. I started using 10x10 but they were just unmanagable. I'm not sure how many different tiles there will be, at the moment there's only 5 terrain types and there are quite a few as the amount needed gets exponentially bigger for every tile type added.
I've tried a few method of tile placement, it basically starts in the top left and works across in rows checking the previous and above tiles to decide it's own, added in with some randomness. It's by no means perfect. I cannot figure out code that'll do it all for me yet it's a bit too complicated with the amount of tiles. But I can get it working if I do it tile by tile as a last resort.
I plan on having huge maps so the tile amounts will be in the hundreds. Once the tiles are set the engine will create random locations, events and histories and modify the locale appropriately. The scope of this seems quite large even for me! So I don't know what'll actually end up of this idea.
#45
Posted 29 January 2009 - 07:21 PM
Okay this is another system I'm playing around with, it still uses the tiles, just in a different way. It can create some hugely random landscapes but it needs neatening up. Point to note this is only a basic version with 6 tile types.
#46
Posted 29 January 2009 - 08:54 PM
I'm also going to keep refining the basic world generator to have more tile variety, oceans and overall map types.
This demo takes a minute or so to design the map(500x250 so a fairly large world) on my PC set on mzx_speed 1. But the way I see it is that it will only be done once per game and is worth the wait.
Enjoy, Padz
Attached File(s)
-
AL_V1.03.zip (11.8K)
Number of downloads: 116
#47
Posted 31 January 2009 - 07:05 AM
To this end you probably want to make a system that will derive the "story" by placing the key spots FIRST, and making sure that they have connected paths (ala simple dungeon gen) then using that as a heuristic you can force each tile to have an exit on each side that the determined paths require. Everything else of course could stay randomized, but this would allow you to be sure that the game is playable.
#48
Posted 31 January 2009 - 07:21 AM
For example, There are 3 types of mountain - Average/Sheer/Extreme and to cross each type will require a certain level in the mountaineering skill and mountaineering tools.
This will be the same for all terrain types (note that in the above demo there are only the basic 6, there will be more)
It will take some playing with to get right, but I think it is possible. (Also note that all rivers wont be southerly like in this demo I was just too lazy to do more types)
Regards
#49
Posted 31 January 2009 - 09:16 PM
#50
Posted 01 February 2009 - 01:27 PM
I've also created a randomized underground layer which will link in to the top layer via caves as other means of travel around the map (cave crawling skill and tools may be required)
I'm now finishing off the river generation, then moving on to towns and roads.
#51
Posted 02 February 2009 - 10:28 PM
Of course this probably wouldn't be the game you were aiming to make, and if that's the case then never mind, but if it comes right down to the map generation taking too long and you thinking it's not worth it, cut your losses and use it as a tool to generate content you can tailor to a scenario.
"People who can't DO advise "
#52
Posted 02 February 2009 - 10:43 PM
#53
Posted 03 February 2009 - 01:15 AM
Very cool results, though. I can't wait to see the future incarnations of this.
#54
Posted 03 February 2009 - 09:48 AM
#55
Posted 03 February 2009 - 08:51 PM
He's talking about the built-in counter "commands" which changes the number of commands Megazeux performs before ending the cycle for that robot. Increasing it increases the number of operations done, in this case it would improve the speed of your generation to operate at an astronomically high number of commands and then return it to 40 when finished. You have to be extra careful to put your cycle 1/wait 1 in there in order to end the cycle manually in busy loop situations, otherwise you'll bring the machine to a crawl.
#56
Posted 03 February 2009 - 11:10 PM
astral, on Feb 3 2009, 03:51 PM, said:
He's talking about the built-in counter "commands" which changes the number of commands Megazeux performs before ending the cycle for that robot. Increasing it increases the number of operations done, in this case it would improve the speed of your generation to operate at an astronomically high number of commands and then return it to 40 when finished. You have to be extra careful to put your cycle 1/wait 1 in there in order to end the cycle manually busy loop situations, otherwise you'll bring the machine to a crawl.
This is indeed what I was referring to. Useful to keep in mind.
#57
Posted 03 February 2009 - 11:33 PM
#58
Posted 06 February 2009 - 10:53 PM
I WILL ABUSE THIS GREATLY.
EVENTUALLY.
I STILL NEED TO GET SOME CRAP FIGURED OUT by the way awesome stuff, Padz.
#59
Posted 07 February 2009 - 03:16 PM
I've been working on town placement methods and how the engine will scan the completed board and place event locations. I'm also looking in to random history(city/place names, wars, natural disasters all sorts) generation and how it will effect the world map.
#60
Posted 18 March 2009 - 10:07 PM
Along with ideas for Hiveworld and Unnamed RPG I've started up two new projects outlined below:
(unnamed)
Set in a world where magic once ruled, now technology has evolved to a level similar to the medieval ages combined with the industrial age but electricity has not yet been discovered. The civilisation has learnt to use steam, clockwork and harnessed magic combined to form powerful engines and advanced cities. all magic is controlled by one order who harness it within certain crystals and the is no free magic in the world.
I wont discuss the characters plot at this time, but I do have one. It's loosely based off hiveworld engines and will be adventure/rpg. I'm also I designing a one-on-one battle engine where you control each part of combat and attacks in a very detailed way. rather than the traditional limited attack in this engine you will choose each stage of an attack and the enemy will react to each stage. I'll explain in more detail some when.
Dante's Equation
If any of you have read the book you'll know what i'm on about, if not i'd look it up and buy a copy ( http://www.amazon.co.uk/Dantes-Equation-Ja...2697&sr=8-1 ) it's a fantastic read about alternate universes and quantum physics. basically my adaption from the book as a game would be adventure/rpg (thats all i do!) where you are a scientist researching into wave theory and stuff and discover a way to affect the wold and travel between alternate universes by changing your alignment. basically depending how evil/good you are depends on what universe you go to when you enter a wormhole. and each universe will have ways to change your alignment
these last two are just n concept at the moment with not much done in mzx yet.