Jump to content

cpassuel

Members
  • Posts

    13
  • Joined

  • Last visited

Everything posted by cpassuel

  1. Hello, Depending on what kind of mod you're creating, you may use Lua instead of mwscript with mwse, you'll find lots of information here https://mwse.github.io/MWSE/guides/introduction/ and if you want some examples on how container / inventory works with, go check QuickLoot source code https://www.nexusmods.com/morrowind/mods/46283 or my mod https://www.nexusmods.com/morrowind/mods/52918
  2. After some research in MWSE, it seems related to mapcontroller object which is not documented https://mwse.github.io/MWSE/types/tes3worldController/?h=mapco#mapcontroller
  3. Hello, I'm looking for a way to retrieve the list of all the discovered locations (with a yellow square on the map) from the local and the global map with MWSE ? And also is there an event when the player discover a new location that is added to the map ? I looked on the MWSE documentation and on some mods but I cannot find anything. Thanks
  4. Thanks for your reply :smile: I have a save of v2.3 but there are lots of changes between v2.2 and v2.3 so I have lots of errors while loading my saves. BTW I didn't know it was possible to access hidden mods with direct links. I wish I had the direct link for v2.2 Yep I tried webarchive too :sad: I asked Remiro and he told me that it was obsolete then I ask if he could hidden it for few days, I'm waiting for his answer.
  5. Hello, I accidentally deleted the version v2.2 of Remiros' Tombs Expansion that I use with my Morrowind install so I cannot load my save files anymore, and I cannot retrieve it from Nexus as the mod is hidden. Does someone have it somewhere and can send it to me ? I will greatly appreciate. Thanks by advance PS: I know that Remiros' Tombs Expansion has bees superseded by OAAB - Tombs and Towers but I don't want to install a new version o f the mod, I just need the version I use so I don't have to screw up my save files or restart from scratch.
  6. At the Telvanni bride part of Zainab Nerevarine quest, Savile Imayn the slaver asks you to buy clothes to dress properly Falura Llervu. Savile Imayn suggests you to go see Elegnan the Clothier in Tel Mora for exquisite shirt, exquisite skirt and exquisite shoes, in fact you HAVE to buy from Elegnan ; any exquisite shirt, exquisite skirt or exquisite shoes from another trader WILL NOT WORK. I was stuck few hours on this part so this hint may help someone else.
  7. I use also Westly's Pluginless Head and Hair Replacer. There are some fixes for it, but I didn't tried them yet
  8. I use myself Better bodies with Facelift and Animation Compilation and I'm happy with it (I also use MET but I may switch to IT). There are probably better mods but I'm too lazy to try every body/face/hair mod.
  9. I've seen from MWSE Journal Search and Edit than you can hide or show some parts of the menu with visible property. There are lots of good informations/example in some mod but it's not always well documented. I should check on Discord. I'm thinking about creating a lua MCM mod example with most components and config file support as a skeleton for other mods
  10. Yep, I tried widthProportional but it doesn't seems to work. BTW I used a SideBarPage who splits the page in two so sliders and dropdown are not too wide.
  11. Thanks a lot, Is there way to limit the width of components (like dropdown, slider,...) in MCM ? I cannot find it. For people looking how to use dropdown, Here is an example from Let There Be Darkness. You can use numbers for option values if you wish. page:createDropdown{ label = "Cell lighting value overrides. The override values are read from overrides.lua, and can be different for each cell.", options = { { label = "NONE", value = nil}, { label = "True Lights and Darkness", value = "TLaD"}, { label = "di.Still.ed Lights", value = "DL"}, }, variable = mwse.mcm.createTableVariable{ id = "useOverrides", table = config }, defaultSetting = "TLaD", }
  12. Hello, I try to use dropdown components for MCM but I can't figure out which parameters to pass at creation. There are no informations about this component in the easymcm doc (is it depreciated ?). Any example code or doc is welcome. Thanks
×
×
  • Create New...