Is Resman functionality available?
Baaleos
Member Posts: 14
I posted a question on the nwnx ee issues page few months back and they said that nwnx resman was not planned for nwn ee - because the resman functionality was going to be built in.
Was wondering if anyone can confirm if it is available or planned in the imminent future?
Eg: Ability to drop scripts / resources into a directory and have them resolved by the game server at runtime.
Was wondering if anyone can confirm if it is available or planned in the imminent future?
Eg: Ability to drop scripts / resources into a directory and have them resolved by the game server at runtime.
0
Comments
Also, the game will support almost-but-not-quite what you say there. You can drop/update resources in a directory and the next time the game tries to load them, it will take the new ones. The "next time" might not always be deterministic, if the game is caching the data somewhere other than the builtin resman cache. This is a lot more noticeable on the client, where updating a texture will not immediately show it, and will require the model to get out of view and back in.
2DAs are also a notable example of cached resources, which won't be updated without a change on the NWNX end.
For other serverside resources, such as scripts, this should mostly work exactly as you'd expect. There's a few edge cases, like if you have a script with:
and you replace the script while the delay is active.. well, bad things will happen. Most likely a crash. Possibly worse.