Masturbatrix - Tease-AI Awakening - V1.21 25/04/2024 [NEW VERSION]

Webteases are great, but what if you're in the mood for a slightly more immersive experience? Chat about Tease AI and other offline tease software.

Moderator: 1885

User avatar
genome231
Explorer At Heart
Explorer At Heart
Posts: 687
Joined: Wed Nov 12, 2014 8:35 am

Re: Masturbatrix - Tease-AI Awakening - V1.13B 22/04/2023

Post by genome231 »

Hi :wave:

Thank you for the reports, I have fixed the bugs!
Will be part of the next version!

I love the suggestions, most I end up implementing :-D
So thank you for those as well!

Added White panties, obviously a blunder from my side :lol:

I am still working on the next version whenever work/life balance allows it - not as much as I would hope :-|
But unless I drop dead, there will for sure be a new release at some point, honestly though it probably won't be on this side of Christmas :no:

I also have my eyes looking at those Buttplug.io and E-stim features - which sound really cool!
However as I do not currently own a device for either I would rely on others to make it work which is less motivating :lol:

Regarding the next version I have my plans sort of fleshed out.
- Chastity will be a much bigger part of the next version, however you have to "turn it on" in settings.
- Reworking all the stroking scripts to have much more "content", stability and really test thoroughly test them.
- Generally make Masturbatrix more "explicit", explaining why is stuff happening.
- Then there will be some new stuff
- Removing stuff that I thought would be nice, but actually isn't.

Cheers
Genome
Tribute to 1885 & those involved with Tease-AI.
Thank you for spending time on this awesome project! :-)
User avatar
genome231
Explorer At Heart
Explorer At Heart
Posts: 687
Joined: Wed Nov 12, 2014 8:35 am

Re: Masturbatrix - Tease-AI Awakening - V1.13B 22/04/2023

Post by genome231 »

Hi :wave:

Just a still here post.
No news, I have been unable to work on Masturbatrix for about 1½ month :weep:
The next will come sometimes next year, but no clue as to when.

Meanwhile AI dommes are taking over :lol:


Cheers
Genome
Tribute to 1885 & those involved with Tease-AI.
Thank you for spending time on this awesome project! :-)
Rar1197
Explorer
Explorer
Posts: 46
Joined: Tue Aug 22, 2023 6:02 am

Re: Masturbatrix - Tease-AI Awakening - V1.13B 22/04/2023

Post by Rar1197 »

Come back after a little break , and found a few more small issues. Reporting them here in case it helps.

In Custom\Session\Slideshow\Golden_Elements\BellStroking.txt the censorbar text is wrong, as a result of an extra #Var.

Code: Select all

@Censorbar1On(25,90,50,10,#Var[#Var[Temp2] strokes - #Var[Temp1] seconds]) #DT @Wait(#Var[Temp1])
Should be

Code: Select all

@Censorbar1On(25,90,50,10,#Var[Temp2] strokes - #Var[Temp1] seconds]) #DT @Wait(#Var[Temp1])
Also in BellStroking.txt, it is using Temp3 as both a failure count , and as a counter for increasing the difficulty.

So it probably needs to set a new variable (Temp4) to 0 at the start , where it is currently setting Temp3 :

Code: Select all

Oh .. #DT @SetVar[Temp3]=[15] @SetVar[Temp4]=[0]
And use Temp4 instead of Temp3 in various checks further down :

Code: Select all

(BellStroking01B)
@NullResponse @ChangeVar[Temp4]=[Temp4]+[1]
Fail: #Var[Temp4] #DT @CustomMode(failed,Goto,BellStroking01B) @ChangeVar[Points]=[Points]-[10]
@RT(Small,Short) break #DT @Wait(8)
Get ready #DT @Goto(BellStroking01A)
(BellStroking01C)
We're at the end #SlaveName #DT
@Variable[Temp4]=[0] You had zero failures! Impressive #DT @ChangeVar[Points]=[Points]+[100]
@Variable[Temp4]>[0] @Variable[Temp4]<=[3] You had less than three failures! Good job #DT @ChangeVar[Points]=[Points]+[50]
@Variable[Temp4]>[3] Well, #Var[Temp4] failures is kinda bad, I expected more.. #DT 
@NullResponse @CensorbarAllOff 
@End
Also , currently 0 failures gives the message for both 0 and less than 3 failures , so I added an extra check to the 'less than 3' case so it was just for 1 to 3 failures.

Finally , in Custom\Session\Slideshow\Golden_Elements\FastSlow.txt it currently doesn't switch off the metronome when it finishes ,which can leave it running indefinitely. So it probably needs an @MetronomeOff added somewhere near the end.
Rar1197
Explorer
Explorer
Posts: 46
Joined: Tue Aug 22, 2023 6:02 am

Re: Masturbatrix - Tease-AI Awakening - V1.13B 22/04/2023

Post by Rar1197 »

I noticed a general problem with the use of @CountVar , in that any calls to @SetVar on the counting variable will fail while the counting in progress.

This means that if you start counting using a temporary variable and fail to stop it , then any further uses of that variable in later scripts will be messed up as a result of not being able to reset the variable to 0 (or whatever).

I think it probably affects the following files :


In Custom\Punishment\P2.txt you need to stop counting on failure :

Code: Select all

(Fail)
@NullResponse @CountVar[Counting,stop]
In Custom\Punishment\P3.txt you need to stop counting before the various end points.

Code: Select all

(Failed Writing Task)
You failed @RT(your task,the writing task,the task) #SlaveName #DT
@NullResponse @CountVar[Counting,stop]
@End

Code: Select all

(End)
@NullResponse @CountVar[Counting,stop]
@End
In Custom\Session\Classic\Session_Classic_Stroking.txt you need to stop counting before the various end points :

Code: Select all

(End)
@Variable[Merits]<[#Random(1,700)] @NullResponse @Goto(CountEdges)
@NullResponse @CountVar[Timer,stop]
@End

Code: Select all

(End2)
@NullResponse @CountVar[Timer,stop]
@End
In Custom\Session\Release\Generic\Instant\Hard\1.txt you need to stop counting at EndStroking

Code: Select all

(EndStroking)
@NullResponse @CountVar(Count,stop)
In Custom\Session\Video you need to stop counting at ReleaseTimerEnd , and possibly at the End to be safe.

Code: Select all

(ReleaseTimerEnd)
@NullResponse @CountVar[Timer,stop]

Code: Select all

(End)
@NullResponse @CountVar[Timer,stop]
In Custom\Session\Video\Session_Video_Simulation.txt you need to stop counting at the End.

Code: Select all

(End)
@NullResponse @CountVar[Timer,stop]
User avatar
genome231
Explorer At Heart
Explorer At Heart
Posts: 687
Joined: Wed Nov 12, 2014 8:35 am

Re: Masturbatrix - Tease-AI Awakening - V1.13B 22/04/2023

Post by genome231 »

Hi :wave:

Still here working on the next iteration.
I had a break, but restarting my efforts.

I don't think I'm too far from being able to share something :-)

Cheers
Genome
Tribute to 1885 & those involved with Tease-AI.
Thank you for spending time on this awesome project! :-)
Spielers
Explorer At Heart
Explorer At Heart
Posts: 302
Joined: Mon Jan 09, 2017 8:26 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Masturbatrix - Tease-AI Awakening - V1.13B 22/04/2023

Post by Spielers »

genome231 wrote: Fri Mar 01, 2024 11:32 am Hi :wave:

Still here working on the next iteration.
I had a break, but restarting my efforts.

I don't think I'm too far from being able to share something :-)

Cheers
Genome
Great news we are exited to hear that :)
hallojo1337
Explorer At Heart
Explorer At Heart
Posts: 137
Joined: Sun Jul 05, 2015 12:04 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Masturbatrix - Tease-AI Awakening - V1.13B 22/04/2023

Post by hallojo1337 »

Spielers wrote: Sat Mar 02, 2024 2:12 pm
genome231 wrote: Fri Mar 01, 2024 11:32 am Hi :wave:

Still here working on the next iteration.
I had a break, but restarting my efforts.

I don't think I'm too far from being able to share something :-)

Cheers
Genome
Great news we are exited to hear that :)
:thumbsup: :love:
lavolp
Curious Newbie
Curious Newbie
Posts: 2
Joined: Tue Jul 05, 2022 10:45 pm
Gender: Male
Sexual Orientation: Open to new ideas!
I am a: Switch

Re: Masturbatrix - Tease-AI Awakening - V1.13B 22/04/2023

Post by lavolp »

is there a way to change recipes by asking the domme or something?
User avatar
genome231
Explorer At Heart
Explorer At Heart
Posts: 687
Joined: Wed Nov 12, 2014 8:35 am

Re: Masturbatrix - Tease-AI Awakening - V1.13B 22/04/2023

Post by genome231 »

Hi :wave:

I just bought these on Easter sale:
https://www.kiiroo.com/collections/east ... /onyx-plus 45% off
https://www.kiiroo.com/collections/east ... -by-kiiroo 25% off
(I don't get commission for advertising :lol: ).

They are compatible with Buttplug.IO and should work with TAI.
I intend to have them be part of Masturbatrix.

Cheers
Genome
Tribute to 1885 & those involved with Tease-AI.
Thank you for spending time on this awesome project! :-)
User avatar
genome231
Explorer At Heart
Explorer At Heart
Posts: 687
Joined: Wed Nov 12, 2014 8:35 am

Re: Masturbatrix - Tease-AI Awakening - V1.13B 22/04/2023

Post by genome231 »

Hi all :wave:

Sorry for the delay!
The good news are that Masturbatrix is pretty much ready to share in a BETA version.
I just haven't found the time.
I have been playing with the TAI controlling toys - so I have been distracted.
Quite amazing, it feels like magic to be honest :lol:

I will share soon, I sort of promise ;-)
Genome
Tribute to 1885 & those involved with Tease-AI.
Thank you for spending time on this awesome project! :-)
hallojo1337
Explorer At Heart
Explorer At Heart
Posts: 137
Joined: Sun Jul 05, 2015 12:04 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Masturbatrix - Tease-AI Awakening - V1.13B 22/04/2023

Post by hallojo1337 »

genome231 wrote: Thu Apr 18, 2024 3:10 pm Hi all :wave:

Sorry for the delay!
The good news are that Masturbatrix is pretty much ready to share in a BETA version.
I just haven't found the time.
I have been playing with the TAI controlling toys - so I have been distracted.
Quite amazing, it feels like magic to be honest :lol:

I will share soon, I sort of promise ;-)
Genome
Can't wait for it :love: :w00t:
User avatar
genome231
Explorer At Heart
Explorer At Heart
Posts: 687
Joined: Wed Nov 12, 2014 8:35 am

Re: Masturbatrix - Tease-AI Awakening - V1.20 23/04/2024

Post by genome231 »

Hi all :wave:

Sort of crazy that exactly a year + 1day later from last major version I am now publishing the next major version :lol:
I CONSIDER THIS A BETA VERSION!

Emlalock, E-Stim and remote controlled toys are still on the to-do list.
But these are really cool features I want to implement :-)
I hope to do more frequent smaller releases in the future.

Cheers
Genome
Tribute to 1885 & those involved with Tease-AI.
Thank you for spending time on this awesome project! :-)
Rar1197
Explorer
Explorer
Posts: 46
Joined: Tue Aug 22, 2023 6:02 am

Re: Masturbatrix - Tease-AI Awakening - V1.20 23/04/2024 [NEW VERSION]

Post by Rar1197 »

Oh , nice.

I think whatever you did to update the download links hasn't worked correctly.

As far as I can tell the 1.2 versions of Masturbatrix_2_0.zip , GNMImages.zip and GNMVideos.zip are identical to the old 1.1 versions.
TanyaHumble
Explorer
Explorer
Posts: 89
Joined: Fri Dec 10, 2021 9:09 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch
Contact:

Re: Masturbatrix - Tease-AI Awakening - V1.20 23/04/2024 [NEW VERSION]

Post by TanyaHumble »

Ran my first session yesterday with no problems :-D I'll report if I find anything of "use" :wave:
User avatar
genome231
Explorer At Heart
Explorer At Heart
Posts: 687
Joined: Wed Nov 12, 2014 8:35 am

Re: Masturbatrix - Tease-AI Awakening - V1.20 23/04/2024 [NEW VERSION]

Post by genome231 »

Rar1197 wrote: Wed Apr 24, 2024 6:04 am Oh , nice.

I think whatever you did to update the download links hasn't worked correctly.

As far as I can tell the 1.2 versions of Masturbatrix_2_0.zip , GNMImages.zip and GNMVideos.zip are identical to the old 1.1 versions.
God damn it! :wall:
You are of course correct - links should be fixed now - thank you!

Cheers
Genome
Tribute to 1885 & those involved with Tease-AI.
Thank you for spending time on this awesome project! :-)
Post Reply

Who is online

Users browsing this forum: No registered users and 63 guests