Author: TrueKam

  • Development Update, December 14th, 2024

    Hello everyone and welcome back! I started my end-of-year vacation from my full time job on Wednesday, so I’ve had more time to work on The Cursed Crown this week. I unfortunately ran out of time to play around with the crafting system, but I finished out all the other work I planned for the week as well as adding some extra work in and completing that.

    I initially planned to experiment with the crafting system, experiment with the saving and loading system, and experiment with the fast travel system. By the end of the week, I also added in the enemy class upgrade task and created and added a new task to create an open world sandbox for development and testing.

    Even though I didn’t quite finish everything that I wanted to get done, the update log is pretty long, so let’s get to it!

    Update: I woke up early Friday morning and decided that I wanted to experiment with this system just to see what it will entail to implement it later. So, in the end, everything I wanted to complete this week is done. And then some!

    Cursed Crown Updates

    • Issue 7: Enemy Base Class Upgrade
      • I created a new base class for the enemies. This way, I could have my customization that are available to all enemies without having the edit the base class provided by ACF every time it updates.
      • While I was performing this task, I did the same for the player character controller and for the same reasons.
      • On the enemies, I removed the widget that displays the enemy’s name and health. I re-removed the red flash and popup numbers that appear when the enemy takes damage.
      • I created a new enumeration and variable on the enemy base class to handle different variants: Base, Strong, Elite, and Boss. Each of these selections should make the enemy tougher and stronger, but provide more XP for the player on death. (The XP system will be reworked at a later date.) I tried several ways to handle this functionality but was unable to make anything I tried work so I went to the ACF Discord server for help.
      • The lead developer of ACF (Pask), let me know that this just wasn’t how the system was set up to work, so after some discussion, it was decided that the best way forward was to just create separate blueprints for each variant of each enemy type that I wanted. While this is easier to set up initially, if I want to tweak things or change some feature about the different variants later it becomes more tedious to do. But it’s something that I’ll just have to live with for now.
      • I reverted the changes to the variant system that I added (functions, variables, and enum) and everything is working properly again.
    • Issue 41: Create Open World Testbed Level
      • Created story, created level, added to “always package”, ‘open OpenWorldTestbed’ to play, map area from ACF set up, set base game mode blueprint to use, should be ready to develop further
      • I created this story specifically to add to this sprint because it’s something that I just wanted to get done.
      • I created a new level ‘OpenWorldSandbox.’ It’s just a large, mostly flat terrain that has plenty of room to build and test larger functionality.
      • The level was added to the “always package these levels” options in the project settings, so even though there’s no menu options to go to the level, it will always be present in the builds.
      • Testers can access the level by pressing TAB to go to the console then typing ‘open OpenWorldSandbox’ there.
    • Issue 32: Experiment with ACF Saving and Loading System
      • I did spend some time experimenting with the saving and loading system provided by ACF. It functions pretty well as a base system. It does need some tweaking, though.
      • I created a basic checkpoint/bonfire blueprint where the player can save the game. I added a couple of these to the Overgrown Ruins level. There is currently a message in the top-left of the screen letting the player know they can’t save when in combat, but this should be updated to be more explicit.
      • The player can reload their save from the menu.
      • Currently, after saving and reloading, every enemy remains dead. I want this to not be the case. I believe I have a path forward for this, but it needs testing to be sure.
    • Issue 36: Experiment with ACF Fast Travel System
      • I played around with this system for a while. It functions pretty well, but there are a couple quirks that I think I want to address.
      • The fast travel system is initiated via an NPC. The player can’t activate it on their own. This MUST be changed for the final game. I just need to figure out what functions are being called and to patch into them through some other process. There could be a spell or something, or maybe an option at checkpoints. I don’t know how I want to handle this part just yet.
      • The fast travel points are separate blueprints from anything else in the game. They are activated when the player gets within a sphere around the point in the world where they exist. This could be a perfectly fine way of doing it. I would just have to add two blueprints instead of one whenever I add a checkpoint I want the player to be able to fast travel to.
      • I also want to set up the same “in combat” check that happens at the checkpoints to keep the player from being able to fast travel when they’re in a fight. This could be superfluous if the activation is an item (like the homeward bone or feather) or a spell, since either of these would have a time cost and enemies might not give the player time to perform this action.
    • Issue 20: Experiment with ACF Crafting System
      • Updated: I managed to get some time to work on this on Friday morning anyway!
      • So, like ACF’s fast travel system, the crafting is currently controlled by talking to a vendor. The player can choose “I want to craft new gear!” in the dialog tree to open the crafting menu.
      • I dug through the dialog tree and the blueprints and it looks like it’ll be pretty easy to hijack the functionality and add it to the player’s abilities so they don’t have to find an NPC. I don’t think it would be unreasonable to link it to “crafting tables” that can be found all over the place in the world. Or, maybe there will be only a couple, but the player can fast travel to the main settlement to find one to work with. I’m imagining something like the alchemy or enchanting table. I’ll need to figure that one out.
      • The recipes are really simple to implement and store. So far, the UI blueprint for crafting just includes an array of the recipes. I’d probably like to find some way to dynamically add these recipes so the player can only craft things they’ve discovered or found a recipe for.
    • Other Updates:
      • I updated the ACF plugins to their most recent versions for Unreal 5.4. I downloaded Unreal 5.5, but I wasn’t quite brave enough to perform this update this week. It is on the list of tasks to do, but it’s potentially going to take quite a bit of time on its own, so I need to dedicate enough time to work on it. A couple things broke when I did this update, so I had to perform some fixes to get things back to a working state:
        • The volume issue returned. I had to reset the effect pack volume to be able to hear sounds again.
        • All the skeleton meshes I was using (Kara with and without the cape, Burke, and all the enemies) had to have their skeletons reassigned to the version included in ACF. This forced the skeleton to be updated and luckily it was a simple process to do this time.
      • I restored Kara to the version with the cape. The assertion/crash issue was still a problem, so I did some more testing and tried to solve the problem the correct way.
        • The issue turned out to be related to the Chaos cloth physics solver interacting with poorly-created collision meshes. I ran around in the area where the crashes were happening and twirled Kara around to get her cape spinning. Every time I hit a crash, I reloaded and modified the collision for the mesh that caused the issue. In the end, I think I changed the collision on all the stone faces, one of the stairs, and all the cliff faces in the Lordenfel set. I haven’t had a crash since.
        • I need to keep an eye on this moving forward and just make sure there are no issues with other meshes that I didn’t catch.
      • I lowered the download size of the demo package significantly by changing the quality of the build lighting. It may look lower resolution due to being built with preview-level quality, but it provides faster build turnaround for me so I think it’ll just stay how it is for now.
      • With all this work, I bumped the build to version 0.2.2. A downloadable build should be available this afternoon!

    Thanks again for stopping in. It’s time for me to try to relax a bit for the weekend. I can’t promise much work due to a social gathering I am attending on Saturday, but I’ll do what I can. Since I have off next week, progress will still be better than on normal weeks anyway. I’ll have to decide what I’m going to plan for the next steps.

    In the meantime, I hope you all have a wonderful weekend! Until next time, keep on gaming everyone!

  • Development Update, December 7th, 2024

    Hello everyone, and welcome back! I’m feeling mostly better after being sick last week, but I’ve got some lingering symptoms that haven’t quite dissipated yet. Still, I wanted to make sure I got some work done on the project. I tried to not be overly ambitious, so I set myself three tasks to work on with a stretch goal of a fourth.

    Unfortunately, a breaking bug was brought to my attention that caused an assertion error and crash with version 0.2.0. That became the highest priority and required looking into before actually looking at the tasks I wanted to accomplish this weekend.

    Cursed Crown Updates

    • Issue 32: Experiment with ACF Saving and Loading System
      • The plan for this task was simply to test what functionality is already present in the ACF system.
      • I now have a blueprint that’s based on the provided save point blueprint. I’ve placed a couple around the Overgrown Ruins and the save/load functionality already works properly. I want the system to respawn enemies when the player saves as well as when the player loads the game from the main menu, but that’s something to work on later.
      • I’ve spawned three new tasks from this one:
        • Issue 38: Update the Region Announce Blueprint,
        • Issue 39: Update Enemy NPCs to Respawn on Load, and
        • Issue 40: Update Save Point to Immediately Load/Respawn Enemies
      • These issues will be worked as time permits.
    • Issue 36: Experiment with ACF Fast Travel System
      • I dug into how the ACF fast travel system works. I’ve made some docs and notes. It seems pretty robust, but there are a couple things that seem to not work very well. I have some ideas on how to improve the system, but I’ll need to enumerate and design those ideas before moving on with the functionality implementation.
    • Issue 20: Experiment with ACF Crafting System
      • I ran out of time to work on this task on Saturday. I may have time on Sunday to revisit, but I can’t promise anything yet.
    • Stretch: Issue 28: Design Crop Bed System
      • I cheated a bit and worked on this early. I was out for a while and had access to my tablet, so I typed up some notes and got started on this design task. I haven’t done an “official” design, but I think I have all the info I need organized so that I can start to implement these once I get a bit further with the crafting feature implementation.

    In the end, I was able to solve the issue with the crashing and I accomplished a fair amount based on what I planned for myself so I’m not disappointed with the amount of work I got accomplished. I would have liked to have more “tangible” results that I could have used to push a fresh build out, but sometimes, planning is more important. I have two more days of work at my full time job this year before I’m on vacation from it until the second week of January. I want to spend some time getting work accomplished on the project. I don’t know what tangible results will be available since I won’t really have the terrain I want to use, but I will ensure that I’m still updating everyone here and on Patreon, so keep an eye out.

    Until next time, everyone, have a wonderful weekend and keep on gaming!

  • Development Update, November 30th, 2024

    Hello everyone! Today’s update is: there’s no update! Unfortunately, I’ve been ill all week. My fever’s broken and I’ve turned the corner, but I’m not up for getting into my editor at this point. I’ll still be trying to get some project work done, but it will be things like organization and behind-the-scenes things. I’m considering experimenting with organizing the work into sprints so I can utilize charts for outputs, but I don’t know what would work best for a time period on that. Perhaps some time going that this weekend will provide some insight.

    Thanks for sticking with me through this. I hope you all have a wonderful weekend. Keep on grabbing!

  • Development Update, November 23rd, 2024

    Hello again, everyone! I hope you’re having a good weekend. I’ve been getting some work done throughout the week here, but I admit that not a lot of it has been direct development. That doesn’t mean that I’ve been idle, though!

    I spent a couple days this week migrating the entire development git repository over to Microsoft Azure DevOps. I was beginning to have issues using GitLab due to the size of my repository. I figured that if I was going to have to pay to host my project as I worked on it, I would shop around and find the best value for my money. I settled on Azure due to the features I can get for my budget. Migrating the repo was the easy part, but I had to spend some time cleaning up my task backlog and moving it all over to the boards on DevOps. Once I managed to get everything moved, I turned to organization. DevOps gave me the ability to set things up in a more Agile fashion, as I’m accustomed to from my full time job. I don’t think I’ll be necessarily forcing myself into time-boxed sprints, but I may start using them for organization purposes. At the moment, I’ve organized things into epics, features, and stories. That has helped me get a good grasp on the work that I need to accomplish to move things onto the next step. Then I spent more time putting together new features for the functionality that I want in the game along with some stories to start fleshing things out. If this sounds complicated to you, just imagine how long I had to spend doing it.

    But that’s all done for now. I will have to refine things as I progress and more features will get added as the current ones are complete and new ones are decided upon. But I needed to get this done. The need was two-fold. One: I wanted a good base on which to build my work going forward. Everything that I did up to now feels really disorganized compared to what I have set up so far. And two: if you don’t have multiple backups with at least one being off-site, you don’t have backups. Due to GitLab’s size limits, I had my code all stored on a Linux server in my basement. It worked wonderfully, but if my home burnt down or was burgled while I was out, I would have nothing to show for the last year of work. Now, I’m protected.

    But, I did manage to close out two stories:

    Cursed Crown Updates

    • Addressed Issue #26: Update Project Links
      • This one was a gimme, but it was required. I updated all the development project links on 6fps Network and in my LogSeq notes to point to Azure instead of GitLab. I went digging in the official design document and on the Discord server to update links as well, but I seem to have not included them for whatever reason. I took the opportunity to add them.
    • Addressed Bug #12: Mage Enemy Bleeds on Hit
      • This turned out to be easier to address than I expected. ACF built the effects into a big data table. I just duplicated this and removed every effect that resulted in a blood splatter. After saving that, I assigned the new data table to the mage enemy. The bug was marked resolved after I tested that it works properly and doesn’t produce any blood splatter particles any more.

    I’d love to be able to update everyone with detailed reports and readouts from the project, but I don’t know exactly how to do that with DevOps yet. There are a lot of report options, but I have to decipher their creation then find a way to export them in a way that I can display them here. At the very least, I want to be able to provide the same progress bars that I was providing for how far along I was with the alpha development. That doesn’t seem to exist in its simplest form like it did with GitLab. I’ll see what I can get figured out, though.

    For now, thank you all for stopping in once again. I hope you have a wonderful weekend and Thanksgiving, if you celebrate. Until next time, keep on gaming!

  • Development Update, November 16th, 2024

    Hello everyone! I hope you’re all having a great weekend! My week has been going great with the release of the tech demo. I’m trying to address my recent burn out by taking it easy for a little while. The remainder of the year will likely be pretty stressful with holiday planning and gatherings anyway.

    This weekend I’m spending my development time working on project management and design stuff. In particular, I want to have at least a rough idea of the layout of the island the game will take place on. I need to open up the Unreal Editor and put together a couple terrains of the sizes I’m considering and see how long it would take the player to run from one end to the other. If it’s too large, I’ll have to use a smaller sized terrain. I was originally considering an 8km x 8km island, but I’ll probably make it a more manageable 2km x 2km island instead if the traversal is too tedious. The game’s design includes a fast travel system, so traversal really would only have to happen once then the player could warp around, but I still need to see what it feels like. No matter what the size, I need to make sure there are plenty of things to do so the world doesn’t feel too boring. But all that is later. Today is simply planning some ideas on what the basic shape of the world will be.

    For that task, I’m using Concepts. #NotSponsored. It’s a great art tool. There are a bunch of cool features, but I’m primarily using it for it’s amazing “infinite canvas.” I love just sketching out what I want to sketch out, zooming in or panning around and continuing to work. I tend to work “outside in” with it. I start zoomed out a bit so I can just draw an outline then zoom in and start adding details. I use it on my PC then sync the drawings to my phone and tablet (externally; I don’t think there’s a free option in the app) and continue working on them there when I’m on the go and particularly bored. It’s free. I suggest giving it a shot if it sounds like something that interests you. There are a lot of purchase options including new tools and brushes, but I’m perfectly satisfied with the free options for now.

    I also need to do some server work today. I want to get some configuration done on a new server I picked up. I have the PowerEdge R630 downstairs, but I picked up a PowerEdge R730xd to sit with it. Since I got into backing up my movies and series to Plex, my server has filled up pretty quickly. It’s a great thing to have, but it’s kinda expensive, too. ╰(*°▽°*)╯

    Anyway, I’ll let you all get back to whatever lovely plans you have for the weekend and I’m going to get back to work. You little lovelies sure work me hard sometimes. 😊 Until next time, everyone, thanks for tuning in and have a great weekend. Keep on gaming!

  • Patreon Campaign Live!

    I’ve created and published the Patreon page for The Cursed Crown! There’s not much there at the moment, but I will be posting updates there as they are available.

  • Development Update, November 9th, 2024

    Hello again, everyone! I hope you’re all having a wonderful weekend! The season is officially changing where I live and it’s starting to get chillier outside every day. It’s a welcome change from the oppressive heat that we had during the summer months.

    I had some extra time to work on things this week so I got a bit more done than I expected, but never as much as I hoped to get completed. I was able to get some stuff done yesterday since I had the house to myself, and finished up with some extra work today. I might actually get the chance to do some relaxing for once tomorrow instead of working. But I know that’s not why you’re here; you’re here for the updates. So, without further ado, I give you my work log for this week.

    Cursed Crown Updates

    • Addressed Issue #14: Create Door Prototypes
      • My initial plan was to create three door prototypes here, but I settled to two instead.
      • Door type one is a physics-based door that swings on a hinge. As a player, simply walk through this door to open it. It will swing shut behind when the character is no longer in the way. It works well, and it’s based on the metal bars that came with the Lordenfel asset pack. The only thing that I didn’t extensively test on this one was whether the door allows AI pathing through it. I’ll need to experiment with this so I know how to use or not use this door in levels later. I plan to extend this to allow different assets as well. Sometimes wooden doors might be better than metal ones, for instance.
      • Door type two is more of a hidden door. It looks like a wall and requires manual activation by the player. Upon pressing the interact button, the door starts moving in one of five configurable directions. (Up, down, left, right, or backward.) It moves a configurable distance at a configurable speed then (optionally) is destroyed so it doesn’t get in the way of other geometry. For future updates, I want to add some sort of stone-on-stone scraping sounds, some dust or smoke particle effects, and see what can be done about removing the interaction box that pops up when the player is nearby. It’s not very secret if it announces itself after all.
      • Door type three was planned to be similar to door type two, but using something like bars or a gate instead of the wall. A lever or switch of some sort would be nearby and be the actual interaction point. Due to lack of appropriate assets and animations, I scrapped this idea until beta.
    • Addressed Issue #29: Experiment: Update Overgrown Ruins Environment
      • After previous attempts to update the lighting in the environment, I wasn’t actually confident I’d be able to get something I was satisfied with and I was trying to accept the fact that I might close this issue with no actual progress to show for the work. But I’m happy to say that I was able to get the actors configured enough that I liked the results. I won’t say that I’m confident the nighttime stuff I put together is better than the daytime settings that were shipped with the product. So I compromised.
      • Instead of just setting the actors to day or night, I cloned the actors in question and created a daytime set and a nighttime set. That’s right, both are included. I created a new blueprint based on the ACF interactable blueprint that lets the player switch between daytime and nighttime in the tech demo. I’m not going to spoil where it is, but it’s not super well hidden, so you should be able to find it in the build when it’s released.
    • Addressing Issue #39: Document Patreon Plan
      • This one is going to take a little while, and it’s not going to be something that’s obvious in the build because it just isn’t something that’s going to be referenced in the build at all.
      • I want to have the plan for Patreon set up and ready for when I officially release the tech demo. I plan to have a few tiers where you can support the development of the game and I intend full transparency as to where the funds will be going. I have always been a bit hesitant with some Patreon campaigns when I can see x dollars going into a project, but the output appears to be worth far, far less. I want to make sure that you can see what I am spending the money on so you can be confident that I’m not squandering your hard-earned money. Plans can obviously change, and I will strive to keep everyone as up-to-date as possible.
      • But first, I need to get all of my information laid out as neatly as possible. I’ve actually created the Patreon page already, but I haven’t published it because I don’t feel there’s enough information to warrant it.

    So that’s what I’ve accomplished (and am accomplishing) this week. It always feels like it’s long grueling work and it takes me all day to do, but when I lay out what the results are in these posts it never feels like I got much accomplished. Such is the life of a developer. I tend to feel that way in my git logs and notes at my full time job as well, so c’est la vie, I guess.

    Anyway, some more actual news. Just to see who’s reading this far and who’s just skimming the Cliff’s Notes. I intend to have the Patreon campaign opened up by the end of this year. And I intend to have a working, freely-downloadable build on that page when it goes live. That’s right: tech demo build in December 2024.

    27 of the 29 issues identified for the alpha build are complete. Only two remain: #39 (Document the Patreon Plan), and #18 (Tech Demo (Alpha) Release Checklist). I’m working the Patreon plan now, and the release checklist is basically “what needs to happen to put the alpha build together.” I know what you might be thinking: “But doesn’t that mean it’s ready now?” Well, yes, technically. But I want to have some time to polish the build where I can and add in any last minute things I can think of for that extra je ne sais quoi. But don’t worry, I’m as excited as you are about this. I really want a project to release and succeed. I’m not expecting immediate success, but with continuous work and supportive fans, I think there’s a real chance that The Cursed Crown could be the start of something very big.

    Thank you all for joining me so far on this journey. Keep the faith just a little longer. And until then, keep on gaming!

  • Development Update, November 2nd, 2024

    Hi everyone! I hope you are all having a wonderful weekend and had a happy Halloween if that’s something you celebrate. I made some progress today, but I’m considering trying to get some more of it done tomorrow. If I do, I’ll update this post, but for now, I’m calling it quits for the day.

    Cursed Crown Updates

    • Addressed Issue #25 Credits
      • I added a new button on the main menu to go to a new credits screen I created. It’s currently a static screen since there isn’t much to display there. I built it from the same framework as the existing settings menu, so the theme should be identical to the rest of the menu, though I kept the text a plain white so it’s easy to read. But the normal keyboard and controller functionality to go back to the main menu is working just fine.
    • Addressed Issue #33 Update Main Menu Logo
      • I did some work to the logo to make it look better. Then I took a good look at it and realized that I’m no graphic designer. So I reverted the changes in the end.
      • I negated the necessity of updating the main menu logo by adding three new text boxes to the main menu. The title and the subtitle are now text on the menu so I don’t have to update any of it if I replace the logo again at any point. I also included a small text box at the bottom of the menu that displays the build info. It’s not coded at all, so I’ll have to try to remember to update this whenever I publish builds. I considered writing some code to update this every time I do a build, but I plan to remove this text when I move past the alpha or beta stage anyway, so I didn’t think it would be a very good use of my time. That could change later, though.
    • Addressed Issue #35 Logo Image Disappears on Main Menu
      • While I was putting in the new logo then reverting the changes, I stumbled upon a place in the menu blueprint where the image size was being set incorrectly. When the logo was removed by a switch to another menu pane then switched back to the main menu, the logo size was being set to 0px by 0px. The image wasn’t strictly disappearing, but wasn’t rendered since it was set to an invisible size. I fixed this oversight and the issue was resolved.

    I wanted to look at issue #14 Create Door Prototypes, but I no longer have time today. If I get the chance, I might try to work on it some tomorrow, but if I don’t then I’ll look into it next weekend. I really should go ahead and put together at least a couple loose designs first anyway.

    For now, though, thanks once again for checking in. We’re getting closer to a transition from alpha to beta release. With that comes a shift in the way things are handled with the project. I’ll definitely document that more as we get closer, so be sure to keep an eye on the Discord community and here. Have a great weekend everyone, and keep on gaming!

  • Development Update, October 26th, 2024

    Hello everyone! I hope you’re all having another wonderful weekend! The weather outside is transitioning from one season to the next and the temperature is just perfect for going outside and sipping tea on the deck. Before I do that, though, I had work to do. I found some time to work on two tasks this weekend. One of them was more difficult, and I anticipated that I might have issues with it. I balanced that with another one that was more chill and easy to accomplish. And both of them helped move the alpha build to the final state it needs to be in to get a release.

    Cursed Crown Updates:

    • Addressed Issue #25 Update Tech Demo (Alpha) Burke Placement
      • I had to fiddle with this one for a while to learn and understand the FSM system that ACF is using for the dialogue system. I’m not going to say that I fully understand it, mind you, but I have in place what I wanted for the purposes of the demo.
      • Burke has a new portrait that looks more like him than the default one provided by the samples.
      • Burke’s display name is now “Burke” instead of “ACFGuy.”
      • Burke’s dialogue is voiced instead of being static text.
      • I’d like to update the dialogue system so that it will automatically advance the stages of the dialogue from one stage to the next, but for now the player has to press “Continue” at each stage to move to the next one. I’m satisfied with this for now, though.
    • Addressed Issue #34 Update Chests in Overgrown Ruins
      • I created a new blueprint for an open and empty chest and replaced all the prop chests in the Overgrown Ruins map with them.
      • Essentially, the open chests are supposed to represent that Burke has been through the ruins already and looted everything he found already.
      • There are a couple chests hidden in the area that Burke hasn’t found. In them, the player can find supplies to help: a shield, an off-hand sword, a bow, arrows, and healing potions.
    • Miscellaneous
      • While I was updating all the chests in Overgrown Ruins map, I added a few more enemies in. There are several just hanging around the map inside the ruins. They won’t be a huge challenge, but should spice up the flow of the level some.

    I’ve been tracking a task list of what I wanted completed to consider the tech demo complete and ready for release. I’ve used issue #18 to track it, though the issue doesn’t really have anything other than that checklist attached to it. What’s important is that the checklist is almost complete. The only thing left on there is to export and publish a proper test build. And while this should be a half-hour task that I can complete right now if I want to, I’m not going to do it right now. Please allow me to elaborate.

    Voltaire said “le mieux est l’ennemi du bien.” Put another way, “perfection is the enemy of good.” I know that if unchecked, I’ll allow myself to just build and tweak and add and refine and tack on and so on and so forth. I need to consider what I have as “good enough” at some point. While I’m trying very hard to do that, I also don’t think that I’m at that point right now. What I’ve decided to do is to keep tweaking and adding and adjusting, but only until the end of this year. I have some time off saved up from my full time job and I’ll be taking the last three weeks of 2024 off. I want to spend that time with whatever further updates and fixes I can then start off 2025 with a published alpha build so I can start with beta development.

    I don’t have a specific roadmap yet, but by the end of this year, I want to have a laid out roadmap for what I consider to be a full release with a plan for getting there. I’d like to have something like a Kickstarter or Patreon set up to help me fund additional assets that I will require, and I’d like to try to get into the developer backend on Steam so I can get builds out to people faster and more reliably. Between now and the end of the year, I’ll likely have to take more than a single week “off” from development so I can get documentation and other similar work done. There might not be forward-facing changes, but work will always be getting done behind the scenes and I’ll always make sure that there’s something going on here on 6fpsnetwork.com and in the Discord where applicable.

    Thanks for sticking with me through all this, everyone. I hope you all have a wonderful weekend! Keep on gaming!

  • Development Update, October 17th, 2024

    Hello everyone! This weekend, I’m taking a long weekend from my full time job with my wife. I don’t expect that I’ll get any work done on The Cursed Crown, but if I manage anything I’ll make sure I edit this post.

    I’m sorry that there isn’t any real content this week, but I promised last time I “took the weekend off” that I would let you all know instead of just disappearing, and I wanted to make sure I held true to that promise. You all deserve that much respect at least.

    I hope everyone can have a great weekend! Until next time!