Jump to content

Rasikko

Members
  • Posts

    1368
  • Joined

  • Last visited

Nexus Mods Profile

About Rasikko

Profile Fields

  • Country
    Finland

Rasikko's Achievements

Mentor

Mentor (12/14)

0

Reputation

  1. My json file, which is just for testing: { "string" : { "charactername" : "test", } }My question: How do I change "string" to something else? I'm trying to read(parse) this file with C# but because it matches the data type of the same name, I can't create a C# property for it and thus can't read the file. I can add more members, but I can't add additional objects for the JSON file and it appears that nested objects is not allowed outside of the one created from the plugin. I'm using SetStringValue if that helps. EDIT: Was just a syntax issue and need to use SetPathXXValue to write to the proper objects and its members and also the syntax for nested objects is ".objName1.objName2"(the first dot is for the root). If you don't do that and instead try it with SetStringValue, the plugin will create an object and name it string.
  2. Oh? There's a note about that on the OnStoryIncreaseSkill which was put there long long time ago. https://www.creationkit.com/index.php?title=OnStoryIncreaseSkill_-_Quest
  3. Looks like your quest isn't being started. You need to call Start() on your quest instead and make the start-up stage be 10.
  4. Echoing the above. There's hardly any tutorials for projects that use other programming languages along side papyrus. Basically you need to study/learn AS and probably Flash.
  5. The script needs to call Stop() and the quest cannot have "run once" checked. Alittle heads up about this event: It only cares about first skill increase. Subsequent skill increases don't cause the event to fire consecutively. In other words, if you gain 3 skill increases at once the event fires only once.
  6. Getting straight to the point: Whatever handles the 'cookies' system of the server is broken, therefore: You cannot log in. You cannot create a new account. Before 1 and 2 became impossible, you had to fight with the server to make edits because it couldn't properly check your login session.I don't know who to contact anymore about this. The last time it got raided by bots I had to go all the way to ESO support. The CK wiki never truly had a contact support feature. So anyway this hopefully sheds some light on those who're wondering why you had to negotiate with the Universe to use the wiki for edits or even login. At this moment, the CK wiki is effectively in read only mode.
  7. It doesn't but those which are, such as followers and scripts with race conditions are easily handled. SKSE plugins are dead in the water until they are recompiled in VB2019 and whatever else needs to be changed within them.
  8. I think you didn't read what I wrote to your thread at r/skyrimmods, but I haven't gone back there yet. As I said before(adding some more info) You can try to use GetItemCount to search the container for the weapon, store it to variable and call DropObject on it. Next is searching for it again using FindAllReferencesOfTypeFromRef, with the player as ArCenter and the reference to find being the weapon. THEN call SetItemHeathPercent. Not tested but it's what I would try and yes it's clunky. Reason why it doesn't work for items in containers is because items in containers are only the base forms, not the references.
  9. But how does it look in game is the real question. The CK is not very nice with displaying custom hairstyles and other things.
  10. How bad is the damage? Here's some facts: The vast majority of regular mods from SE is compatible with SE:AE. Architectural changes were not made in the same scope as LE -> SE. Some are broken due to texture changes brought on by AE. Follower mods are busted for some weird reason. Body replacers, outfit studio, etc, these still work, you know, the cosmetic stuff that you may care about the most. Mods that require SKSE specific papyrus functions are fine thanks to the new SKSE update. SkyUI is not broken. Mods which require SKSE plugins, which contain .dll files are broken until these mods are recompiled in VB2019. Recompilation is not as easy as it sounds. That last one is particularly bad for those whose mod setups are composed of primarily SKSE plugin mods. Many of these plugins have authors that have long moved on, or are around but don't want fiddle around with updating because the process is a pain in the ass. The update effectively killed my mod setup and I pretty much playing Skyrim barebones now.
  11. Bull. Hardly. Mods are what's kept Morrowind around longer than most people have been alive on this forum. Same goes for Oblivion. Skyrim is no different.
  12. Nope. The 1.5.x Skyrim is gone forever from Steam. You'd have to use the downgrade mod.
  13. If this is all you want to do, then you could probably check for the currently equipped weapon, store that to a variable and then have RemoveItem remove that weapon. It will remove the equipped weapon, especially if that weapon is the only instance on the player. (if there's 2, I'd say it's a 50/50 chance it'll remove the unequipped one).
  14. It's because you don't have SKSE installed properly. In other words, the game can't find the files(.pex files).
×
×
  • Create New...