Jump to content

mr.devolver

Members
  • Posts

    2,040
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by mr.devolver

  1. Aren't there any fellow bonobos willing to help with that problem?
  2. I re-enabled them for my own testing purposes too. The code is actually still there in entityclasses.xml, it's just not enabled by default - it's commented out. So you either have to uncomment the code to enable it, or if you want to avoid changing the original code, you can re-enable it by adding the code through a new mod which is the way I prefer.
  3. Could it be this one? JaxTeller718_IncreasedWildernessZombiesX5 - 5 timess Wilderness Zombie Spawns.
  4. Thank you guys, so I guess it won't be that easy for me to change the distribution. I thought I could just use one set tag to change the whole group. I guess that's not a good idea, because the numbers I was trying are giving me either too few of other NPCs or too many NPCs in general, but still doesn't seem to lower the amount of whisperers lol. I was trying to increase the amount of other NPC types in the world and lower whisperers to make it more balanced, but the more combinations I'm trying the crazier results I get lol
  5. Well, I can't figure out if it's just in my scenario, I have a long list of mods that may or may not interfere with this. I certainly do hope the other mods don't interfere, but who knows? I wouldn't really want the base mod to get messed up just because the distribution of NPCs is bad for me when it's clear to me that it could be due to some mods that I have installed. That's why I was trying to adjust it on my end and I would like to know how to set the prob numbers properly. I don't really get those numbers, could you explain it to me, please? ?
  6. Xyth, so far the only NPCs I can see in my world right now are whisperers. Not that I wouldn't want them to spawn, but it feels like somehow all the other types stopped spawning with whisperers installed. How can I increase the probabilities of spawning the other NPCs to balance it out a little bit? I had no luck trying to mass change it through entitygroups.xml, I also tried it through spawning.xml by setting how many should spawn from each group, but so far I can't see any difference. I'm not even sure what am I doing anymore.
  7. Lol, yeah this is exactly the same thing I wanted to ask too, because this mod seems to be anything but straightforward lol.
  8. Xyth, any chance we will get faction quests by default? I could give you some ideas if you felt like making some quests.
  9. Nice. How much longer to release? I guess the fact it's already in testing phase means it will be released soon?
  10. Be glad this is not Minecraft with its dark underground caves. When I introduced Minecraft to my nieces when they were little, we went to explore the cave. I forgot the torch and I told them: It's ok, you don't have to be scared, I will go first, just follow me and cover me from behind... And so we headed out into the darkness and I couldn't see anything. Very soon, I could hear skeletons, zombies, all kinds of threats you could think of in Minecraft, but it was too dark to see anything, so I just kept going wondering where will it lead us and my nieces kept following me just like I asked them. Everything was ok until the moment when I realized my character is suddenly slowly losing health as something was killing me. I thought for myself: It must be one of those damn skeletons! I stopped walking for a while and tried to take a look around to see if I could find him in the dark. Nope, I couldn't find him and yet I still kept losing health. Then I heard one of my nieces screaming: Zombie! The other niece was yelling: Kill that zombie, quickly! But it was too late for me as I died. What followed only escalated my confusion as my nieces started shouting happily: Yay, we finally killed that zombie! Still confused, I had a little chat with my nieces and I asked them what they saw, so that I could get a better idea what actually happened... Turns out my niece did what I asked her to do, she covered me from behind and so I ended up with my back covered with arrows when she thought I was a zombie... Needless to say, there was no actual skeleton or zombie around, just the three of us...
  11. I haven't used the faction books yet. I wanted to figure out some sort of quests that would make these faction modifications feel more natural, but I can barely adjust some basic stuff made by others, I'm not able to create real mods of my own.
  12. There seems to be an issue - whisperer met raider (both were NPC versions), they stared at each other like if they wanted to kill each other, but it took them quite some time of staring at each other to realize they wanted to shoot each other lol
  13. So, I finally tested it just now (including new whisperers). Quick question: Are they supposed to attack me on sight? ? This is kinda confusing you know, because as soon as I spawned, I was approached by one of them and it looks like they can be interacted with, however when I press E on them, nothing shows up and they just attack me on sight.
  14. Someone in sturdy samurai armor could also appear outside the fantasy pack. Who knows what kind of stuff were people doing / hiding in their closet before apocalypse? Regardless of its look, it's still a proper armor and as such, it should provide much better protection than usual "DIY" armor. If it works against stabbing and slashing, it should work against bites too, right?
  15. I didn't even test NPCMechs yet because I didn't know it was a separate new mod to download lol but now I installed it and I'm gonna test it properly this time, but not only that, your information here kinda made me rethink the strategy of my little mod which changes some settings, I didn't know that you're actually removing some duplicates here and there, so now that you told us, I guess I should be more careful about what I'm playing with and what am I trying to change and where. So I updated my mod based on this information, because I wanted to re-enable tracking of NPCs and wandering traders on the map and I figured I could implant those commented out lines into each of the sections where they should be to work the way I wish, but I wasn't sure where would be the best place to put those lines to not write too much of code, but I ended up crafting couple of appends for that purpose in the end, hopefully the syntax as well as places where I'm trying to put those lines are ok. Could you please review them? This is also the first time I'm using append, so hopefully it's ok. <!-- Show interactable NPCs and wandering traders on the map --> <!-- Wandering traders --> <append xpath="/entity_classes/entity_class[contains(@name, 'TraderTemplate')]"> <property name="MapIcon" value="ui_game_symbol_enemy_dot" /> <property name="CompassIcon" value="ui_game_symbol_enemy_dot" /> <property name="CompassUpIcon" value="ui_game_symbol_enemy_dot_up" /> <property name="CompassDownIcon" value="ui_game_symbol_enemy_dot_down" /> <property name="TrackerIcon" value="ui_game_symbol_run"/> </append> <!-- Humans: Melee --> <append xpath="/entity_classes/entity_class[@name='NPCHumanMeleeTemplate']"> <property name="MapIcon" value="ui_game_symbol_enemy_dot" /> <property name="CompassIcon" value="ui_game_symbol_enemy_dot" /> <property name="CompassUpIcon" value="ui_game_symbol_enemy_dot_up" /> <property name="CompassDownIcon" value="ui_game_symbol_enemy_dot_down" /> <property name="TrackerIcon" value="ui_game_symbol_run"/> </append> <!-- Humans: Ranged --> <append xpath="/entity_classes/entity_class[@name='NPCHumanRangedTemplate']"> <property name="MapIcon" value="ui_game_symbol_enemy_dot" /> <property name="CompassIcon" value="ui_game_symbol_enemy_dot" /> <property name="CompassUpIcon" value="ui_game_symbol_enemy_dot_up" /> <property name="CompassDownIcon" value="ui_game_symbol_enemy_dot_down" /> <property name="TrackerIcon" value="ui_game_symbol_run"/> </append> <!-- Mechs: Melee --> <append xpath="/entity_classes/entity_class[@name='NPCMechMeleeTemplate']"> <property name="MapIcon" value="ui_game_symbol_enemy_dot" /> <property name="CompassIcon" value="ui_game_symbol_enemy_dot" /> <property name="CompassUpIcon" value="ui_game_symbol_enemy_dot_up" /> <property name="CompassDownIcon" value="ui_game_symbol_enemy_dot_down" /> <property name="TrackerIcon" value="ui_game_symbol_run"/> </append>
  16. Hey Redarmy45, I know I am not Xyth (although I wish I had his modding knowledge, because I have tons of cool ideas for mods ?), but I can actually give you the answers from my own experience and here is why: 1) I spent several last hours playing with the latest update WITHOUT realizing there is such thing as NPC Mechs mod, I usually grab all of the new versions of these mods when they come out and for some reason I didn't realize that this time this is a separate mod, so NPC Factions was actually the only extra mod that I downloaded and it worked as before, just without the extra NPC Mechs which come separately. I still have the original creature pack mechs installed and now that you mentioned this new NPC Mechs mod, I checked it out on Github and I found out that it does not come with any resource files, just config files, which means it will most likely rely on creature pack mechs mod just like in case of standard human NPCs. So my conclusion here is that if you don't want any mechs in your game, it's fine, but you should still download NPC Factions, as that is for NPCs in general. However, if you ever decide to play with mechs, you should either use creature pack mechs alone or together with NPC Mechs (but NPC Mechs can't be used alone as they need creature pack mechs to pull resource files from). 2) Usually all the changes done to NPCs take effect immediately and next time you load your last save you should be able to see these changes.
  17. Well, what I was trying to find out is if your faction mod is / should be compatible with zombies added by various mods, so hopefully it is granted the other mods don't mess with zombie templates as you say? Well, honestly I don't know what exactly those other mods do in order to provide those extra zombies, unfortunately my current knowledge does not allow me to analyse those mods to such extent, so I guess I will just have to try and see if everything runs fine or not... As for my little mod, I kept it in prefix number 2, but I moved it a bit lower in the load order by renaming the mod to some more user friendly name instead of a stupid long abbreviation that even I couldn't always recall what does it actually mean lol
  18. Cool. I see this will require us to thoroughly test this to see where this goes in terms of real gameplay. ? By the way, I have two technical questions. 1. I see you're changing the behavior of zombies in factions mod. Will this include any extra zombies added to the game (not necessarily through creature zombie pack), such as uma zombies, Snufkin's zombies and other zombie additions from various different authors? 2. I have my own little mod that changes some values of Core, NPCs and humans from creature pack, so that I don't have to change these settings every time I download new versions of these mods. For convenience I placed it in prefix number 2 so that it's always on the tail of the mods it changes. However after installing Factions add-on which also has prefix 2, my mod is no longer the last one as Factions took its place there. Should I move my mod on the tail again for better compatibility, or it's fine as it is?
  19. Thanks for fixing the casting error, I had issues with that earlier. About the mechs. So... we already know they have lightsabers. Do you also plan to give them lightshovels for digging? It would be cool if the player was able to obtain lightsaber or lightshovel from them as a quest reward, as a part of getting on their good side. ?
  20. I knew "So NPCs dig. Cool" was a joke, I was just playing along. Perhaps that was a bad idea lol
  21. Hey SphereII, I think I ran into the first in-game issue after updating to this latest version of Core. Suddenly zombies started ignoring me, I could walk around them and they didn't attack me. I checked the console and got a red sea full of this error: InvalidCastException: Specified cast is not valid. Here's the log. Then I closed the game, so anything related to this error should be at the end of the log. EDIT: If the above wasn't enough, here's what I experienced a bit later, I couldn't really describe it so I simply recorded it for you... https://i.imgur.com/QjLT0gK.mp4
  22. Thanks, Sphereii helped me in his thread, I know you don't like when NPCs get blamed for Core issues... So I didn't really want to ask for help here, I just thought I should warn anyone who might want to update that there is this issue. Oh, now you make it sound like this is an intentional feature, but at first you were surprised that NPCs dig lol. Well, I'm pretty sure that no one would mind if they were able to dig, but they should have a reason for that in the first place, they shouldn't do this due to some kind of bug, so it might be a good idea to check out what's causing this behavior and see what can be done about it in terms of fixing it so that they would only do it when it's appropriate. ?
  23. Thanks, this worked. I basically removed the mod manually again and redownloaded it and the dlls were already gone and this time the build worked with no errors.
  24. Redarmy45, have you tried the latest 0-SphereIICore version that came out like 3 hours ago? Does it work for you? Because I just downloaded it and it fails to compile and build.
  25. Hi Sphereii, today when I tried to launch the game, I got some error related to the Core mod, both in Mod Launcher and the game itself where it told me that mod could not be loaded or something like that, I closed the game and checked the log of Mod Launcher, and it informed that some dll file in the core mod is corrupted. I removed the whole directory of that mod and downloaded it again. That did not help and I received another error in the log of Mod Launcher - error CS0016, telling me that "Could not write to output file Harmony-0-SphereIICore.dll' and "The process cannot access the file because it is being used by another process", obviously this is not true, as there was no other program running that would be trying to access this file at the same moment Mod Launcher was trying to access it, I even restarted Windows to make sure that no other program would interfere and tried again, but I got the same result. Please help, thank you!
×
×
  • Create New...