shazor Posted April 5, 2016 Posted April 5, 2016 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?
skyrimfet Posted April 5, 2016 Posted April 5, 2016 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
shazor Posted April 5, 2016 Author Posted April 5, 2016 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
skyrimfet Posted April 5, 2016 Posted April 5, 2016 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)
Recommended Posts
Archived
This topic is now archived and is closed to further replies.