Jump to content

DOWNLOAD MODS

Are you looking for something shiny for your load order? We have many exclusive mods and resources you won't find anywhere else. Start your search now...

LEARN MODDING

Ready to try your hand at making your own mod creations? Visit the Enclave, the original ES/FO modding school, and learn the tricks of the trade from veteran modders...

JOIN THE ALLIANCE

Membership is free and registering unlocks image galleries, project hosting, live chat, unlimited downloads, & more...

Vain

Allies
  • Posts

    157
  • Joined

  • Last visited

  • Days Won

    4

Vain last won the day on May 3 2023

Vain had the most liked content!

2 Followers

Profile Information

  • Gender
    Female

Contact Methods

  • Steam
    https://steamcommunity.co
  • XBox Live ID
    Vain 3805

Recent Profile Visitors

4,711 profile views

Vain's Achievements

Disciple

Disciple (5/11)

14

Reputation

  1. If you can see my content, I can't see my content.  The website hates me and I can't even get any of my content to load to edit/update/peruse.

    1. HeyYou

      HeyYou

      What content are you looking for?

       

      Yeah, the site has some issues, DR is workin' on it.

    2. PunkN

      PunkN

      Apologies if the screenshot is overstepping but, just minutes ago I posted that I'm searching for a wizard... I mean script-savvy modder. I noticed this post in the activity [widget] right after submitting my "topic" and grabbing the screenshot below. I wasn't entirely sure (however) if I'm experiencing the similar problems as you are. 

      PS - hope you've been well :yes:

      Screenshot (1104).png

    3. HeyYou

      HeyYou

      DR seems to be a rather infrequent visitor here.... hasn't been around for a month. I had thought he had these issues dealt with...... Unfortunately, I have neither the knowledge, nor the access to do anything about it.

  2. cell object window with the cell active in the render window should show you the blood objects and you can remove them from there. You may also have to go and delete them in xEdit once you finish working with the Creation Kit as it doesn't always delete things properly.
  3. Even further testing... I BELIEVE I SHALL CHANGE ALL THE TREES TO FLOWERS Scriptname Vain01AddtoForm extends ObjectReference Import Game FormList Property flPlanterPlantedFlora Auto Flora Property BirdsNest Auto ;Rock Warbler FormList Property flPlanterPlantableItem Auto Ingredient Property BirdEgg01 Auto ;Rock Warbler Message Property Vain01FormListUpdated Auto Int RunOnce = 0 Event OnInit() If RunOnce == 0 flPlanterPlantedFlora.AddForm(BirdsNest) flPlanterPlantableItem.AddForm(BirdEgg01) Vain01FormListUpdated.Show() RunOnce = 1 EndIf EndEvent Here's the basic layout of the script now and I do believe it's going to work! If not, I'll change the ObjectReference to Form and see if that helps. The message part of the script always works so the script isn't totally garbage.
  4. Okay... further testing shows that tree objects can also not be added to Leveled Lists. There's a BYOHHouseIngredient<x> and there's a BYOHHouseIngrd<x>... and the Ingrd's are trees and the Ingredients are... those loose ingredients you find lying around in the houses. A few of the items are Flora objects though. Soul husks, Chaurus, Hawk, Pine Thrush, and Rock Warbler nests are Flora objects... so I should be able to test a working script with them.
  5. You helped plenty. I tested the variations you mentioned already
  6. It might help... the end goal is to create something like the add to leveled list script. Make it possible for mods that add plantables to work in concert as each uses a script to add their plants instead of each modifying and overwriting the form list manually.
  7. If it was the TreeObject one, it doesn't
  8. I didn't even know there was a list that can be user modified easily. I thought SKSE modified the Skyrim executable As I said, I'll have to Google
  9. Yeah, that specifically is an SKSE addition. Without SKSE you can't use TreeObject as a property. I will continue to work on this and let you know what results I get.
  10. I shall inquire of Google but this I do not know
  11. I hope adding the formlist with the objects works because I can't seem to add the objects directly without SKSE (arrays are the same issue) as scripts can't natively contain any TreeObject properties. Skyrim just doesn't have TreeObject defined. Very sad.
  12. Yeah, I've been looking at that one.
  13. Scriptname AddtoForm extends FormList formlist property FormListOne auto formlist property FormListTwo auto formlist property FormListThree auto formlist property FormListFour auto Message Property FormListUpdated Auto Int RunOnce = 0 Event OnInit() If RunOnce == 0 AddformToFormlist FormListThree FormListOne FormListUpdated.Show() RunOnce = 1 EndIf EndEvent Starting 1 compile threads for 1 files... Compiling "AddtoForm"... AddtoForm.psc(13,34): required (...)+ loop did not match anything at input 'FormListOne' No output generated for AddtoForm, compilation failed. Batch compile of 1 files finished. 0 succeeded, 1 failed. Failed on AddtoForm Headdesk, I can't think anymore. I've tried rephrasing it in dozens of different ways with parentheses, periods, commas, you name it. I'm going to sleep on it again... I lied. This compiled Scriptname Vain01AddtoForm extends Form Import Game FormList Property FormListThree Auto Message Property FormListUpdated Auto FormList Property FormListOne Auto FormList Property FormListTwo Auto Int RunOnce = 0 Event OnInit() If RunOnce == 0 FormListOne.AddForm(FormListThree) FormListUpdated.Show() RunOnce = 1 EndIf EndEvent In-game test shows the message is displaying at least...
  14. Oh I am so dense.... addFORMtoformlist... I MAKE A FORM 'CAUSE I'M A DUMMY
  15. Still jammed... Maybe if I set a custom keyword for the added trees so I can call use a keyword property instead of the tree property which cannot be called without SKSE
×
×
  • Create New...