![]() |
Game Problems - Printable Version +- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum) +-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html) +--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html) +---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html) +---- Thread: Game Problems (/thread-19466.html) |
RE: Game Problems - The chaser - 12-09-2012 It's possibly because you've put an Idle animation. The idle animation makes the monster stay quiet, so remove it. Just put: void Clown1(string &in asParent, string &in asChild, int alState) { SetEntityActive("Clooni1_1", true); AddEnemyPatrolNode("Clooni1_1", "PathNodeArea_1", 0, ""); AddEnemyPatrolNode("Clooni1_1", "PathNodeArea_2", 0, ""); AddEnemyPatrolNode("Clooni1_1", "PathNodeArea_3", 0, ""); AddEnemyPatrolNode("Clooni1_1", "PathNodeArea_4", 0, ""); AddEnemyPatrolNode("Clooni1_1", "PathNodeArea_5", 0, ""); } RE: Game Problems - Fishnugget - 12-09-2012 He stand still behind the door and does nothing RE: Game Problems - FlawlessHappiness - 12-09-2012 So, does he have an attack animation? RE: Game Problems - Fishnugget - 12-09-2012 Yes, I test it. He have a attack animation when he attacks the player The Clown stand behind the door but i can see his arm trough the door RE: Game Problems - The chaser - 12-09-2012 Really weird... wait a sec, do you have a map_cache? If so, delete it. RE: Game Problems - FlawlessHappiness - 12-09-2012 Sorry... I don't know what could be wrong then.. RE: Game Problems - Fishnugget - 12-09-2012 Whats a map_cache? RE: Game Problems - FlawlessHappiness - 12-09-2012 It's a file that is generated. Like some kind of autosave. Bugs happen if you have it. "cache" is an extension. Ex. if your map is called "Tivoli" then it's: "Tivoli.cache" (i think) So if you've got it, delete it. It might be in your virtualstore, (if you have windows). You can find it by going to Users/[USERNAME]/AppData/Local/VirtualStore/Program Files (x86)/Amnesia - the Dark Descent/redist/custom_stories/[STORY NAME]/maps RE: Game Problems - Fishnugget - 12-09-2012 nope, i dont have any caches RE: Game Problems - The chaser - 12-09-2012 (12-09-2012, 03:17 PM)beecake Wrote: It's a file that is generated. Like some kind of autosave.It isn't that, is: Amnesia-The Dark Descent/redist/custom_stories/yourcustomstory/maps/ |