Comments

Log in with itch.io to leave a comment.

Viewing most recent comments 438 to 458 of 458 · Previous page · First page
(1 edit) (+1)

I can get control of the enemy and command all enemies = D
It’s still impossible to pick up things if they get under water

(+1)

(+1)

Army xD

(1 edit)

Hum that's actually really fun ! I'll fix it as soon as possible thank you !!!!

Edit : I fixed these issues, thank you for your feedback ;)

Hey I tried this out via Linux it it seems to work pretty well, however I think I found a small issue with it. I can't seem to build anything other then the torch. Is there a button I don't know about to switch to other parts? I did try pressing every button on my keyboard to change it.

Hello ! You have to use the wheel of your mouse to scroll the building list :) and if you don’t have a wheel, I’ll add another option in the next update just in case ;)

Been a while since I've written anything here, but I just wanted to tell you that my inner lumberjack just spoke to me, and I became a natural disaster in Daggan. Half of the forest was obliterated by me and my axe before the red foxes were like "Hey man, you're cool 'n' all, but you're destroying our home!" and killed me and my friends.

Also, I noticed that the loading percentage stops at 90%. It's because when Unity loads a scene, it does it in 2 phases. The first one (The one you're showing) is Unity loading in the new content. The second part (The one you're not showing) is Unity deleting all of the old stuff out of memory and replacing that old data with the new data.

I'm not 100% sure how to get the loading percentage to actually reflect both phases, but a quick fix is to create a new float, and set that float to the result of
Mathf.Clamp01(operation.progress / .9f)

And then you can just set the UI piece that displays the percentage to that new float that you made instead of operation.progress.

This's all assuming that you're doing the loading Asynchronously inside of a Coroutine.

If that doesn't work, I'll eat my hat.

If for some reason that doesn't work, here's a link to a YouTube tutorial on the topic

(+1)

Hello ! I'm happy if you enjoy it X'D
Next time I'll make the forest bigger (or harder to cut :p ).


About the loading bar I noticed it too. I'll try your solution but actually, I'm seriously thinking removing it and putting a looped animation with a lot of random texts like Hints and stuff !

if I manage to work enough I should be able to release the next build before the end of the month. Fingers crossed and kisses !

(+1)

so, found a strange crash.

whenever I build a foundation (like, fully built it), whenever I scroll the mouse wheel to choose something else, the game just... freezes. stops working. dead. only thing I can do is press the home button force the game to close. not sure if there's any crash logs the game makes?

That's really strange, I tried to replicate the bug but no way :/ you're playing on PC ?

(1 edit)

yep. also tried it again and it didn't seem to happen? might try again in a moment, iirc when it did happen I was placing it on the edge of the river in the water, and when it did work it wasn't in the water...

will definitely check again, maybe I just got unlucky?

Edit: tried to replicate it several times, no luck. very odd. however, I did notice that when I hit E to build something, the game would often freeze for a second. no idea if that would be connected or not

(+1)

Oh that freeze is still an ongoing feature. When buildings or big objects are added to the map, the navigation stuff is updated and sometimes a little freeze can occur. That's annoying but I'm still trying to improve this part, it's kinda important to allow the characters to walk anywhere they want or just being able to wander in a new house without being stuck in front of a staircase X)


But about the previous problem I'll keep searching, maybe I'll find out what happen ! Thank you for your feedback it's really cool !

(+1)

While it is nice that you added in a new map, i think you should keep the first map as a marker in the road map of the game. Like once the game gets into its later stages, we can still go back to the original map to see just how far the game has come in terms of other maps and the design of those maps

(+1)

Hum why not that could be fun ^^ I'll try to find some nice way to keep the older maps in case the players become curious

(+1)

Since playing the latest update, I've found a few more bugs/problems, but I'd also like to mention that the fixes you made to Daggan made the game a lot nicer! Here's a few things that I feel need to be mentioned.

  • NPC's tend to flip around for a single frame every second or so when above enemies (I figured this out when I forced my buddies up a flight of stairs). Try locking their rotation on the "Z" axis as a possible fix, or go into the scripts and make sure no code is changing their rotation on the "Z" axis. Honestly, doing both probably wouldn't hurt.
  • Crafting text still says "(T) build a (Insert crafting structure here)". Just go in and add a "AB" to the end of "T".
  • Also, about the enemies!I like the adjustment to the amount of enemies, but they really like to gather around my structures. Probably doesn't help that i'm effectively using my buddies as bait. I think that you simply use a distance check to figure out whether or not an enemy can see a NPC and vice versa. Perhaps you should use a method that can tell if there's a direct line of sight, so enemies don't attempt to run up to NPC's they can't actually see.
  • Also with enemies, the moment they notice a NPC, it becomes their soul life purpose to kill that NPC, and they will completely ignore other NPC's and even the player, even if this mean that they will die. All of the enemies under my house were easily killed because they couldn't tear their attention away from my buddies who were on the top floor. You might be able to fix this by changing the Enemy's target depending on who's the closest, or even by changing it to the last character to hurt them.
  • Also, for some strange reason, NPC's tend to teleport upwards if there's a floor under them, and a roof over them. This might be because you've made their colliders too tall. Try making them slightly shorter.

That's about it! Nothing else is really coming to my mind.

Although those torches would look a little nicer with a few particles. They currently look like light bulbs on sticks. (Hahaha)

I tried to not mention anything I said previously, but this still turned out really long.

(+1)

Thank you very much for your feedback and all the time you spent for it ! It's super useful and I'm happy you also enjoy the game !! I will fix the issues for the next update ;)

The main issues are about the Artificial Intelligence and the characters movements, two features I did quickly and I have to redo entirely, cause I don't really like the Unity's current AI "but it does a decent job for the moment ". The weird enemies behavior is surely because of their too simple detection system, it's still a work in progress and super dumb X'D but that's something I love to make so it needs an entire week to be done properly !

The next update will be available probably in a few days, if not a week, cause I have to add the survival system and the particles (like blood, fire and resource gathering).

Thank you again you are awesome !

(1 edit) (+1)

Edit: Wrote this before I saw that you responded!

Also, just a little comment here! I kinda felt like I wanted to help out a little, so I wrote out some code that would help out with the problem with walking off the edge of the map and falling forever.

It's not an extremely complicated script, nor is it long, but if you're interested, I linked the code here with a few instructions on how to use it.

https://bit.ly/2KRVrGE

I hope this helps!

(+1)

Thank you !!! I will try, I want to add cliffs but a second inevitable barrier is always welcome ! 

So, a few bugs/problems to mention, and even a possible fix for each!

  • Alone by day 2. Both of my buddies were gone. First the girl, then the guy.
  • Quite a few too many enemies. When I finally died, it was because I got swarmed by 6 red foxes from the front, and god knows how many from the back.
  • Floor tile texture doesn't tile properly.
  • Grass follows direction of camera, including the up and down tilt.
  • Door is finicky.
  • Foundation hard to get onto, but this might just be because I set the height as high as it would go.
  • Camera is able to flip up and down infinitely.
  • Able to walk off the edge of the map.
  • Jumping off of rocks seems impossible.
  • "T" is a weird place for the crafting.
  • Took me a while to realise that the text at the bottom of the screen wasn't a tutorial.
  • Able to see inside yourself.

For the fixes!

  • For the first issue, try to make some form of UI popup that tells the player that a friendly NPC has died. Extra points if it mentions the NPC's name and how they died, just like how Minecraft does it!
  • Try placing a limit on how many enemies can exist around the player at any time.
  • Fixing the texture tiling issues shouldn't be hard. If you designed the texture to tile, then try checking the 3D models UV map.
  • Try locking the rotation of the grass in the X axis, so it stays upright.
  • It seems like the door needs to be pushed open by running into it. Try setting a button prompt to open it.
  • Now, I don't exactly know what kind of collider you are using for the player avatar, but if you aren't using a capsule, try swapping to it. Another thing you could do to help players get onto the foundation is to allow players to place foundation stairs next to a foundation piece, no matter if it's intersecting the ground or not.
  • Try clamping the up and down rotation of the camera.
  • With the map, you may feel inclined to place four large lengthened cubes to stop the player, but I've had too many issues with this approach. Just like the camera, try clamping the players position! Stop them from moving too far out!
  • Since it's impossible to jump off of rocks, it might mean that you're ignoring it in the ground check. Try adding it!
  • When I started crafting, my finger automatically pressed "Q" and "TAB". Try swapping the button to one of those!
  • Personally, I think that the crafting options should be inside a menu instead of written at the bottom of the screen in a way that makes it look like a subtitle, but you've already mentioned that you're adding menus later. Please let this be one!
  • Try moving the camera right in front of the character model's eyes. You'll also have to tilt the head on the character to match the up and down rotation too.

I know this is getting long, but let me add a few things!

  • With the crafting, allow the player to place multiple objects before closing the menu. Also allow the player to swap what item they're making without having to close the menu first.
  • Try making the character collider slightly larger to help with clipping issues.
  • Attacking shouldn't be used to destroy buildings. Perhaps try forcing the player to be in crafting mode to do so. Also I wasn't able to destroy the floor after placing it.
  • Try setting the attack range up on the player.

I know this is a long list, and it might be a bit of a headache to read through, but I hope this helps!

(1 edit) (+1)


Thank you, it's really impressive !

I’m gonna fix everything I can, some of the problems are temporary until I redo entirely some systems, like the movement, the UI or the nsfw. As you guessed some bugs are because a lot of stuff isn't implemented yet or only in a rough form. But step by step it's getting better !

I'll try to publish an update as soon as possible based on your review, thank you again ;)

I wanted to ask you if there is a chance to contact you directly for bugs and infos about the game. do you have Telegram or some sort? I would really like to help directly with bugfinding.

That's  a really good idea ! You can contact me on Discord Malerouille#6365
Be prepared cause you're gonna write a lot if you want to list the current bugs :p

Thank you for the idea <3 And for anyone else interested, feel free to add me too on Discord, even for telling how much you hate this game X'D

I tried playing the previous version a few days ago and today I tried playing the updated version... It is much better! Much remains to be done, but at the moment the game looks promising

Thank you ! I 'm glad you feel the difference ! I know these are often tiny steps but I'm happy it's visible and meaningful X) Don't hesitate if there's anything you'd like so see improved soon  or features than annoy you ;)

this game is fucking shit but has a potentional to become better than now (23.08.19)

Ha ha I agree it will be better, slowly but surely. And it’s more a prototype than a game :3 

Thank you for changing to ZIP

how far away is enemy villages in the game for us to rampage? also, although this is essentially a village building and defending game at this stage besides the obvious nsfw factors, will this game involve raiding, pillaging, and, i know its really dark, but rape of the enemy villagers? i know its kind of a terrible thought, but for people who want to play as raiders, be more barbaric, or just be the plain evil villian that would be a feature that is sort of necessary if they wanted more characters on their side. its a game after all, and some people just want to watch an artificial world burn

also, just a suggestion: maybe lower down the jump height. whenever i press the jump button its a little hop, but when i hold the jump button its like i'm jumping on the moon

Hello ! I agree about the jump it's like the current inputs, I have to redo it completely ! They're horrible but at least Unity released an alpha version of its new input system.

Speaking of being a villain, let's talk about pregnancy first in this world. Sex is a game and for kids you need to have a really nice moment for each involved characters. Let's say that sadness is the perfect contraception here. So to have kids you will need sex with consent and happiness.

So if you rape someone, his/her entire team will automatically hate you and they will became extremely violent. So yes you can raid others and spread chaos, but they will become kinda tough. Even those you didn't meet yet.

It's still a goal for the future but I already have a clear idea of the AI and how the NPCs will react. The main challenge will be to develop a smart IA capable of growing it's own village and build stuff on the map.

I fixed the jump problem. You have no longer access to the moon sadly :p

it needs alot of development but rather than that its pretty nice I like it

Thank you ! I agree there a lot of work :p

It literally took a split second to convert from .RAR to .ZIP

I guess the RAR format was an issue for you, I’m sorry for that .  I’m wondering why can’t you extract it directly ?

My official program to do so doesn't work, and also I've been looking for hours, and it turns out it never went onto the device...

Hellows! Are you currently the only one working on the game? because if so, this demo is pretty neato! 

There are 3 bugs i found

- WASD Inputs interfere with the "Press A for build mode"

- In a sex scene, you can "press E to control" multiple times, making the characters glitch out (They move back a little every time you press E) and if you glitch through the map, it will crash

- I fell down the edge. The earth is flat all along. :'D

(+1)

Ha ha awesome ! Yeah for the map I'm currently making a closed one but it's a long task so I prefer to focus on the systems for the next updates (like for building stuff). It's hilarious I'm gonna try the sex glitch now X'D 

About the game you're right I'm currently alone, I'm glad you like all that stuff ;) As you imagine there's a looot of work and I'm focusing on adding the entire gameplay before cleaning all the systems (like the sex gameplay, it's super glitchy but it's just a draft at this point).

And sure I should find another input for the build mode, that wasn't smart !

Thank you for your feedback you're awesome !!!

Pretty good start. Clunky to move, the terrain is a pain to navigate, and the sex scenes dont work on any kind of incline... but thats all stuff that can be ironed out. The concept is unique and feels like it has potential imo. Please keep up the good work.

Thank you it's super kind and useful ! I'm aware of all this problems and all the others hidden, I'm working hard to improve the current systems, one by one X) and adding the missing ones too ! I'm glad you like it even if it's super rough !

Is the Windows version outdated? it is one version behind, but considering the other 2 versions were updated 7 hours ago, i'm guessing you are going to update soon

No it’s okay  :) I just fixed a minor problem while exporting for Mac and Linux.

Will there be female npc's?

Yes ! Actually there will be females and they can have children if you're lucky enough. I just need to take a few days to make all that part ! That will be the main way to grow your village !

Neat

Deleted 1 year ago

Thank you I hope it will continue this way !!

This game have a shining future, I can't wait for new content.

Thank you X) it's super sweet !

(-1)

can you tell me why the fuck is Z to move forward and not W and ASD? please change this because you just made your damn game unplayable. as a lot of people say "don't fucking fix what's not broken"

(1 edit)

I will do this sure,  Done :) you can also change the Inputs in the configuration menu before the game.

Viewing most recent comments 438 to 458 of 458 · Previous page · First page