-
Posts
96 -
Joined
-
Last visited
Everything posted by jaxonz
-
A quick mod request. Would be great to be able to build things like the nuclear reactor, vehicle mod station, or alien containment inside the cyclops sub and to be able to place found objects like the car, baseball caps, etc. Basically allow anything you can put in a base also be placed in the sub if there is room. This would allow full use of cyclops as a mobile base. Doing the reactor might be problematic in adding power to cyclops. A potential workaround might be to allow nuclear fuel rods in place of power cells as cyclops fuel.
-
This was kind of a fun day to release it. :-)
-
Yep, timing is everything. Happily, it is really easy to strip out all those dependencies.
-
OK, this isn't actually a mod request. I just thought you might want to know about a tool we just released that lets you easily make your own mods. GameToMod We're eager to see what you can do with it.
-
We're having some interesting discussions with the release of a new utility that exports saved games to create new mods. I thought other mod authors might want to chime in. GameToMod
-
Hi CD, That's a good point. There is erroneous information about mod event registration not persisting... frankly given the conflicting information I chose not to take chances. The initial OnUpdate is also to avoid calling RegisterForModEvent in OnInit() which produced some bad results. Will try that locally and see how it behaves. (Eliminating the loop and instead calling OnUpdate just once.)
-
Hi there... I'm a huge fan of SkyUI and infinitely grateful for the ability to add MCM menus to our mods. I'm delighted to be able to contribute back to the community with a little library that makes coding MCM menus a little easier.
-
I just noticed this tonight: Skyrim PC Update Brings Welcome Mod Improvements Looks like the big thing is that mod updates will be handled via Steam instead of Skyrim launcher. I expect this will cause some confusion and potential corruption of some player environments (if users are subscribed to mods via Steam updates could occur even if one is using MO/NMM and SKSE to launch). Has anyone beta tested this yet? Instructions in the article on how to do so.
-
Hi Everyone, Thanks to a system crash I'm rebuilding my environment. This seemed like an opportune time to get cleaner separation of my mod source from Skyrim data. My setup is as follows: Skyrim, all DLC, and Creation Kit installed to C:\SteamLibrary\SteamApps\common\Skyrim\Mod Organizer set up in a separate directorySKSE, SkyUI, SkyUILib and other helper scripts installed as mods under MOMy own source in it's own directoryA "mod" under MO for my source with a symbolic link back to my source directory (I really didn't want my own stuff under MO's file structure)An MO profile for mod authoring with SKSE, SkyUI, etc., and my source selectedCreation Kit defined as an executable under MOI've followed some guidelines for running Creation Kit under Mod Organizer. I can launch CK just fine and all of my content appears virtually in Skyrim's directory, thanks to MOs directory hook magic, but am still having some challenges: I'm able to edit script source files (using SublimeText 3 with Sublime Papyrus) but am unable to save them. The directory magic that MO performs won't let me make changes to my scripts. I see the error "unable to save... unable to create file... file exists" with no option to overwrite.I'm unable to launch some tools, such as my favorite script editor, PapyrusEd (just launches and dies without any error message or log. I'm using the CorFlags utility to ensure it launches in 32bit mode.).I can compile existing scripts and they go to the MO Overwrite directory only if I add the directories for SKSE, SkyUI, etc. scripts as Includes in the SublimePapyrus.INI file. It seems that should not be necessary if MO is making them appear virtually in the Skyrim directories.Seems that the process of folding overwrite's back into my source is going to be quite a hassle. This will especially be true when I create a new script that did not before exist in my source directory as the "sync" option won't recognize it and will likely force me to manually copy the files back to source or "create a new mod".If you have worked past these issues, please share how you did it. Otherwise, if you feel you have a good build environment, I'd love to know how you have things set up.
-
The native Windows remote desktop would work pretty well between those 2 Win 7 systems, especially if they are both on the same home network. The 2 topics that should come up if you tap the Windows key and type Remote are: Remote Desktop ConnectionAllow Remote access to your computerHope that helps you get started... and real sorry to learn about your accident. Get well soon!
-
Scripts can create new object instances (ObjectReferences) but it needs to be based on a form defined by CK. There may be ways to have object properties drive behavior, provided you have a script attached to the base form or dynamically to an objectinstance. Perhaps it would be easier to offer advice if you could explain your intent.
-
Still need to work up hemispherical and cone shapes. My plan is to use the other shapes respectively for hemispherical and spot type lights.
-
I was able to get largely what I wanted for the sphere by editing the chaurus egg in NifScope, changing a few properties, and altering the texture maps to brightyellow.dds
-
OK, a couple of observations: Without textures, there is no change when I apply my shader to show selection. This may be more of an effect that the NIF itself carries its own effect shader.There seems to be no collision layer, so the object is only selectable via command console. I really appreciate the help on this.
-
Thanks so much, Smashly. I do indeed hope to apply a shader, indicating the objects have been selected. Will give it a try and let you know how it works out.
-
Hi there, After playing around for a few hours with Blender and NifScope, I have convinced myself that I'm a scripter who has no business trying to build meshes and textures. I'm wondering if someone who knows what they are doing could take a few minutes and generate 3 simple NIFs that I will use for Positioner: A sphere, 1 unit in diameter (I can scale with NifScope as needed), origin at centerpoint, yellow-white (#ffff99) solid texture, no emittance, solid collision layer, no mass, collision model None, motion system Fixed A hemisphere, same attributes as above A cone, same attributes as above, 1 unit diameter, 1 unit height Thanks so much for your help!
-
Hi there, After playing around for a few hours with Blender and NifScope, I have convinced myself that I'm a scripter who has no business trying to build meshes and textures. I'm wondering if someone who knows what they are doing could take a few minutes and generate 3 simple NIFs that I will use for Positioner: A sphere, 1 unit in diameter (I can scale with NifScope as needed), origin at centerpoint, yellow-white (#ffff99) solid texture, no emittance, solid collision layer, no mass, collision model None, motion system FixedA hemisphere, same attributes as aboveA cone, same attributes as above, 1 unit diameter, 1 unit heightThanks so much for your help!
-
Natively? newstring = oldstringprefix + iValue + oldstringsuffix I ended up writing a string substitution script that would do the trick. That way you could just do: Notification(StringSubst("You have # arrows left", "#", iNumArrows) Would be great if we had a C version of this in StringUtil. It would be a simple passthrough to the native function and much faster. Hope that helps.
-
[LE] Read any values from private INI file
jaxonz replied to jaxonz's topic in Skyrim's Creation Kit and Modders
I did not enable writing as it might provide a vector for abusive behavior (such as writing a command string to win.ini). I suppose I could hard code some directory limitations or only allow writing to a single filename as protection from this. Since I didn't need write capabilities for my needs, I simply didn't implement that. The current implementation uses an 8k buffer, so you can read in strings that are 4000+ characters. For a working example, I'm using this capability in my Jaxonz Real Names mod. http://www.nexusmods.com/skyrim/mods/61430 -
Just in case it is of use to others, I just updated Jaxonz Console Plugin, adding functions to read private values from any INI file. This functionality is distinct from SKSE Utility script INI functions, which can only read INI values defined by Bethesda and loaded by Skyrim. My function instead forwards to Windows GetPrivateProfileStringA. In effect, this will allow modders to create custom values in their own MyModName.INI file and have the bool/init/float/string values accessible to Papyrus.
-
Just posted... Jaxonz Real Names
-
LE Renaming: Creating an unique baseObject
jaxonz replied to portbash's topic in Skyrim's Creation Kit and Modders
My Renamer mod has good examples of how to use SetDisplayName to rename individual instances and SetName to rename base objects (all instances that don't otherwise have an instance-specific name). The source code is included in the .BSA -
I have something like this in the works... working now for guards but would be easy enough to extend to other anonymous types.
-
A graceful bow to IsharaMeradin. :-)