Xiderpunk Posted May 12, 2018 Posted May 12, 2018 Hi welcome back @CEO, I highly recommend VR.. it's just jaw dropping good. And yes for sure OSex would be outrageously good in VR. The problem in VR is the player literally does not have a body of any kind, so third person doesn't really exist as such. Therefore what I did was place a clone at the players exact position then use the clone as the player for the scene. The camera is therefore the person, you can walk around the copulating couple. It isn't perfect, because in VR it feels a bit 'disconnected', the other issue of course is when you place a clone of the player (00000014) it spawns with default armor and does not reflect the actual equipment the player has. Naturally, it's not a show stopper when the purpose is to strip naked anyway.. but it's an irritation. I was thinking, basically all the animation type mods will need to do this clone thing, it would make sense if the development community came together a bit and created a master esm with the classes and functions to keep parity of equipment/fetch a clone/remove a clone etc. For flowergirls I have been experimenting with a first person view.. locking the player controls of course. However.. this IS a bit nauseating, during a stage it's not too bad, the problem is when the stages change.. the movement feels very disconcerting. Also some animation stages have quite abrupt head movements and not yet at the stage where I have added some 'smoothing' process. Anyway, drop me a line if I can be of any assistance of any kind. Or otherwise feel free to copy/paste the relevant bit of code from FG. 1
CEO 0S Posted May 12, 2018 Author Posted May 12, 2018 OSex / OSA for Skyrim Special Edition WARNING ALPHA TEST OSA https://www.nexusmods.com/skyrimspecialedition/mods/17217/ OSEX https://www.nexusmods.com/skyrimspecialedition/mods/17209/ GITHUB Coming in a few... Have some free time? Download OSA / OSex for SkyrimSE and report back bugs and whatever else. or check out the nexus pages and let me know if any of the documentation is wrong for the port It's a cut and paste currently. As a heads up there is nothing new since 2.02 this is just a SkyrimSE port thanks to TooneyMan23's conversion process. Oh and give them endorsements if you like OSex please! It sounds like OPose is not working so let's get this first part ironed out then figure out opose. Objective is to get this working nice on SE and if we pull that off we'll try for VR Current Issues: - OPose not tested yet - It's using the International font (the one that has all cyrillic and asian characters which isn't as pro as the NA font) I believe this is OSA.dlls purpose to detect which is failing hence why it's using the wrong font. --- FIX: I recompile OSA.dll - CodePage not detected messagebox whenever OSA processes an NPC. (This is CPConvert.dll) it's trying to check if the NPC has cyrllic asian characters and failing to find the dll. FIXED---- FIX: Adjust the papyrus to not use this and remove CPConvert.dll from the download for now. See if we can find Scorpion SK to recompile it - Alignment goes to shit when near a bard, old bug, no fucking idea. - First scene doesn't animate (Unknown) - Names don't appear in OSA menus. FIXED--- Commenting out CPCOnvert fixes this - Can't find an ENB close to as good as Poupouri ENB for SkyrimSE --IDK - AoE Invite doesn't work, very hard to start DualWield Scenes - Can't reach Reverse Cow Girl Bounce Her Faster face away 7
CEO 0S Posted May 12, 2018 Author Posted May 12, 2018 3 hours ago, Xiderpunk said: Hi welcome back @CEO, I highly recommend VR.. it's just jaw dropping good. And yes for sure OSex would be outrageously good in VR. The problem in VR is the player literally does not have a body of any kind, so third person doesn't really exist as such. Therefore what I did was place a clone at the players exact position then use the clone as the player for the scene. The camera is therefore the person, you can walk around the copulating couple. Thanks for this Xiderpunk, I suppose with OSA NPC + NPC scenes would be the only option, which would work ok but exclude the player. A hardcore solution would be to add another button to OSA's keybinding menu where you can have it automatically hide / clone "VR Mode". What you are proposing is a utility script that handles equipping a clone with identical armor? I think it would be straight forward, my actra and global papyrus scripts scans all equipment of an NPC to give it to OSA. With some minor adjustments I think we can make a full script that clones + equips all items and then delete when done. Should be pretty straight forward. Most likely just a single function that equips all one actors equipment to another like: CloneEquipment(Actor,Actor) Without trying it but with my experience with other VR porn I fear for something to really work 1rst person in a VR experience it would need to be animated from the ground up in first person but of course i'll have to try it out to see. I'll try to shoot for 3rd person NPC NPC as a starting point to at least get the port working outside of the 1rst person dilemma. Anyway just to get a discussion started for the code as a starting point; in _oActra.psc ever actor that OSA knows about registers for this event so OSA can request it's equipment. Event OnRequestEQSuite(string eventName, string zNothin, float numArgggYeLanLubers, Form sender) SendEQSuite(actra, formID, glyph, codePage) EndEvent We could simply skip this part and the formID, glyph, codePage stuff would not be needed. And that points to a function in _oGlobal which scans all items: function SendEQSuite(actor actra, string formID, int glyph, string codePage) global int zSlot = 0 string[] Eq = new string[73] armor EqCur While zSlot <= 32 EqCur = Actra.GetWornForm(getOSlot(zSlot)) as armor If EqCur Eq[zSlot] = EqCur.getFormID() Eq[zSlot+40] = CPConvert.CPConv(codePage, "UTF-8", EqCur.getName()) Else Eq[zSlot] = 0 Eq[zSlot+40] = "noeq" EndIf zSlot += 1 EndWhile Eq[39] = formID UI.InvokeStringA("HUD Menu", "_root.WidgetContainer."+glyph+".widget.com.skyActraAttireWorn", Eq) UI.InvokeStringA("HUD Menu", "_root.WidgetContainer."+glyph+".widget.com.skyActraWeaponWorn", analyzeWeapon(0, actra, formID, glyph, codePage)) UI.InvokeStringA("HUD Menu", "_root.WidgetContainer."+glyph+".widget.com.skyActraWeaponWorn", analyzeWeapon(1, actra, formID, glyph, codePage)) endFunction Takes every possible slot sees if there is an item there. In this case it sends it to OSA at the UIInvokeStringA part but we could instead just add it to an Armor[] then have the cloned actor equip all of by going through that array.
CEO 0S Posted May 12, 2018 Author Posted May 12, 2018 3 hours ago, Xiderpunk said: @Xiderpunk @Tooneyman23 Tooneyman since you are in the know on conversions any suggestions for me to get NPC Fione into SE or VR quickly? I got a rough idea of the long way of setting her up in SE CK and she might already be done but that was like week 1 of SE. Any new easy systems to bring my girls over?
Tooneyman23 Posted May 12, 2018 Posted May 12, 2018 1 hour ago, CEO 0S said: OSex / OSA for Skyrim Special Edition WARNING ALPHA TEST OSA https://www.nexusmods.com/skyrimspecialedition/mods/17217/ OSEX https://www.nexusmods.com/skyrimspecialedition/mods/17209/ GITHUB Coming in a few... Have some free time? Download OSA / OSex for SkyrimSE and report back bugs and whatever else. or check out the nexus pages and let me know if any of the documentation is wrong for the port It's a cut and paste currently. As a heads up there is nothing new since 2.02 this is just a SkyrimSE port thanks to TooneyMan23's conversion process. Oh and give them endorsements if you like OSex please! It sounds like OPose is not working so let's get this first part ironed out then figure out opose. Objective is to get this working nice on SE and if we pull that off we'll try for VR Hey CEO. I've gone a head and made a reddit thread for you and posted on the discords to let people know more about your mod you just ported. If you need anymore info. Please feel free to reach out. I'll try to answer with answers for you within a 24 hour period. Thank you so much.. so much for porting this over for everyone. I hope we can help with the beta. I'll make a video announcement too and to get more interest in this so you can hopefully get this fixed up and finished. =) 1
Tooneyman23 Posted May 13, 2018 Posted May 13, 2018 @CEO 0S For Fione... The problem with the new creation club and the old one from what I've read is facegen. I don't know the whole process on it, but if I'm correct. You simply need to make sure the meshes are ported over correctly. Load the Esp into the new creation kit you get at Bethesda.net and you should be good to go. I would however make sure you clean the mod just in case the new creation kit leaves any funny stuff. SSEEdit should help you do that. If you need more info on how to setup anything make sure you clean your ESM files from Skyrim SE. Bethesda just did a sloppy port. I would clean the Skyrim VR esm files too. As for the character meshes the only thing you'll need to do is use @ousnius nif optimizer and you should be good to go. Those have to be ported otherwise it'll cause a CTD. It's a pretty straight forward process. Just drop the nifs into the optimizer. Click the Exe and you're good to go. I forgot to ask what Mod manager are you using since NMM is pretty out dated and MO2 is working well on SSE and SVR. You can use the new Vortex tool too, but it is like NMM where it touches the data folder. If you run into anymore problems with porting your follower characters. I would talk to people on the SunJeong servers I posted earlier. They can serious help you with any issues you run into. If you need help with getting any bounce and giggles working. CBP Physics can help. If I'm correct it works with VR and SSE. I'm not sure about HDT-SMP as of right now I'm starting to port mods with it, but it's still in Alpha stage too and can have a lot of issues with FPS hits. CBP just handles the Stomach, breasts and butt. It has a little text file you can adjust to allow to bouncing. =) If you're using Fione with her old body it should be fine. I know ousnius has created a brand new CBBE body with more polys. SOS full is working properly too and along with SOS Tempered skins light. You'll have to do some digging if you'd like to get the skins to look nice for the males. The sad part is Racemenu isn't out right now and it's only in beta. You'll have to use one of my guides if you'd like to port it over. The recent version people have been having problems with it. 1
CEO 0S Posted May 13, 2018 Author Posted May 13, 2018 3 minutes ago, Tooneyman23 said: @CEO 0S For Fione... The problem with the new creation club and the old one from what I've read is facegen. I don't know the whole process on it, but if I'm correct. You simply need to make sure the meshes are ported over correctly. Load the Esp into the new creation kit you get at Bethesda.net and you should be good to go. I would however make sure you clean the mod just in case the new creation kit leaves any funny stuff. SSEEdit should help you do that. If you need more info on how to setup anything make sure you clean your ESM files from Skyrim SE. Bethesda just did a sloppy port. I would clean the Skyrim VR esm files too. I forgot to ask what Mod manager are you using since NMM is pretty out dated and MO2 is working well on SSE and SVR. If you run into anymore problems with porting your follower characters. I would talk to people on the SunJeong servers I posted earlier. They can serious help you with any issues you run into. Pro thanks, by porting over meshes can I just use the mesh converter tool you mentioned or does facegen cause further issue? What's a good ModManager now? I use o use Wrye / MO but i'm kind of just stuffing things into the data folder for now, most likely will regret it later. Thanks a lot for the post as well, very nice, perfect!
Tooneyman23 Posted May 13, 2018 Posted May 13, 2018 37 minutes ago, CEO 0S said: Pro thanks, by porting over meshes can I just use the mesh converter tool you mentioned or does facegen cause further issue? What's a good ModManager now? I use o use Wrye / MO but i'm kind of just stuffing things into the data folder for now, most likely will regret it later. Thanks a lot for the post as well, very nice, perfect! I added more info to my post above. I recommend MO2.. It's just like MO 1.. Except you can convert mods with Oldrim now with it. If you need a BSA extractor here. You may want to check out this thread for facegen. This should help you with what you need. Crossing fingers this will help you get your fione over to SSE without a problem. Here is my guide on Racemenu. You can use ECE but... I'd be careful since it almost took out my computers graphics card. ECE is powerful on the processing part. I don't know what textures you like to use, but here are some good examples for CBBE.. You can use the new CBBE which uses fairskin complex. Mature Skins, Pride of Valhalla, Tempered skins but it's for UUNP only. Real woman SE, and the last one I could fine was Leyenda skins. For males you can check out Tempered skins, Fine Face Textures, Vitruvia - Skin texture overhaul for males from what I've scene these all have SOS support. If you want to use SOS full. There is a few tricks you'll have to do in order to get it to work with Tempered skins. The process is some where on the SOS full SE thread in the download areas. If you're looking for a light ENB for Skyrim SE with SSS effects. Try checking out this one. It's brand new it's called Vixxen and it looks gorgeous. I hope this helps. You can use Wyre Bash easily on SSE too. If you have any other questions please let me know. If you are having any other problems with installation or anything like that with MO2. Here is my guide to help you with everything. And here is gamerpoets guide to hopefully get you up and running without a hitch. I did forget to mention this too. SSE Fixes.. This is a must have as it can fix many issues with SSE. Unfortunately, I will not be able to answer anymore questions for about 24 hours since I'll be on the road. I'll check back tomorrow to see if I can answer anymore of your questions. I hope all this informations has helped. 2
Tooneyman23 Posted May 13, 2018 Posted May 13, 2018 Hey CEO this will be my last post. I noticed you forgot to add the full list of requirements for your mod on the nexus. I'd go ahead and add them if you can before you do anything else otherwise people will freak out. I'm making a video right now for people to use your mod. It won't be perfect, but it'll be enough to keep them from complaining too much. List of requirements- SOS light SOS full MFG Fx - Must have for facial expressions. These needs to be in place for them to use it. 3
kroma Posted May 13, 2018 Posted May 13, 2018 I can't make it work... I don't have NUMPAD and the F10 thing is not working for me. I just downloaded OSA and OSEX "manually" and install it with MO, any help?
orandoo Posted May 13, 2018 Posted May 13, 2018 Welcome back CEO! Any plans for that "Girl's Night" video?
B0ss plz Posted May 13, 2018 Posted May 13, 2018 Hey CEO, how do I use the profile roleplay texts with OSA?
nsfwbugreporter Posted May 13, 2018 Posted May 13, 2018 Welcome back, CEO! I will join the many voices expressing gratitude at your return Gotta say, I absolutely love 0Sex. Been playing with it for a while now, and I consider it pretty much essential at this point. Because of that, I still haven't made the jump to SSE yet, and I can't comment on any issues with the SSE port specifically. (But I'm definitely super happy to see an official SSE port on the way for when I do eventually switch.) However, I can report some of the oddities I've encountered with the mod in its current state (2.02) on Oldrim, in case you're planning to fix any of those. I'll try and order them by how difficult I think they'll be to fix (though I am no animator, so I could be wrong): (Hopefully) an easy fix: In the Alt Doggystyle position (the "mount her higher" option from standard doggy): When the sub looks back at dom at 0.5 movement speed, there is no female movement (body doesn't push forward). However, this problem doesn't exist on faster speeds (if the movement speed is 1.0, it works fine). Reverse cowgirl, bent forward: sub can't look forward/away from the dom (button does nothing). You might already be aware of this; I saw it mentioned in your SSE announcement post a bit back. From the "Jupiter" position: The transition for "Scoot towards his head" exists, but plays a bit too much (the sub starts to straddle the dom's head, but then snaps back). A slightly shorter transition would probably fix this just fine. Might require more work (because of possibly missing animations): Also from "Jupiter": The "Bend over him" option and a bunch of the actions that follow lack transition animations (eg. Wrap your hand around him and stroke, take him in your mouth). It's often a snap into place that looks very jarring, or some placeholder animation. 69: Basic animation works, but transitions are wonky. All of the sub's actions are either unimplemented or broken. "TEMP PLUMBER" option exists and (presumably) is unfinished. Entering this option breaks navigation since there is no way to return to the previous position. (It is possible to recover the session by using the "Navigate" option in the Numpad Enter menu, but this is not obvious.) Hope this helps--I personally can totally understand if all this is too much work, but I do hope we can see some of the simpler bugfixes. --- A few other things: Having read all of your posts from yesterday, I also want to confirm that you never did release the Unicorn plugin, and I (along with many others, I'm sure) would love to see that, even if it's just on Oldrim for now. Been looking forward to it for a while! At some point last year before you left, you had mentioned that you were working on new sounds (I think specifically a new spank sound, but maybe some others)--any chance we'll see that work released? People have been asking about implementing some kind of orgasm system; you've said that you'll release your orgasm animation but not implement it. Care to comment on how much effort you think implementing orgasms might be for someone else? Finally: I've been trying to integrate 0Sex into a few personal mods of mine, but I've had a hell of a time trying to figure out the Papyrus API; as far as I can tell, there's no currently accessible documentation for it. The closest I could find was a post from 2016 (I think? I couldn't find it again) on this thread that had a link to some sort of API documentation, but the link was dead. Even if it's just re-uploading whatever that was, it would be amazing. Thanks so much for your work, and best of luck with your new project as well! 1
CEO 0S Posted May 13, 2018 Author Posted May 13, 2018 https://github.com/CE0/ Link to the github that was requested. I'll move this to the front page of all my stuff. Post the link anywhere you think it might be helpful. All Papyrus,Actionscript2,XML used to make the project on GIT. It also has some example projects and some communal xml projects I never got around to finishing but are started. OSA-SE The full packaged OSA mod for nexus upload. OSA-SE-FLASH The Flash and actionscript used to make the osa.swf that goes in OSA-SE The vectors art work inside OSA-Flash are my own drawings and they are not permited to be used in any way outside of OSA. OSex-SE The full packaged OSex mod for nexus upload SE-HotPatch Stuff mirrored in the NextVersion branches of OSA or OSex but meant to be a quick way to get script changes without re-downloading and setting up everything. OSA-SE-ProfileExample Quick example of how to setup a profile. It's Incomplete, not sure why, I'll see about getting it all to fill out right like the old profile example. The GFX in it is working nicely though however I set it to a blue skin red head. Might be better to make it more appealing colors for example purposes. OSA-SE-ProfilePersonaFull Not intended to be functional but demonstrates all the possible things you can put in the persona folder. OSA-SE-PersonaPackExample NOT complete yet. An example of a profile pack that can be installed via Nexus. OSA-SE-Customizer-Names / GFX / EQUIP Customizer comes with OSA and handles randomization for default NPCs that have no persona/profile data. These should be packed when finished into OSA-SE but i pulled them out on git so they are easier / clearer to work on. GFX and NAMES can be worked on communal however EQUIP really depends on the user's installed equipment and preferences so this should be just the absolute minimal for distribution. OSA-SE-SkyLife Skylife is supposed to be a communal place to work on profiles for all Skyrim npcs. I set it up with a basic list of popular waifus but currently they are all just using a template profile / gfx. The plan was to try to have as much of Skyrim's NPCs given accurate profiles and body tones as possible. Colors and hues and clothing should be based on the character's iconic look, more exterme make overs from mods should be handled in forks. Since profiles take up so little space it's ok to add modded npcs into SkyLife also. If you look in the _REF folder you can see an organization system to know how to find NPCs I also put a text document in with each npc so i can find their folder by name. MISSING STILL; The mod demo pack for OSA, OPose, OPoseFree . 4
CEO 0S Posted May 14, 2018 Author Posted May 14, 2018 If anyone is up for more testing please try out either the 2.03 branch of OSA or if you want a quick download that just overwrites the Papyrus do the HOTPATCH download from my git. The "Code Page" error should be prepared and scan in vicinity should work. A question for any papyrus people out there. It's a confirmed bug on PapyrusUtil's page that MiscUtil.ScanCellActors is not working. That was the function I used to get all NPCs in vicinity if you were using that function to gather up NPCs to start a scene or using the "Invite a Nearby NPC" function to start a 3-way. After looking through SKSE and Vanilla functions I'm at a loss how to solve this one without ScanCellActors, the best I could create was this dirty band-aid. It takes 3-5 seconds to run however when the prior would happen almost instantly. This was the original that no longer functions: actor[] actraInRange = MiscUtil.ScanCellActors(PlayerRef, 5000.0) Quick and easy, the goal is to fill an actor[] with all actors in range that gets sent to the UI. This is what I made as a band-aid. It's much slower and a lot more complex, if anyone has ideas to speed this up please let me know. actor actraFound int scanAmount = 25 actor[] actraFoundArr = new actor[25] int iscan = 0 int foundCount = 0 while iscan < scanAmount actraFound = Game.FindRandomActorFromRef(PlayerRef, 5000.0) if actraFoundArr.find(actraFound)==-1 ;;PapyrusUtil.PushActor(actraInRange, actorFound) actraFoundArr[iscan] = actraFound foundCount+=1 endIf iscan+=1 endWhile actor[] actraInRange = PapyrusUtil.ActorArray(foundCount) iscan = 0 int foundCountAdded = 0 while iscan < scanAmount if actraFoundArr[iscan]!=none actraInRange[foundCountAdded] = actraFoundArr[iscan] foundCountAdded+=1 endIf iscan+=1 endWhile ;;END OF SHITTY BAND-AID debug.notification("scandone")
CEO 0S Posted May 14, 2018 Author Posted May 14, 2018 @TooneyMan23 Thanks got her in Thanks for all your help also at making this port happen and helping me smooth it out plus all the troubleshooting you did. I added you into the credits for 2.03 and will Knight you next batch I do. Awesome job! On 5/12/2018 at 10:19 PM, random7560 said: Welcome back CEO! Any plans for that "Girl's Night" video? Sure I can try to get it out, it's done but i never got around to the final export. It's Girls Night + Igniter + Alien Abduction + Ejacocalypse Outro basically all the episodes at the end i was working on i just abbreviated and combined into a video: 19 hours ago, B0ss plz said: Hey CEO, how do I use the profile roleplay texts with OSA? You can look at the examples on the git to get started: This is a template where you have to rename some folders but the rest is in place: https://github.com/CE0/OSA-SE-ProfileExample This has working profiles if you want to reference: https://github.com/CE0/OSA-SE-SkyLife This only does name race height weight. I think they can do the full bio profiles but I'd say start with this for now. I haven't checked to see if the full bio profiles are still working yet. I'll do that after the main bugs are sorted out. 12 hours ago, nsfwbugreporter said: Welcome back, CEO! I will join the many voices expressing gratitude at your return Gotta say, I absolutely love 0Sex. Been playing with it for a while now, and I consider it pretty much essential at this point. Thanks so much for this. For things like Jupiter, Plumber, 69, bad girl face mount, wizard sex, unicorn, some of dual wield, I basically was just showing clips of those for months but not releasing because the projects were too ambitious and when the burn out started happening I just uploaded my current state so at least people could see where I was at and use the positions that did work. For things like that it will have to be on hold for now and I'm sorry for that. However things like you mentioned in Plumber where the nav can break I do want to clean up. If you see any more cases like that which are weird please let me know. I found one tonight in Dual Wield where the Standing Doggystyle entrance has no text or icon, and once you get to it the icons are incorrect and one goes to a broken scene. I want to fix these things up so while the animation might be sloppy in some places at least it can all be safely navigated without falling apart. - Unicorn i can do, albeit it's mostly unfinished - I will gather up some animations that were close to see if people would want them to be include as is or finish for me, there's a fuck lot that are in wip - I will release the orgasm animation form prior and also the Dom kneeling Eating Ass that people actually mentioned they wanted back and see if the community can get them hooked up. - It wouldn't be hard to implement orgasm, Wizard Sex required most of what orgasm needs, the functions should all be in the papyrus. OSA uses it's own kind of animationEvents fired by FNIS. A FNIS animation event is registered and time in the FNIS doc which then sends an event to OSA which then can do anything from Flash, this is how spanks, thrusts etc. are registered and how the sub reacts during some rough scenes where their hair gets pulled with an angry face and sound. When I say easy what I mean is if you were familiar with ActionScript2 and how OSA is set up it would take a handful of hours if things went well. OSA's code is kind of huge and intimidating and ActionScript2 skills are kind of rare so it might take longer for people to get situated. If someone feels they can make the coding, they should feel free to talk to me about OSA and I can talk them through the setup and the areas they need to change to make it work. - The sound project is not being worked on at this time. Basically I have semi my own private sounds I use which I haven't released because they are not full so in a lot of cases they don't work. I made a bunch of other sounds for the OSex Movie and you can see there that it has much higher quality sounds. All the new sounds I had available were loose in a zip file that we were passing around and i believe R-H-Z was working on it last I heard. I do have the zip somewhere of the new sounds but they are just loose and not put into Skyrim but if someone would be interested please let me know. - Here is the link to the api: http://ceo-os.tumblr.com/osex/book/api/ I think in _oControl you can see some examples that got left in (Bound to F5 I think for testing) of trying to script an entire flow of a scene. I'd say, while it is possible, scripting an entire scene is not finished enough for official use unless you are doing something simple, and would say for now I would simply just trigger the scene and let the player take control instead of trying to automate it. If you are doing it for 2 NPCs then you'd have to experiment with a simple scene that you can automate using scripting and have look good. Let me know how it goes but if it's not working at all let me know so I can take a look and not waste to much of your time if there's something not working. 3
Eradoras Posted May 14, 2018 Posted May 14, 2018 I will make it short to avoid to break the chain of questions and answers But to tell you how i am completely amazed to see how the Mod community is reacting to support and help for the fantastic CEO mod!. one for all and all for one. Fantastic! Cheers 1
Khedall Posted May 14, 2018 Posted May 14, 2018 Jaw drops on the thought you made most things working with Action script, the part i never get into into Flash (much). Really impressive Thumbs up and hands clapping Anyway, i installed everything in order to get Osa / Osex to work, and from the plugins, i installed the 4(?) available Wizard, DuaWeild, Badboys and Badgirls. The 4 plugin appears in the sub menu under > Osex > plugins, and when i scroll up on their respective icons, they are confirmed "installed" in Osex. In the navigate menu, on the left column, only wizard and dua wield icons shows tho... (not sure if the latest trully works i wasnt in a context i coudl really test it :p). Wizard seems to work properly as far as i tested it a bit. So what about BadBoys & Girls one ? - What is their contents ? Their anims files and folder is there, i think FNIS registered their anims properly but how i do ever access them in Osex interface ? And what are they supposed to do anyway ? (my web + LL research only led me to posts telling they dont work or people having difficulty to use them, i dont even know what they do :p, a little BIT of infos would be nice even if they are WIP plugins). Thats frustrating lol I ve browsed a few of your guides, thinking of geting my head in some plugin creating/tweaking, beeing curious... Basically, as a entry points for more scenes and anims. I dont have questions at this point unless i ve done all the reading... Plus i would need to check what the two missing (for me) one would do and how... Just one though : i cant find any guide / info on the SOUND possibility tweaking (in a plugin or on the existing content), hierarchy and file names / format , triggering conditions, timing possibility etc. I may have missed it tho sorry. Any direction to help my blind face on that please ? [EDIT] my feel is that only a very small portions of the existing sounds files are trully beeing used, or they can be heard very rarely... but i guess i ll have to test much more to get sure of this... (?) ] Dat' framework potential GJ again !
Tooneyman23 Posted May 14, 2018 Posted May 14, 2018 Wow, @CEO 0S this is awesome for the github. The site is great for people create alphas and things for modders and coders to contribute properly to your projects. I'm exstatic to see what happens next. Now I know you've recently got the github up. Could you on the nexus post as a stick. Add your github link as well and let people know what it's there for. Sometimes developers are just testing the mod and will only look at the posts to see what people are saying. Having the link and a description about what your github is for will help people who might be interested in dipping their toes.. Foot fetishes a side. I'm glad you've gotten Fione into Wow, CEO this is awesome for the github. The site is great for people create alphas and things for modders and coders to contribute properly to your projects. I'm exstatic to see what happens next. Now I know you've recently got the github up. Could you on the nexus post as a stick. Add your github link as well and let people know what it's there for. Sometimes developers are just testing the mod and will only look at the posts to see what people are saying. Having the link and a description about what your github is for will help people who might be interested in dipping their toes.. Foot fetishes a side. I'm glad you've gotten Fione into the game for SSE. I'm very happy. If I'm correct. You should be able to take your old save from Skyrim LE and bring it over to Skyrim SE too so you can use your old male PC too. Now for my other question.. Have you had a chance to play with VR at all? and what do you think of it if you don't mind me asking? Update: I've been testing out OSA and Osex together and the message is definitely gone. The characters align perfectly. Works really well. I'm not seeing anymore problems with this new update. Thanks for getting it out so quickly. 1
marcob3 Posted May 14, 2018 Posted May 14, 2018 where i can find a thing like a sex position tree map/chart? 1
Sursed Posted May 14, 2018 Posted May 14, 2018 CEO, could you release or share the head presets\nif exports of your beautiful characters? 1
Zoky Posted May 15, 2018 Posted May 15, 2018 Nice to see you are still alive, CEO. I don't blame you for getting burned out or wanting to move on to other things, I just want say if you do continue development of the mod (or if someone picks it up after you) then please focus on proper orgasm mechanics/scenes. I feel like it's the most lacking thing and probably the #1 reason why OSex never got the same amount of plugin mods by other modders as SexLab got. On another note though, I noticed your tumblr blog along with a lot of other ones with adult content got censored for users not logged into tumblr. I don't have a tumblr account and I don't plan on making one, but I did use to check in on your blog every now and then and I even learned a lot from your modding guides so maybe you could consider having your blog somewhere else. I would love if you have your guides in some PDF format or something to download so I can be sure I always have them on hand if I need them no matter where your blog is. 1
Findri Posted May 16, 2018 Posted May 16, 2018 Hi guys, are these new "SE" releases only for Special Edition?
CEO 0S Posted May 16, 2018 Author Posted May 16, 2018 Does anyone have info on downloading an older version of SkyrimVR from Steam to be compat with SKSE? I'm trying to get a port for VR done but I can't use SKSE with the version of SkyrimSE that steam downloaded for me. Any help would be great and expedite a VR port of OSex. ALSO Throwing up the new banners for record keeping: 4
CEO 0S Posted May 17, 2018 Author Posted May 17, 2018 On 5/14/2018 at 6:06 AM, Khedall said: Jaw drops on the thought you made most things working with Action script, the part i never get into into Flash (much). Really impressive Thumbs up and hands clapping Reply here---> Spoiler Hi Khedall, BadBoys and BadGirls get any scenes that are to handsy or forced looking. This usually involves Hand pushing head for oral or hair pulling, if it's the Dom being rough it goes in BadBoys and if it's the sub it goes in BadGirls. I wanted to have these be optional in case people were interested in the romance/affection of OSex but were not comfortable having guided blowjobs / clam slamming / hair pulling on their system. They function different than Wizard or Dual Wield because they have no entry point and are all over OSex, they are more like unlocking censored scenes where as Wizard and Unicorn have an entry point that gates all their scenes and that can be navigated too. The framework is like you think and can do some pretty intricate stuff most likely my attention to detail got too obtuse but I would honestly say that it is complex as fuck but does gain a lot of power in detail from that. The disadvantage is that it's very hard to document it all, I've tried a number of times but keep failing at making documentation since there's many faces of OSA that need lengthy guides and it gets too time consuming intimidating to finish in a way that clearly explains it. You can add conditions that are triggered, like spanks, thrusts, gags during BJs, etc. If you want similar things that aren't there yet they can be added in Flash. You can trigger emotional reactions like how Bad Girls the sub gets a face and sound reaction when her hair gets pulled or when they get spanked. The most important thing to get started in understanding in OSA is that there's a chain of command that is abstract but can create very realistic personality I hope. I'll explain: There's 4 main things ACTION > REACTION > EMOTION (Emo) > EXPRESSION (Mien) 1. An action happens let's say a spank, that's absolute and set by the scene creator, (for example a spank happened 1.2 seconds into this transition) 2. The actor receiving the spank gets notified that they got spanked, now they might like spanks or might not like spanks, their personality decides based on a number of factors how they feel about it, if it's too hard, or they don't like being spanked they'll get an emotion like "angry" or "upset" if they do like it they would get something different. (This would vary from persona to persona) 3. Once OSA decides how they feel about it OSA looks at their Persona to see how they express that emotion from a list of possible sounds and face expressions. 4. Once it decides which one it loads their expression;. So two characters could have almost identical persona's but one could have their emotions switched, both might get angry at being spanks but they would use different sounds and expressions in that case. I hope that at least makes a little sense, I know it's confusing. The best thing I would say is to pick a simple project and talk to me about it here so you can get your feet wet in it and I can show you how to get something quick working. The OSA systems are unorthodox but once you get one figured out you'll see that I mimic the same general structure in all Data. Sound types have to be hard coded into OSA like "Moan 1" "Moan 2" or the sound their ass makes when it gets spanked "Spank light" "Spank Medium" "Spank Hard" . This doesn't mean the sound itself is hardcoded just the type of sound is. This way we can make many persona's that use different sounds since they share a common range of sounds they can make. If people need more sound types we can add them easily to the Flash file however if your sounds can possibly be handled by what's already there it's best to do it that way since every new persona would only work if they also included the new custom sounds. The list of sounds should be broad to get as much power as we need but not get more complex then needed. Let me know something simple and we can start there talking about it, and that might help some others if we do it here in public. A project that would be an easy first step. Once you get tangible results i think the rest of OSA persona and scenes will be clearer. On 5/14/2018 at 6:42 AM, Tooneyman23 said: Wow, @CEO 0S this is awesome for the github. The site is great for people create alphas and things for modders and coders to contribute properly to your projects. I'm exstatic to see what happens next. Reply here---> Spoiler Hi Tooney, I will add the stickies also do you have a new OSA video I should post up on the front? Thanks for everything as always. You got two shout outs in the credits of OSA in game menu for all you've done to help this transition. I have VR set up and working but my SKSE is outdated for the current SkyrimVR build and I can't figure out how to install an old SkyrimVR version. I have everything up and running however and I imagine I can get a port very quickly after I figure out how to get SKSE working. In the meantime I'm making the Flower Girls clone solution on SSE's version that will clone the Dragonborn instead but for OSA it will need to have clothing too so I"m making that system work while I wait. We'll go with one version that can be VR or SSE since the amount of files and repositories we got going on is already pretty hard to manage. Thanks for helping me get Fione over, your info was super helpful, I'll try that with my PC too but he's got an NPC also, I got a little esp pack of them so they can PC or NPC but Fione took a bit of time so I"ll revisit them later. I've almost got her into VR also but she's crashing it when i load her, assuming i'm just missing something basic and I'll figure it out eventually. On 5/14/2018 at 5:43 PM, Sursed said: CEO, could you release or share the head presets\nif exports of your beautiful characters? Reply here---> Spoiler I usually i say that my characters are private, and equip unfinished or I don't have permissions but since i'm winding down on this I might just toss it all together and put it up in a zip. Kind of unrelated to your question but in reference to everything: As a warning I use a really custom skyrim with custom bodies and it has a lot of failings that never worked out but I have a playbook of tricks to get it working for me but not in a way that would be a great help to people, also because I use custom bodies my equipment would be no good to anyone else without work to refit them. What I mean is a lot of equip are going to have to be processed after i put it up to work on any body that people actually use. Faces I will consider putting up though now and that would be easy, I think i did have fione available a while ago but I can't remember. On 5/14/2018 at 5:53 PM, moddyguy said: I believe they are CEO's private possession. Im more interested in getting the texture set up similar to CEO's artistic expression to one of the followers I have added. I believe The description is on nexus Tell me what you need moddyguy, I'll see if I can help. On 5/14/2018 at 9:06 PM, Zoky said: Nice to see you are still alive, CEO. I don't blame you for getting burned out or wanting to move on to other things, I just want say if you do continue development of the mod (or if someone picks it up after you) then please focus on proper orgasm mechanics/scenes. I feel like it's the most lacking thing and probably the #1 reason why OSex never got the same amount of plugin mods by other modders as SexLab got. On another note though, I noticed your tumblr blog along with a lot of other ones with adult content got censored for users not logged into tumblr. I don't have a tumblr account and I don't plan on making one, but I did use to check in on your blog every now and then and I even learned a lot from your modding guides so maybe you could consider having your blog somewhere else. I would love if you have your guides in some PDF format or something to download so I can be sure I always have them on hand if I need them no matter where your blog is. Thanks for the nice note Zorky. I believe you can just download webpages in a PDF format so I might try and see if I can do that then repost them as PDFs, you could try also and see. I think Tumblr just started doing that recently. I'm considering moving everything too nexus's new article pages since they seem pretty convenient and can take pictures. The adult content might have to stay on Tumblr though. 6 hours ago, Findri said: Hi guys, are these new "SE" releases only for Special Edition? No 2.03 is just a SSE port with no new additions however some bug fixes that Oldrim 2.02 never had. On 5/14/2018 at 9:13 AM, marcob3 said: where i can find a thing like a sex position tree map/chart? Sorry Marcob we have nothing like that at the moment. Best i can offer is to browse my Gifs to see a majority of positions, they are all navigated by proximity so you can take a rough guess how to get close to them at least, the movie shows every single animation I believe but is a bit of a watch. You could try the Navigation / Roulette menus to get to areas you haven't discovered yet.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now