GnollHack - tommi.gustafsson
Changes
  • GPU Acceleration support. It can now be enabled in the settings. In the case of multiple GPUs, the used GPU must be selected in Windows Settings → System → Display → Graphics. It defaults to the integrated GPU.
  • Bug fixes.
Dawn Apart - The Great Detective Harry Hole

Hey There Everyone!

We are creeping closer and closer to our Early Access release date and with that we've been making some massive changes. We are super excited to get them in your hands and hear what you think about them:

Optimization

We spent a good amount of time optimizing the game. Both in terms of rendering and game logic. We reworked how our renderer handles voxel data to allow not only for more efficient space skipping. We now store all voxel data in the gpu in a format that allows us to do some bitwise operations to determine if and 8^3, 4^3, or 2^3 region of voxels is empty before finally checking the lowest 1^3 level. In simple terms we use a smaller amount of faster operations during rendering. In even simpler terms: less + faster more gooder than more + slower.

This new structure also comes with more or less also built in levels of detail (LOD)!

Because of our top down camera you will almost never see a higher LOD, but we take advantage of them by using higher LODs when rendering shadows. Starting off we use 2^3 as the lowest level for shadows, but then we also aggressively use higher LODs for things outside the camera frustum. This results in some visible artifacts at the highest camera height, but for the moment the advantages far outweigh the drawbacks.

Aside from rendering we also did a lot of work on general game system optimizations. We massively improved performance of mining drills causing terrain updates and addressed some issues with agent pathing that resulted in huge frame drops.

To be clear though while we made huge strides with this update we are still going to continuously work on optimizing. Even still it's not quiet where we want it to be for lower end hardware, but I am 100% sure that we haven't exhausted all the potential avenues for optimizing so expect this to keep getting better with future updates.

Progression & New Building Content

We've been taking a hard look at progression and updated a large number of recipes along with general path progression takes. Previously the early game required a lot of items made from various resources making it a bit hard to just get in and learn how to play without being overwhelmed.

We've also been adding more and more content to the game in terms of building. This includes new variations, or completely new sets of walls and floors. Below is an example with the new Shoji & Tatami set.

The awesome thing about all these changes is everything here requires absolutely no code changes. It's all just changed values, or new elements in our client side definition files. We'll most likely post more information about it after Early Access, but because we've always built the game with modding in mind, anyone can easily add new buildings, recipes, items, pretty much whatever.

Agent Improvements

As mentioned before, agents were also hit with a number of updates. Agent behavior is something that is being continuously worked on and updated. They've gone from dumb dummies some months ago to very capable with some slightly odd behavior, mainly doing things in not very efficient ways. This of course is a true nightmare to efficiency enjoyers.

We buffed their capabilities by making workbenches faster and giving them the capability to "Bulk Craft". This means that if you queue 20 conveyor belts, they will bring as many materials as possible to craft them. We also increased their carry capacity to allow them to craft more items at once. We will most likely continue tweaking their capabilities as this made them absolute crafting machines.

We are also working on other improvements at the moment which would allow them to use items on the ground for tasks instead of needing to store them first.

New Camera Controls

The original camera controller was one of the oldest things in the project and never really got a fresh coat of paint. We decided it was finally time and instead of doing a fresh coat we threw the old one out the window. Instead of being locked into 90 degree angles the camera can be freely rotated with right click or q/e. You can rotate in 45 degree increments with shift + q/e, but the new freedom of movement allows for a refreshing level of exploration of the voxel world. You'll also notice that scrolling in and out is very smooth instead of actively fighting you, so that's great!

Priorities Updates

We've heard your feedback about the priorities window not being very user friendly. We got rid of the moving boxes that all look the same and replaced them with sprites that are much more simpler to read at a glance.

First Pass Audio Update

We are working with Plume Pulse to overhaul just about everything audio in our game, and this will be the first version with many of those updates included. This means active and idle machines, mining drills, workbenches, ambient noises, weapons, and more. There is some functionality not implemented into the game yet so over time the soundscape of the world will just keep improving, but it's a massive improvement over the original sounds.

First Pass Localization

With this update we added the first pass of French, Spanish, Korean, Simplified Chinese, and Russian! We do have some missing strings and incorrect visuals in the ui that will be fixed in a future update.

Changes
  • Plume Pulse Audio Update

  • Re-implemented stockpile state changes on middle mouse

  • Added logic to not start camera panning if a ui element is hovered

  • Fixed agent formation logic not properly running during move commands

  • Added fallback logic if a terraform tile order continues living after completion

  • Fixed empty stockpile action not properly utilizing agent storage requests

  • Fixed hpa build error where parent nodes with no children were treated as bottom level nodes

  • Added small offset to all non-terrain premade objects to avoid z-fighting

  • Fixed agents not being able to path to chunks for interactions

  • Fixed agents not facing tile they are mining/terraforming

  • Fixed idle wandering clearing plans

  • Added speech bubble to space port with active trades

  • Fixed improper grammar in hungry agent text

  • Added toast message when an item is being picked up and no free stockpile is available

  • Fixed player being able to haul from trader (causes a crash)

  • Updated tutorials to use copper instead of iron

  • Fixed wrong font being used in the building stats of some DetailViews (miners and cranes)

  • Fixed output item images being stretched in ConverterDetailView

  • Refactored gpu upload and brick map trace to use morton ordered voxel data for efficient space skipping for objects, plants and trees

  • Adjusted post-processing effects

  • Increased ambient moon light intensity

  • Improved performance of plant/tree tracing

  • Updated plant/tree shadow tracing to use the default voxel object trace path when wind disabled

  • Added shadow tracing specific lods

  • Reduced shadow map size 4096 -> 2250

  • Slightly djusted fog values

  • Made 70% fixed resolution scaling the default for new players

  • Updated sun/moon to update incrementally over time

  • Updated rts camera to use freelook cinemachine camera

  • Updated how middle mouse and right click inputs are handled in relation to new camera inputs

  • Updated terrain meshing system to only add the render mesh components the first time through

  • Added terraformed terrain flag to brick map attributes

  • Updated all forms of terraforming to set the brick map attribute and render with a terraforming palette

  • Clicking on a currently animating TextTyping component now instantly completes the typing effect

  • Fixed gifs in messages not starting while the game is paused

  • Removed quantity count for global stockpile categories

    • (still being counted but not shown)

  • GlobalStockpileController can now also spawn blueprints that stem from base items (like base-lantern or base-wood-wall) on click

  • Whenever a crafting pioneer brings ingredients to the workstation they will bring extra amount to fulfill the recipe queue requirements (if the same item type).

  • Crafting pioneers are no longer forced to store the items they craft, instead items are dropped on the ground for another pioneer to store. So the crafting pioneer keeps working until the queue is empty or no longer possible to craft.

  • Fixed GetNearestHpaNode returning a dynamic blocker node in one case

  • Fix health bars blocking raycasts (ie. selecting stuff in the world)

  • Fixed space port being able to be placed over other spaceports

  • Added slider to haul to menu

  • Fixed context menu button missing disable animation causing button colors to get stuck

  • Fixed missing bubbles on converters without fuel storage

  • Added bubbles to drills (missing fuel & output blocked)

  • Made output blocked the most important display information

  • Updated idle logic for energy usage (10% usage when idle)

  • Updating mining drill logic to allow for going idle/depowering when output is blocked

  • Fixed autoscrolling text not working when the game is paused

  • Fixed toast messages not using unscaled delta time for lifetime

  • Added new trader ship (Beetle)

  • Priorities modal showing icons instead of different sized bars for level of priority

  • Darkened color of images in priorities modal

  • Added explanation texts to priority modal

  • Added tooltips to skill categories in priorities modal

  • Changed success chances for mining from 6%-60% (lvl 1-10) to 20%-90% (lvl 1-10)

  • Changed success chances for wood cutting from 6%-60% (lvl 1-10) to 20%-90% (lvl 1-10)

  • Agents are now interrupting a mining action after 20 mining attempts (regardless if they were successful or not)

    • (Was previously 10 successful attempts, which made them stay for a very long time in the lower levels)

  • Moved help button beside the modal buttons

  • Removed play button from the time controls

  • Renamed "disable shadows" option to "shadows"

  • Deactivated unused back button in HelpModal

  • Stonemasonry , Chemical Workbench, Mechanical Workbench, Advanced Workbench and High-Tech Workbench craft 2x faster

  • Carpenter's bench crafts 1.5x faster

  • Stone blocks take twice the time to craft (thus effectively overpowering stonemasonry compared to punch press)

  • Punch press recipes come later in the game now

  • Changed some recipes to start with copper ingots, then copper plates, steel ingots, steel plates and then steel gears rather late, thus making the cutter more important and the punch press only necessary later.

  • Red Assembler recipe fixed (was somehow buggy)

  • Assemblers got affordable, thus making a mass scale production of - for example - conveyor belts without pawns possible.

  • Spaceport accepts two voxels height difference in the landing zone

  • First item trade is now only producing 30 conveyor belts and is more expensive (asks for plates instead of ingots)

  • Conveyor belts and feeders are earlier accessible at medium scale

  • Added new terrain specific box collider system with optimizations specific to terrain with height maps

  • Added various optimizations to generating box and compound colliders when using quaternion.identity rotation

  • Added HpaPathingMode enum which describes the type of Hpa pathing which is being performed

  • Added logic for SuperCoarse pathing which ignores dynamic obstacles and quickly verifies there is a potential path between start and end node

  • Fixed issue where the same hpa nodes could fully tested during planning

  • Adjusted interaction ranges for agents slightly

  • Patched issue with invalid prototype data entities breaking the entire save on load

  • adding glass door, copper door, hardened steel door, steel door (the new stone door), Shoji (paper walls) and Tatami floors (soft mat), Sandbags

  • Added first pass French, European Spanish, Korean, Simplified Chinese, and Russian localization files

  • Added WIP credits to main menu

  • Fixed messages modal toggles not being localized

  • Fixed messages modal back button not being localized

  • Fixed tab buttons in settings menu not being localized

  • Fixed text not properly fitting in dropdowns in settings menu

  • Fixed roof level view button not being localized

  • Fixed various tooltip texts not being localized

  • Fixed issue where one item could take up multiple input slots and block up a converter

We hope that you'll notice all the improvements as soon as you launch the game. Have fun playing and we can't wait to hear what you think!

Until next time!

The best place to get in touch with us and see what we are working on is by joining our Discord server. So if you haven't yet, stop by and let us know your thoughts!

4:15am
Vacation Cafe Simulator - Amalie

Hey friends!
It’s time for a fresh progress update from Vacation Cafe Simulator! Over May and June, we’ve been polishing systems, refining gameplay, and bringing more life to our cozy Italian world. Let’s take a look at what’s been cooking:

What’s been done:

• Refined the cooking process based on internal playtests — making everything feel smoother and more fun.
• Reworked how players interact with the world — buying ingredients at the store, using kitchen surfaces, and more.
• Added a full tutorial and quest system to guide new players through the café experience.
• Continued work on sound design and original music to boost immersion.
• Improved customer NPC animations for more life-like movement.
• Started developing ambient NPCs to make the town feel more alive.
• Enhanced the main town area with more detail and new points of interest.
• Working on game balance to maintain both challenge and cozy vibes.
• Began implementing a save/load system so your café journey feels smooth and comfortable.
• Added a furniture and kitchen equipment store to help you upgrade your restaurant.
• Created tons of new artwork to deepen the warm 90s Italian atmosphere.
• Overall, we’re getting closer to a new test build and are polishing many aspects of the game.

🎯 What’s next:

We’ll keep refining everything for the best cozy and engaging experience possible. More playtesting, polish, and feature tweaks are on the way!

Thanks for following along — your support means the world to us!

Want to stay connected and share your thoughts?

🐦 Twitter/X: https://x.com/VacationCafeSim
💬 Discord: https://discord.gg/5exQ8vaWsC

More cozy updates coming soon!✨

PAGUI打鬼 - lion455

Dawn Apart Playtest - The Great Detective Harry Hole

Hey There Everyone!

We are creeping closer and closer to our Early Access release date and with that we've been making some massive changes. We are super excited to get them in your hands and hear what you think about them:

Optimization

We spent a good amount of time optimizing the game. Both in terms of rendering and game logic. We reworked how our renderer handles voxel data to allow not only for more efficient space skipping. We now store all voxel data in the gpu in a format that allows us to do some bitwise operations to determine if and 8^3, 4^3, or 2^3 region of voxels is empty before finally checking the lowest 1^3 level. In simple terms we use a smaller amount of faster operations during rendering. In even simpler terms: less + faster more gooder than more + slower.

This new structure also comes with more or less also built in levels of detail (LOD)!

Because of our top down camera you will almost never see a higher LOD, but we take advantage of them by using higher LODs when rendering shadows. Starting off we use 2^3 as the lowest level for shadows, but then we also aggressively use higher LODs for things outside the camera frustum. This results in some visible artifacts at the highest camera height, but for the moment the advantages far outweigh the drawbacks.

Aside from rendering we also did a lot of work on general game system optimizations. We massively improved performance of mining drills causing terrain updates and addressed some issues with agent pathing that resulted in huge frame drops.

To be clear though while we made huge strides with this update we are still going to continuously work on optimizing. Even still it's not quiet where we want it to be for lower end hardware, but I am 100% sure that we haven't exhausted all the potential avenues for optimizing so expect this to keep getting better with future updates.

Progression & New Building Content

We've been taking a hard look at progression and updated a large number of recipes along with general path progression takes. Previously the early game required a lot of items made from various resources making it a bit hard to just get in and learn how to play without being overwhelmed.

We've also been adding more and more content to the game in terms of building. This includes new variations, or completely new sets of walls and floors. Below is an example with the new Shoji & Tatami set.

The awesome thing about all these changes is everything here requires absolutely no code changes. It's all just changed values, or new elements in our client side definition files. We'll most likely post more information about it after Early Access, but because we've always built the game with modding in mind, anyone can easily add new buildings, recipes, items, pretty much whatever.

Agent Improvements

As mentioned before, agents were also hit with a number of updates. Agent behavior is something that is being continuously worked on and updated. They've gone from dumb dummies some months ago to very capable with some slightly odd behavior, mainly doing things in not very efficient ways. This of course is a true nightmare to efficiency enjoyers.

We buffed their capabilities by making workbenches faster and giving them the capability to "Bulk Craft". This means that if you queue 20 conveyor belts, they will bring as many materials as possible to craft them. We also increased their carry capacity to allow them to craft more items at once. We will most likely continue tweaking their capabilities as this made them absolute crafting machines.

We are also working on other improvements at the moment which would allow them to use items on the ground for tasks instead of needing to store them first.

New Camera Controls

The original camera controller was one of the oldest things in the project and never really got a fresh coat of paint. We decided it was finally time and instead of doing a fresh coat we threw the old one out the window. Instead of being locked into 90 degree angles the camera can be freely rotated with right click or q/e. You can rotate in 45 degree increments with shift + q/e, but the new freedom of movement allows for a refreshing level of exploration of the voxel world.

You'll also notice that scrolling in and out is very smooth instead of actively fighting you, so that's great!

Priorities Updates

We've heard your feedback about the priorities window not being very user friendly. We got rid of the moving boxes that all look the same and replaced them with sprites that are much more simpler to read at a glance.

First Pass Audio Update

We are working with Plume Pulse to overhaul just about everything audio in our game, and this will be the first version with many of those updates included. This means active and idle machines, mining drills, workbenches, ambient noises, weapons, and more. There is some functionality not implemented into the game yet so over time the soundscape of the world will just keep improving, but it's a massive improvement over the original sounds.

First Pass Localization

With this update we added the first pass of French, Spanish, Korean, Simplified Chinese, and Russian! We do have some missing strings and incorrect visuals in the ui that will be fixed in a future update.

Changes
  • Plume Pulse Audio Update

  • Re-implemented stockpile state changes on middle mouse

  • Added logic to not start camera panning if a ui element is hovered

  • Fixed agent formation logic not properly running during move commands

  • Added fallback logic if a terraform tile order continues living after completion

  • Fixed empty stockpile action not properly utilizing agent storage requests

  • Fixed hpa build error where parent nodes with no children were treated as bottom level nodes

  • Added small offset to all non-terrain premade objects to avoid z-fighting

  • Fixed agents not being able to path to chunks for interactions

  • Fixed agents not facing tile they are mining/terraforming

  • Fixed idle wandering clearing plans

  • Added speech bubble to space port with active trades

  • Fixed improper grammar in hungry agent text

  • Added toast message when an item is being picked up and no free stockpile is available

  • Fixed player being able to haul from trader (causes a crash)

  • Updated tutorials to use copper instead of iron

  • Fixed wrong font being used in the building stats of some DetailViews (miners and cranes)

  • Fixed output item images being stretched in ConverterDetailView

  • Refactored gpu upload and brick map trace to use morton ordered voxel data for efficient space skipping for objects, plants and trees

  • Adjusted post-processing effects

  • Increased ambient moon light intensity

  • Improved performance of plant/tree tracing

  • Updated plant/tree shadow tracing to use the default voxel object trace path when wind disabled

  • Added shadow tracing specific lods

  • Reduced shadow map size 4096 -> 2250

  • Slightly djusted fog values

  • Made 70% fixed resolution scaling the default for new players

  • Updated sun/moon to update incrementally over time

  • Updated rts camera to use freelook cinemachine camera

  • Updated how middle mouse and right click inputs are handled in relation to new camera inputs

  • Updated terrain meshing system to only add the render mesh components the first time through

  • Added terraformed terrain flag to brick map attributes

  • Updated all forms of terraforming to set the brick map attribute and render with a terraforming palette

  • Clicking on a currently animating TextTyping component now instantly completes the typing effect

  • Fixed gifs in messages not starting while the game is paused

  • Removed quantity count for global stockpile categories

    • (still being counted but not shown)

  • GlobalStockpileController can now also spawn blueprints that stem from base items (like base-lantern or base-wood-wall) on click

  • Whenever a crafting pioneer brings ingredients to the workstation they will bring extra amount to fulfill the recipe queue requirements (if the same item type).

  • Crafting pioneers are no longer forced to store the items they craft, instead items are dropped on the ground for another pioneer to store. So the crafting pioneer keeps working until the queue is empty or no longer possible to craft.

  • Fixed GetNearestHpaNode returning a dynamic blocker node in one case

  • Fix health bars blocking raycasts (ie. selecting stuff in the world)

  • Fixed space port being able to be placed over other spaceports

  • Added slider to haul to menu

  • Fixed context menu button missing disable animation causing button colors to get stuck

  • Fixed missing bubbles on converters without fuel storage

  • Added bubbles to drills (missing fuel & output blocked)

  • Made output blocked the most important display information

  • Updated idle logic for energy usage (10% usage when idle)

  • Updating mining drill logic to allow for going idle/depowering when output is blocked

  • Fixed autoscrolling text not working when the game is paused

  • Fixed toast messages not using unscaled delta time for lifetime

  • Added new trader ship (Beetle)

  • Priorities modal showing icons instead of different sized bars for level of priority

  • Darkened color of images in priorities modal

  • Added explanation texts to priority modal

  • Added tooltips to skill categories in priorities modal

  • Changed success chances for mining from 6%-60% (lvl 1-10) to 20%-90% (lvl 1-10)

  • Changed success chances for wood cutting from 6%-60% (lvl 1-10) to 20%-90% (lvl 1-10)

  • Agents are now interrupting a mining action after 20 mining attempts (regardless if they were successful or not)

    • (Was previously 10 successful attempts, which made them stay for a very long time in the lower levels)

  • Moved help button beside the modal buttons

  • Removed play button from the time controls

  • Renamed "disable shadows" option to "shadows"

  • Deactivated unused back button in HelpModal

  • Stonemasonry , Chemical Workbench, Mechanical Workbench, Advanced Workbench and High-Tech Workbench craft 2x faster

  • Carpenter's bench crafts 1.5x faster

  • Stone blocks take twice the time to craft (thus effectively overpowering stonemasonry compared to punch press)

  • Punch press recipes come later in the game now

  • Changed some recipes to start with copper ingots, then copper plates, steel ingots, steel plates and then steel gears rather late, thus making the cutter more important and the punch press only necessary later.

  • Red Assembler recipe fixed (was somehow buggy)

  • Assemblers got affordable, thus making a mass scale production of - for example - conveyor belts without pawns possible.

  • Spaceport accepts two voxels height difference in the landing zone

  • First item trade is now only producing 30 conveyor belts and is more expensive (asks for plates instead of ingots)

  • Conveyor belts and feeders are earlier accessible at medium scale

  • Added new terrain specific box collider system with optimizations specific to terrain with height maps

  • Added various optimizations to generating box and compound colliders when using quaternion.identity rotation

  • Added HpaPathingMode enum which describes the type of Hpa pathing which is being performed

  • Added logic for SuperCoarse pathing which ignores dynamic obstacles and quickly verifies there is a potential path between start and end node

  • Fixed issue where the same hpa nodes could fully tested during planning

  • Adjusted interaction ranges for agents slightly

  • Patched issue with invalid prototype data entities breaking the entire save on load

  • adding glass door, copper door, hardened steel door, steel door (the new stone door), Shoji (paper walls) and Tatami floors (soft mat), Sandbags

  • Added first pass French, European Spanish, Korean, Simplified Chinese, and Russian localization files

  • Added WIP credits to main menu

  • Fixed messages modal toggles not being localized

  • Fixed messages modal back button not being localized

  • Fixed tab buttons in settings menu not being localized

  • Fixed text not properly fitting in dropdowns in settings menu

  • Fixed roof level view button not being localized

  • Fixed various tooltip texts not being localized

  • Fixed issue where one item could take up multiple input slots and block up a converter

We hope that you'll notice all the improvements as soon as you launch the game. Have fun playing and we can't wait to hear what you think!

Until next time!

The best place to get in touch with us and see what we are working on is by joining our Discord server. So if you haven't yet, stop by and let us know your thoughts!

4:12am
Warhammer 40,000: Space Marine - Master Crafted Edition - almovas_sega

Hi everyone!

Thank you for your patience! Patch 3 is finally here. We have been working on a number of fixes that we hope will make your experience better. Enjoy!

🌍 Localisation 

• Updated Dutch, Polish, and Italian translations. 

• Improved localisation for game modes, controller options, and key terms (e.g. Skar Boyz). 

🧭 UI/UX Enhancements 

  • Major improvements to chat input, scoreboard layout, and HUD elements. 

  • Added glow effects, spacing fixes, and better alignment across menus. 

  • Improved mission selection, unlock notifications, and subtitle persistence. 

  • Added new button prompts, SFX, and controller glyphs (including Steam Deck and Switch Pro). 

  • Fixed softlocks, graphical glitches, and input issues in various screens. 

⚔️ Gameplay Fixes 

  • Fixed softlock in Exterminatus wave 5. 

  • Restored coop live tokens and fixed weapon wheel ammo display. 

  • Improved challenge decorators and shield visualisers. 

  • Fixed campaign info and map loading inconsistencies. 

  • Legacy black screen issue fixed 

🎮 Platform & Controller Support 

  • Steam Deck now launches correctly. 

  • Improved controller disconnect handling on PC. 

🌐 Networking 

  • Fixed session code visibility in streamer mode. 

  • Improved EOS invite handling and native session stability. 

  • Disabled team auto-balancing during gameplay. 

  • Enhanced P2P connection handling to prevent lobby splits. 

🛠️ Technical & Build 

  • Moved local user profile data to AppData to prevent config crashes. 

  • Added memory safety for loadouts and improved fade animations. 

🔊 Audio & Visual 

  • Fixed missing or duplicate SFX events. 

  • Updated button textures and fixed VFX issues. 

Love n Life: Lucky Teacher - reborn entertainment

🎓✨ Welcome to Lingyun University – Where Prestige Meets Mystery.

Are you ready to step into a world that’s far more than just a campus? This isn’t your average school experience. This is Lingyun University, a hyper-elite institution perched on a secluded island just off the coast, where the brightest minds, cutting-edge technology, and jaw-dropping secrets collide.

By day, you'll study, live, and work alongside stunning, beautiful… and also talented ladies. By night… well, that's when the island starts whispering.

[carousel autoadvance="true"][/carousel]

🏝️ Beyond the classrooms lies a land frozen in time with quaint villages, untouched forests, and ancient traditions that the modern world has long forgotten. It’s a peaceful paradise… or so it seems.

[carousel autoadvance="true"][/carousel]

But what if we told you this paradise hides layers of mystery? What if the locals’ tales of an ancient deity, long-lost treasures, and brutal battles of the past weren’t just bedtime stories? What if the island itself was watching you?

Behind the university’s high-tech walls and glossy perfection lie hidden dramas and ancient forces waiting to awaken. Are you just a student, or are you part of something much, much bigger?

[carousel autoadvance="true"][/carousel]

🌌 Romance. Mystery. Legacy. Destiny.

Are you ready to uncover the truth, build wonderful relationships, and carve your own path at Lingyun?

Because once you set foot on this island… nothing will ever be the same.

[carousel autoadvance="true"][/carousel]

🎯 Wishlist Love n Life: Happy Student now if you haven’t already!  🗓️ Mark your calendar for July 11, you won’t want to miss your next study session with these irresistible ladies and the big discount.

Join the vibrant Reborn community on Discord, connect with other players, share your ideas, and become part of our growing community. If you want to support us, please click "Follow" on Our Developer Page

Stars Die - CALÇOTADA

Hello perverts, it's been a very long time I think. I wanted to make an announcement about my latest game FLYKNIGHT all the way back in January but I just forgot, as usual. Anyway, it's an old school dungeon crawler reminiscent of King's Field but everyone is a bug. I was writer (and producer) so you can expect my usual bullshit and loathsome characters who desperately need a hug or a punch to the face.

It's on SALE right now for basically nothing and you can even play it online coop with your deviant friends for extra fun.

If you somehow need even more convincing it also has 96% positive reviews and we all know Steam reviewers never lie.

https://store.steampowered.com/app/3108510/FlyKnight/

And since we're all here, just another reminder that we're still hard at work on Sorceress (where I'm also the writer, among a bunch of other stuff) and you should wishlist that NOW. We will have important news about it soonish.

https://store.steampowered.com/app/2168070/Sorceress/

Net.Attack() - Splice

Hey @everyone ,

it’s Hotfix time! Net.Attack() has been in Early Access for over a week now and we have really enjoyed watching you play the game while we analyzed the channels, videos, and reviews.

We’ve received so much helpful feedback from you that we wanted to spend some time fixing some of the annoying or unbalanced issues and bugs before diving into further content and feature development.

Thanks for taking your time to share your ideas! Since we love playing ROS!E in Daily Challenge mode, she will be playable again on July 1st and 5th to celebrate the first Early Access Update! Have a nice week and happy hacking!

Changelog: As some of you may be interested, we decided to deliver a more detailed changelog for the things that are worth knowing. Some of them were requested directly by you:

General:

  • Buff stacks are not deleted after leaving coding environment,

  • Projectiles are only deleted if the code has been changed,

  • Added an option for setting the VFX transparency,

  • “Pause” menu doesn’t open when tabbing out in coding environment,

  • Level exit now also opens when firewall is activated,

  • Added a Reroll pickup instead of gaining Rerolls per layer,

  • Enemy waves balancing improvements,

  • Mines were buffed,

Player/Characters:

  • More opportunities for healing,

  • Improved coin collection for every character,

  • Basic player speed increased,

  • Enemies will be pushed back after hitting the player,

  • Hop²a: root nodes modified,

  • Hop²a: “Combine” node was removed,

  • Hop²a: Infection tick time was buffed,

Nodes:

  • “For” nodes have mostly “Once”-Inports,

  • “Sequence” nodes have higher rarity,

  • “For(NodeDepth)” node was removed,

  • “Push” node has greater effect on smaller enemies,

  • The root node in Bootcamp missions now triggers only once,

Upgrades:

  • Selection visibility improved,

  • Overall upgrade experience points balancing,

  • There are upgrades with maximum 3 or 5 available points now,

  • “Time Converter”: effect was doubled,

  • “Skill Farmer”: effect was buffed,

Bugfixes:

  • Recursion should work properly and is powerful again!,

  • “Adaptable Investor” Achievement works as intended,

  • Parents in “For” nodes gets counted correctly,

  • Screensaver doesn’t appear when playing with controller,

  • Chips start extracting even when the player stands on them while refilling,

  • Connected controller doesn’t cause movement problems

3on3 FreeStyle: Rebound - 3on3 Freestyle


Greetings Ballers,

We want to inform everyone that the Scheduled Server Maintenance will start on July 1, 2025.

Kindly check the details below: =======================================================================
[color=orange]Maintenance Duration[/color]
7/1 23:00 - 7/2 02:00 PDT


[color=orange]Maintenance Details:[/color]
1)July Login Bonus Event
2)July Stay Connected Event
3)Shopping Spree! Event

[color=yellow][Bug Fixed][/color]
[color=orange]
*Fixed an issue where your character sometimes couldn't move when playing with AI teammates.
*Updated the message shown when you can’t send an invitation
*Fixed an issue where the camera sometimes lost track of your character during gameplay
*Fixed an issue where tapping the "Report" button in the Team Lineup screen accidentally opened the Playtime Event screen.[/color]


[color=green][Reward Distribution][/color]
- Noah's Prestige Up Mission Reward
- Noah's Play Mission Reward
- Court Summit Q&A Outstanding Submission Reward
=======================================================================

Please know that the game will not be accessible during server maintenance.

Thank you for your continued support.

[color=orange]- 3on3 FreeStyle Team[/color]
...

Search news
Archive
2025
Jul   Jun   May   Apr   Mar   Feb  
Jan  
Archives By Year
2025   2024   2023   2022   2021  
2020   2019   2018   2017   2016  
2015   2014   2013   2012   2011  
2010   2009   2008   2007   2006  
2005   2004   2003   2002