-
Posts
10 -
Joined
-
Last visited
Everything posted by TerraKitsune
-
Corrupt Saves - StrCount > 0xFFFF - CTD on load
TerraKitsune replied to bcsp's topic in Skyrim's Skyrim LE
@cdcooley Thanks for clarification. Didn't know the string values set to variables (even array elements) will go to the same table - that's good to know. I actually have over 300 esp/esm's worth of mods installed - with a bunch of merges bringing the actual count to 240, so the 'per mod' average sort of depends.. on the other hand a lot of the mods are very simple and scriptless. I tried starting a new game at my mod set, and by the time I was inside helgen keep, had the count at 43,000. At current point in playthrough I was somewhere around 46,000 so I don't think I need to worry too much. Really it seems I'm hitting on different performance issues much faster than string limit. I had to leave away 3DNPCs, not because of string count, but simply because it was causing massive stuttering issues when I'd been playing for a while. SL, PerMa, 3DNPCs, DynDOLOD, and the whole bunch of other mods were just too much together. Taking out 3DNPCs and dropping DynDOLOD to low settings was enough to make things playable. Block1 on MemoryLog dropped from about 750 to 600. String count at worst - with DynDOLOD 4.19 and 3DNPCs, was a bit past 50,000 - which is steep, but not really critical seeing as it's already over 100 hours into the game. -
Corrupt Saves - StrCount > 0xFFFF - CTD on load
TerraKitsune replied to bcsp's topic in Skyrim's Skyrim LE
I figured, thus the 'should take a look' :) And it can wait until it gets a bit further along - I figure if it's in that kind of early stage, anything can still change anyway. -
Corrupt Saves - StrCount > 0xFFFF - CTD on load
TerraKitsune replied to bcsp's topic in Skyrim's Skyrim LE
Hmm... is that really a problem? In regards to quality of code and such, normally you don't expose the attributes directly anyway, you create methods for other objects to use. So instead of having Script X: Property Form A Property Int B And then basically having stuff references if X.B == 3 then ... You'd rather make Script X: Property Form A Property Int B function get_a return self.A endFunction function get_b return self.b endFunction function set_a ( a ) self.a = a endFunction function set_b (b) self.b = b endFunction If the latter would still work, I think it's more like an improvement than limitation honestly. How would that work with CK though - I mean when you assign values for script properties directly from CK? I guess I should take a look. >.> -
Corrupt Saves - StrCount > 0xFFFF - CTD on load
TerraKitsune replied to bcsp's topic in Skyrim's Skyrim LE
What about arrays? If you have say.. String mystr = "Hello world!" String myweather = "It's raining again!" int i = 0 int j = 10 int s = 2 while (i < j) myPrint( mystr ) myPrint( myweather ) i = i + s endWhile and instead write it like (syntax may not be fully accurate but you get the point) String[ ] myStrings = new String[50] Int[ ] myInts = new Int[50] myStrings[1] = "Hello world!" myStrings[2] = "It's raining again!" myInts [1] = 0 myInts [2] = 10 myInts[3] = 2 while (myInts[1] < myInts[2]) myPrint( myStrings[1] ) myPrint( myStrings[2] ) myInts[1] = myInts[1] + myInts[3] endWhile How many strings would you get? Properties can be put into array as well, although that would make you go through extra mile on CK. Obviously readability would suffer, but there's ways around that. For scripts it should be even possible to make a precompiler that goes through the source and swaps standard variables into arrays - IF that helps with string count. And what about performance side - are arrays significantly slower than normal variables? -
Corrupt Saves - StrCount > 0xFFFF - CTD on load
TerraKitsune replied to bcsp's topic in Skyrim's Skyrim LE
Not million. Billion. 2^16-1 = 65535, 2^32-1 = 4,294,967,295 Skyrim would implode long before that from running out of memory. -
Only YOU Can Prevent Forest Fires.
TerraKitsune replied to missjennabee's topic in Skyrim's Skyrim LE
Intuitively perk overhaul (PerMa) would be gameplay, but technically (which is more important here) it does stuff that would be game structure change. But more importantly in PerMa's case there's instructions about load order that puts it there: check the sticky post about load order in http://www.nexusmods.com/skyrim/mods/59257/? . =========================================================== Sometimes mods are not easy to classify - or maybe not even possible because of belonging to multiple categories. Further, the load order will get scrambled when you start looking into mod-specific instructions on what to but before and after things. Ironically ETaC itself serves as an example. ETaC is obviously location changer which would put it at #5, however it specifically wants NPC changers before it (Anna NPC and 3DNPC), which would otherwise go to #7. I imagine that's because those two go into same category as follower mods that also change locations - and it happens that ETaC has compatible overrides for those location changes (it's how I understood it from ETaC documents). There's also the question about install order vs load order. (mod) Install order will determine the order of overwriting files, while (plugin) load order will determine the order of conflicting records in ESP/ESM files. Sometimes this is straightforward, but there's plenty of cases where it's not. An example would be a mod that includes a compatibility patch for another mod. The compatibility patch generally needs to be loaded after plugins from both the mod that included the patch, and the mod that it makes compatible. When the mods belong to different categories, it becomes a bit more complicated - and if you assume the compatibility patch needs files from the mod that provided it.. and needs those files to not become overwritten, it can bring up questions about where exactly you should place such a mod in the install order. In general I'd move the mod down in install order to the lowest point (highest priority) indicated by it's plugins, but depending on how mods overwrite eachother, it's not always the best option. Overall I'd say a large load order of 300+ mods would take days, if not weeks, to sort out. The more mods you add, it'll get exponentially more complex to sort them out. In worst case adding a single mod can move half a dozen other mods into different place, and the butterfly effect will more or less scramble your whole load order. And honestly, if you want to do real manual load order, LOOT isn't going to help you one bit. It'll only mess things up for you. I'm not saying it's a bad program - on the contrary it's extremely helpful and useful in doing what it does - which is to sort things into specific order. The issue is that if you want to really sort your mods manually, you'll have to understand the whole structure of them - and that requires you to categorize them. LOOT doesn't do that. It doesn't care if the mod is follower mod, texture mod, gameplay mod.. or whatever. It has it's own way of doing things (and it gets the job done), which puts things into order that doesn't in any way follow the guidelines you want to use yourself. And that means to maintain the kind of order you want to place things into, you'll have to move everything manually. I think we're still a couple decades away from that level of cognitive AI. When they arrive they'll probalby argue that they have better things to do than sorting out TES9 mod conflicts. More seriously, I don't argue that it can be a step forward, but it won't fully eliminate need for compatibility patches. Compatibility patches are often about how things look and act in the game, on issues that require some decision making and understanding on the intended results. Good example would be the Stryker patch between JK and ETaC where the issue is structures clipping on eachother, and the resolution requires removing, replacing and in some cases adding structures to make the mods work seamlessly. Another example would be a mod that wants to make NPCs to do specific things at particular times of day.. however that would put certain NPC(s) into location that isn't compatible with a quest some other mod introduces. Sometimes this isn't readily apparent. F.ex. I have this problem with live another life when used with.. maybe it was ETaC, or maybe some other town mod - where that stormcloak guy never reaches his sister to talk with her when arriving from helgen. There's plenty of issues you can't sort out automatically. -
My password is generated by password handler, so it's purely random with roughly 1e30 possible space. I'm not overly worried about someone cracking it from the hash. Well I /am/ a bit paranoid about privacy and data security, for a reason.. so of course I'm going to change it. =^.^= Actually scratch that, I joined after that date. Well I'll probably change it anyway. Heh. Stuff like this happens. It happens to smaller sites, and it happens to large companies. Of course it means security needs to be tightened, but it's not like it's the end of the world. Heck, it means nexus is popular enough for someone to go to the trouble of doing it in the first place. :P