Jump to content

Recommended Posts

Posted

I remember that there is a mod which allows you to clean cum. In game you can open a wheel where there is an option to clean cum.
What is this mod ?

Posted

Could it have been one of the washing and bathing mods? I remember one of them had SL integration.

 

If you want to do it yourself, I have the code for it in one of my own things.

Posted (edited)
On 7/4/2026 at 7:10 AM, Dinsignia said:

Not a 100% sure, but I think SL Survival has that option.

Do you happen to know exactly where it would be in SL Survival ?

Quote

If you want to do it yourself, I have the code for it in one of my own things.

I'd love to know how to do it !

Edited by Neko-Barbare
Posted
9 minutes ago, Neko-Barbare said:

I'd love to know how to do it !

 

Here's a wash basin script from one of my mods:

Scriptname WashBasin Extends ObjectReference

Sound Property WashBasinSound Auto

;; >> Events
Event OnActivate(ObjectReference akActionRef)
    Actor who = akActionRef As Actor
    Actor player = Game.GetPlayer()
    
    If (who != player)
        Return ; Player only
    EndIf

    SexLabFramework sl = SexLabUtil.GetAPI()
    sl.ClearCum(who)

    WashBasinSound.Play(who)
    Debug.Notification("You feel clean again.")
EndEvent
;; <<

 

If you need to detect water level for the ocean, lakes, ponds and rivers then Papyrus Extender has functions for that.

Posted
7 hours ago, Neko-Barbare said:

Do you happen to know exactly where it would be in SL Survival ?

Can't open the game right now, but you can access the wheel by pressing G, there is an option that says cum, I don't remember exacty how to get there.

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...