Jump to content

Recommended Posts

Posted

I'm interested in writing some AAF-oriented mods in the near-ish future, but I'm struggling to find clear guidelines on how to actually do that; how to call scenes, require tags like Oral or Aggressive or whatever, pick specific or non-specific actors, so on.

 

So, mod authors, what resources did you use to learn how to make the mods we know and love now?

  • 1 month later...
Posted

I'm just attaching this script:

AAF:AAF_API AAF_API

    AAF_API = Game.GetFormFromFile(0x00000F99, "AAF.esm") as AAF:AAF_API
 
    Actor[] actors = new Actor[2]
    actors[0] = game.GetPlayer()
    actors[1] = akSpeaker
 
    AAF:AAF_API:SceneSettings settings = AAF_API.GetSceneSettings()
    settings.duration = 30
    settings.preventFurniture = true
    settings.usePackages = True
    settings.position = "Kissing"
    settings.includeTags = None
    settings.excludeTags = "Aggressive"
    settings.meta = "Consensual"
 
    AAF_API.StartScene(actors, settings)

Settings. are optional.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...