Jump to content

Applying MagicEffect on Orgasm?


Recommended Posts

I want to apply the magic effects of http://www.loverslab.com/topic/40905-scoclb-skyrim-cum-on-clothes-layered-bukkake-sexlab-edition-updated-04-mar-2016/page-1 when my char has an orgasm but im not very familiar with working with sexlab nor with papyrus soooooo what exactly have i to do?

 

 

you need to hook first sexlab orgasm (end or start) in for example onInit()

RegisterForModEvent("HookOrgasmEnd", "Orgasm")

and then you can add it in Orgasm event, with thread you can find actors etc.

Event Orgasm(int thread, bool hasPlayer)

...
actorRef.addSpell(...)
...
EndEvent
Link to comment

 

I want to apply the magic effects of http://www.loverslab.com/topic/40905-scoclb-skyrim-cum-on-clothes-layered-bukkake-sexlab-edition-updated-04-mar-2016/page-1 when my char has an orgasm but im not very familiar with working with sexlab nor with papyrus soooooo what exactly have i to do?

 

 

you need to hook first sexlab orgasm (end or start) in for example onInit()

RegisterForModEvent("HookOrgasmEnd", "Orgasm")

and then you can add it in Orgasm event, with thread you can find actors etc.

Event Orgasm(int thread, bool hasPlayer)

...
actorRef.addSpell(...)
...
EndEvent

Hmmm, i tried to build a script with that but im not even sure about the "approach". Should i make a quest with a script attached to it that runs on startup or how do add a magic effect after every orgasm? I already tried to compile a little bit of a script but of course it didnt work. Here is what i already got:

ScriptName Orgasm1 extends Quest

Spell property BukkakeSpell Auto

Event OnInit()
	RegisterForModEvent("HookOrgasmEnd", "Orgasm")
EndEvent

Event Orgasm(int thread, bool hasPlayer)


actorRef.addSpell(BukkakeSpell)

EndEvent 
Link to comment
actorRef.addSpell(BukkakeSpell)

actorRef is undefined (i wrote it as example), let's try:

Game.GetPlayer().addSpell(BukkakeSpell)

Game.GetPlayer() return your PC as Actor, this code it's not complete, becouse event happens always, no metter who have orgasm (another NPC)

Link to comment

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

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

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use