Glitches are horrible... what happened?

The world boss UI has gone to complete garbage, 9 times out of ten the world bosses don’t know what they are doing they target players but make no attempt to attack just standing there doing circles only because the people i play with are paranoid that they MIGHT get hit but it almost never happens because the bosses don’t attack???

people who join my server seem to take fall damage at first but as soon as they join my guild they take zero fall damage, this is not a setting i altered in any way on my server and takes so much out of the game…

there have been many instances of players in my server having their weapons randomly unequipping without cause., for example in mid combat they are using their weapons and all of a sudder they are spontaneously punching the enemy rather than swinging the weapon on their back

Lastly, for reasons unknown to me or anyone i play with, the high frequency at which items will be grabbed or crafted. will use the resources but not appear in the inventory or chest until a person quits and reloads the game is astronomically high… it never used to be this way i have played this game on and off for YEARS. how has so much of this game broken. im glad things are being added but at what cost???

Why is the game as it is not being fine tuned and properly fixed BEFORE adding new content? or rather now that the new content (isle of siptah) has been out for a LONG time. why is the game not being fine tuned, there is no way this is ONLY happening in my server… there is no way these things have not been discussed before? are these issues even being worked on?

3 Likes

This usually happens when the server is running particularly poorly. Possibly too many players or what they are doing is dragging performance down.

This is a new bug. Its cause is understood and has already been reported and it will likely be fixed soontm.

Do you have Devious Desires mod? Every time I’ve seen this issue brought up, that mod was behind it. You can fix the issue by taking all of your armor off and putting it back on.

Not sure on this one. Maybe the inventory sorting problem? Should work by changing sorting to no sort, though maybe another mod could be doing it.

Well, there isn’t only one answer to that, but they said that, going forward, every other update was going to have only minor new features and focus more on polish. We will see…

That is a bug this one especially hates.
Right in the middle of a combo the game decides it’s time to disequip everything and box.
Happens on servers, happens on single player.
Sorry it is happening to you.
This one thought it was a PStato exclusive issue.

At least we aren’t having the weapons knocked out of our inventory anymore and replaced with bags listed as unarmed right and unarmed left.

The rest, especially the inventory issue… It’s very annoying. But not exactly new. The inventory bug has come and gone and come back ever since they modified the sorting system earlier this year. This one has personally expert significantly more on Siptah than on Exiled Lands, altho this one has no idea why that would be

1 Like

It is nice really, from a development stand point it is a very curious case that has much to teach to the future developers, but I think the problem is that those who are developers today did not learned from the other developers of the past that solved these issues.

Unreal Engine, be it 4,5 and probably the 6 will also be the same, is good at one thing natively, and one thing only: Graphical Enhancement and Systems that deal with it.

It is amazing to make things in Unreal Engine, for me for example, because it is really good in everything I am not good at: Art, Animation, Animation Blueprint Control, and Integration of your art assets with code through C or C logically mirroring blueprints.

That is it. That is all Unreal Engine does for you. The networking native to Unreal Engine is terrible. The database support is basically the same we have in 1980s from DBase and Dataflex. The AI is probably worse than AIML from the 70s.

What this have to do with your problem ? Conan Exiles uses native Unreal Engine systems to do all that which Unreal Engine is good doing, and all that Unreal Engine is bad doing. It has very little “in house developed systems” which fundamentally work using the Unreal Engine native systems.

For a single NPC in a game like World of Warcraft, and old game that uses AI systems developed in the 90s and 2000s, if we were to compare the AI trees, one could say each NPC in World of Warcraft, which is like less than half those in Guild Wars, is like 10 times those used in Conan Exiles.

Not only that, but what Unreal Engine calls “blackboards” has much less data to work with.

While Unreal Engine is capable of using sensory data (meaning you can use the render system to actually render triggers like sound, smell or visual cues simulated to feed the attention system in characters to simulate their detection) Conan Exiles does not make correct use those systems, because it is not coded to create them. While the system is capable of using them natively from Unreal Engine, they are not used.

For that reason, the fewer Trees have the possible actions the NPC can perform, but the NPC dont have enough information to correctly choose which one, so it basically is coded to “try this”, “try that”, “try that other” and if nothing suits the “few data points” they have, they “wait”.

That is why an archer for example stumbling on a rock will keep trying to distance itself from the target, and if that specfic target never gets to them, they will take all the attacks they are targeted from other sources before changing their “idea of tactic” to get a weapon. And good luck with that by the way. Because the system is so nice that it detects the enemity by weapon drawn, but do not select the weapon drawn by the type of enemity, which makes your thrall “punch an armored sword swinging enemy” even if it has a weapon.

Of course, someone will ask “well, how can you know that if you cant know the source code of the game”.

Anyone can know the source code of anything that is in their computer. Specially someone who actually work on development and has the tools to do so. Plus, a lot on the modding kit only works because it has the code of the game, otherwise mods would not be able to know what classes or methods to call if they needed to call game systems.

But I do know that is also not that easy to change, because to change what fundamental parts of the game already exist, you need to change the fundamental parts of the game that use those, and the ones which uses these which uses those. So if you want to change how a player deals with the Thralls of another clan or another player not in their clan, you need to go back up until you find the changes needed on the fundamental code for the class of EVERY CHARACTER, and changes there might require changes on how EVERY NCP CHARACTER class work, and that might require changes on how thralls work.

It is not easy to make those changes, unless you create another actor from scratch and use the characters on the game as puppets that do what they are told. But even that wont solve the problem of interaction, UI, controls, and triggers, because those need to be in the character, and need to be passed to the controller to work.

And still, you will need to change how the environment gives information to your thralls. Like for example teach them that an obstacle to them is an obstacle to enemies, and use the oh so nice Unreal Engine math for rendering to also read the environment. Create a spline from the line trace for a wall and that NPC position, and then it can use that information to know how to entrap enemies.

Then you get the environment to teach them about other allies, which weapon they use, and where they are, so they do not fight like each of them is fighting everyone else, and they maybe they start to funnel enemies from one to the other, like basic NPCs in World of Warcraft crappy dungeons.

But it is very easy to get work done and just tweak the parts that do not work. So the devs did not made a “garbage work”, it is just not that easy to build up work that was done before, with tech from before, mindset from before, and keep it on par to things that are made today with resources of today. It is easy to get a game made today and trash a game from 2019, even if updated, there are things you cant really update without making another game, the thing people talking about Ark do not understand.

There was never “Ark upgraded to Unreal Engine 5”, the Ark made on Unreal Engine 5 is another game made on the image of Ark that was made in Unreal Engine 4. The garbage the people saying this argue is like arguing the “New Bettle” is an “Old Bettle” upgraded to the Golf Chassis, which is a stupid thing.

1 Like

the server is reset every couple of days, the files had been validated and at the very most i had all 5 people in my server on at one time, however more commonly i have maybe 3 on at a time and there is no change to the boss behavior.

ya i posted the reason behind the bug in another post today, for whatever reason being in a clan is the cause.

No i do not have dark desires mod on my server

i appreciate the update on what they said i admit i don’t tend to follow news updates i just read patch notes here and there

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.