Quests Of Crocania(Text Based)
- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Quests Of Crocania(Text Based)
thanks for the apps, you should all see a email soon on alpha update.
As a game update, I keep adding more features so its taking me a little longer but the features are worth it. I am down to the last couple then I will use the backend admin panel I created to start populating the world. The world is quite immense to begin and I doubt it will be explored completely for some time. Villages and towns must be built by the testers first. The world will start with 14,400 explorable and buildable locations, not including ruins and dungeons and only one town. I am hoping the testers will pack together and build a few small villages in the outskirts of the main town Florindale. How the world is designed is entirely up to the players.
I just added village, town, and city buildings that are auto built when a area is upgraded. Merchants will build when a are is upgraded to a village. Metal forges and a Inn will build when it becomes a town. Other buildings are coming and it is up to the mayor of the are to set prices of these. Money goes to a town pool form which walls and other things can be built.
You can also now set a spawn point in any inn to revive to when you die.
As a game update, I keep adding more features so its taking me a little longer but the features are worth it. I am down to the last couple then I will use the backend admin panel I created to start populating the world. The world is quite immense to begin and I doubt it will be explored completely for some time. Villages and towns must be built by the testers first. The world will start with 14,400 explorable and buildable locations, not including ruins and dungeons and only one town. I am hoping the testers will pack together and build a few small villages in the outskirts of the main town Florindale. How the world is designed is entirely up to the players.
I just added village, town, and city buildings that are auto built when a area is upgraded. Merchants will build when a are is upgraded to a village. Metal forges and a Inn will build when it becomes a town. Other buildings are coming and it is up to the mayor of the are to set prices of these. Money goes to a town pool form which walls and other things can be built.
You can also now set a spawn point in any inn to revive to when you die.
- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Quests Of Crocania(Text Based)
decided i better create a map the players can go to to get a general idea of each zone. Kinda like a mini map.

will change it to look better later. works for alpha
it basically builds off the database so when new towns are created it is auto updated along with player location every time a player moves.

will change it to look better later. works for alpha

it basically builds off the database so when new towns are created it is auto updated along with player location every time a player moves.
- Last Known Hero
- Posts: 807
- Joined: Wed Aug 26, 2009 12:28 am
Re: Quests Of Crocania(Text Based)
Nice progress halls, its kool to see games coming together.

Power3DArt
-Current Project: Fault [Pre-Alpha]
Re: Quests Of Crocania(Text Based)
simply magical.
Laguages:
PHP, MYSQL, (X)HTML, HTML5, JQuery, CSS 3.0,
C, C#, C++, Python, Pascal, Perl, Ruby, Turing
Software:
Adobe MC CS4, Visual Studio 2008, Notepad++,
NetBeans IDE, WAMPSERVER
Browsers:
Internet Explorer, Firefox, Opera, Safari, Chrome
(Always have latest patches for browsers.)
Free time:
...
PHP, MYSQL, (X)HTML, HTML5, JQuery, CSS 3.0,
C, C#, C++, Python, Pascal, Perl, Ruby, Turing
Software:
Adobe MC CS4, Visual Studio 2008, Notepad++,
NetBeans IDE, WAMPSERVER
Browsers:
Internet Explorer, Firefox, Opera, Safari, Chrome
(Always have latest patches for browsers.)
Free time:
...
Re: Quests Of Crocania(Text Based)
Mmmm, maps! 
Did you build it based on some tutorials, or did you figure out how to do it yourself? I'd be very interested in seeing how it's done.

Did you build it based on some tutorials, or did you figure out how to do it yourself? I'd be very interested in seeing how it's done.
- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Quests Of Crocania(Text Based)
i built this entirely from scratch.
The map is actually very simple
you build a row field and a column field. for every 1 row there are 60 columns, example Row1 column1, travel east you are now in Row1 Column2
to build the map just have it place a 5x5 image of a green square for every row and column, when you hit divisible of 60 then have it break line.
The map is actually very simple
you build a row field and a column field. for every 1 row there are 60 columns, example Row1 column1, travel east you are now in Row1 Column2
to build the map just have it place a 5x5 image of a green square for every row and column, when you hit divisible of 60 then have it break line.
Re: Quests Of Crocania(Text Based)
Halls doesn't use tutorials... Halls *writes* tutorialsMAruz wrote: Did you build it based on some tutorials, or did you figure out how to do it yourself?

- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Quests Of Crocania(Text Based)
hahaha.
Yes depending on how the game is received when it is open I will most likely release the source and have tutorials on it.
Yes depending on how the game is received when it is open I will most likely release the source and have tutorials on it.
Re: Quests Of Crocania(Text Based)
That is exactly how I did mine. I haven't set up movement keys yet though, everything is click based for now. When you click on a square or grid location it loads a splash screen with options for that zone. I use two tables one for the overland/zone map reference and another for the locations information such as harvesting info, town info, who owns houses there that you can zoom into for a closer look.hallsofvallhalla wrote:i built this entirely from scratch.
The map is actually very simple
you build a row field and a column field. for every 1 row there are 60 columns, example Row1 column1, travel east you are now in Row1 Column2
to build the map just have it place a 5x5 image of a green square for every row and column, when you hit divisible of 60 then have it break line.
Re: Quests Of Crocania(Text Based)
The map I'd like to write for my game is more advanced though. I'd need to keep track of terrain types, probably make some transitions, generate more land as player base grow, layer images (lowest layer is terrain, second is structures, third is creatures). I plan to go for sprites, and just use JavaScript (or possibly CSS) to place terrain, and move characters from one tile to another.
I'd like the terrain to be auto generated, as it would be tedious to "paint" the terrain manually. I'd need a grid system to make it easier to navigate for the players too.
I'd like the terrain to be auto generated, as it would be tedious to "paint" the terrain manually. I'd need a grid system to make it easier to navigate for the players too.