[Tease AI] House of Tease Version 8.0 RELEASED 10/12/20

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
tigrotto
Explorer At Heart
Explorer At Heart
Posts: 547
Joined: Sat Jul 15, 2017 5:13 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: [Tease AI] House of Tease Version 5.0.1 - RELEASED

Post by tigrotto »

avatarbr wrote: Mon Jan 29, 2018 11:48 pm
tigrotto wrote: Mon Jan 29, 2018 7:30 am When do you think to release next update?
I'd like to finish my work on response file HadAnOrgasm 2-3 days before; this way you'll have some time to check it, make changes and integrate it in the new version.
I have no idea yet. Probably you will have time to finish that.
Ok good to know.
It took less than I expected to finish the punishment for masturbating without permission and fix OpiateNPC, so yesterday evening I was able to complete everything. Today I will check the scripts to fix some details and, if nothing goes wrong, tomorrow I will send you a PM with the files.

Bye :wave:
User avatar
tigrotto
Explorer At Heart
Explorer At Heart
Posts: 547
Joined: Sat Jul 15, 2017 5:13 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: [Tease AI] House of Tease Version 5.0.1

Post by tigrotto »

Just an information: can we add end scripts to HoT?
If yes, do they need to have a particular structure?

Thanks!
User avatar
avatarbr
Experimentor
Experimentor
Posts: 1185
Joined: Fri Aug 18, 2006 3:33 am
Gender: Male
Sexual Orientation: Straight

Re: [Tease AI] House of Tease Version 5.0.1

Post by avatarbr »

tigrotto wrote: Wed Jan 31, 2018 2:40 pm Just an information: can we add end scripts to HoT?
If yes, do they need to have a particular structure?

Thanks!
Well, there a few things you can miss with other ends, like the fetishes and some variables changing something, but the most important parts you need to include are:

Code: Select all

@NullResponse @DeleteFlag(AV_CrashReport)

and

@Flag(AV_DecOrg) @NullResponse @IncreaseOrgasmChance
@Flag(AV_IncRuin) @NullResponse @DecreaseRuinChance 
@Flag(AV_IncOrg) @NullResponse @DecreaseOrgasmChance
@Flag(AV_DecRuin) @NullResponse @IncreaseRuinChance
@NullResponse @DeleteFlag(AV_DecOrg, AV_IncRuin, AV_IncOrg, AV_DecRuin)*

* I think I included that line in the start script too, but it's a good idea to keep there.

The new update will have a variable to keep track of the orgasm/ruin/denied ends. So, if you want to make compatible already, you need to include this in the @OrgasmDecide parts:

@ChangeVar[AV_EndDenied]=[AV_EndDenied]+[1]
@NullResponse @SetVar[AV_EndCum]=[0]
@NullResponse @SetVar[AV_EndRuin]=[0]

You need to do +1 for the actual results, and reset the others (you need to make for all 3 results).

I only created a few lines using that (in the start module), but could be useful in more places.



ABOUT THE MEMORY UPDATE

I am still fighting with the MissBlue modules :lol: . Just add a @RamdomLink did not work. The fact is, if a module just have @NullResponses till a @CallReturn, TeaseAI will think just a @CallReturn happened in the stroke cycle.

I will need to put a single line, in the first line of the modules with something like "aaand, almost there, etc" to trigger the module.

And I have a few new ideas about the memory part.
johnsmith1980
Explorer
Explorer
Posts: 37
Joined: Thu Nov 19, 2015 7:59 pm
Gender: Male
Sexual Orientation: Straight

Re: [Tease AI] House of Tease Version 5.0.1

Post by johnsmith1980 »

just a quick thanks to the creator and helpers who brought HoT to where it is today.
User avatar
tigrotto
Explorer At Heart
Explorer At Heart
Posts: 547
Joined: Sat Jul 15, 2017 5:13 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: [Tease AI] House of Tease Version 5.0.1

Post by tigrotto »

avatarbr wrote: Wed Jan 31, 2018 8:42 pm Well, there a few things you can miss with other ends, like the fetishes and some variables changing something, but the most important parts you need to include are:

Code: Select all

@NullResponse @DeleteFlag(AV_CrashReport)

and

@Flag(AV_DecOrg) @NullResponse @IncreaseOrgasmChance
@Flag(AV_IncRuin) @NullResponse @DecreaseRuinChance 
@Flag(AV_IncOrg) @NullResponse @DecreaseOrgasmChance
@Flag(AV_DecRuin) @NullResponse @IncreaseRuinChance
@NullResponse @DeleteFlag(AV_DecOrg, AV_IncRuin, AV_IncOrg, AV_DecRuin)*

* I think I included that line in the start script too, but it's a good idea to keep there.

The new update will have a variable to keep track of the orgasm/ruin/denied ends. So, if you want to make compatible already, you need to include this in the @OrgasmDecide parts:

@ChangeVar[AV_EndDenied]=[AV_EndDenied]+[1]
@NullResponse @SetVar[AV_EndCum]=[0]
@NullResponse @SetVar[AV_EndRuin]=[0]

You need to do +1 for the actual results, and reset the others (you need to make for all 3 results).

I only created a few lines using that (in the start module), but could be useful in more places.
Then my next question is: would it be possible to rewrite the end script to make it easier to add endscripts without missing the fetishes, etc, etc...? Something like MissBlue's endscript for example?
Here's an example of how it could be done:

Code: Select all

@NullResponse @DeleteFlag(AV_CrashReport)
@Flag(AV_DecOrg) @NullResponse @IncreaseOrgasmChance
@Flag(AV_IncRuin) @NullResponse @DecreaseRuinChance 
@Flag(AV_IncOrg) @NullResponse @DecreaseOrgasmChance
@Flag(AV_DecRuin) @NullResponse @IncreaseRuinChance
@NullResponse @DeleteFlag(AV_DecOrg, AV_IncRuin, AV_IncOrg, AV_DecRuin)
...
...
@NullResponse @ChanceXX(End with fetishes)
@NullResponse @DecideOrgasm

(Orgasm Allow)
...
...
@NullResponse @CallRandom(Custom\Endscripts\Orgasm Allow)

(Orgasm Ruin)
...
...
@NullResponse @CallRandom(Custom\Endscripts\Orgasm Ruin)

(Orgasm Deny)
...
...
@NullResponse @CallRandom(Custom\Endscripts\Orgasm Deny)

(End with fetishes)
...
...
* This is just a scheme to give you an idea

This way everyone could easily add endscripts without missing anything.
The same thing could be done with the start script. This way you could have more variation at the start and the end of the session.(and, for example, you could use holaba_be's ideas for CEI endings)

But, since this could require a lot of work, you might want to ask here if enough people are interested otherwise it's not worth it. You might also ask people to send you their ideas/script for endings, so you would have more variation when you will release next update.

If you like the idea but are too busy with the memory update, just send me a PM with the new end script and I'll do the work for you, if you want.

:wave:
User avatar
avatarbr
Experimentor
Experimentor
Posts: 1185
Joined: Fri Aug 18, 2006 3:33 am
Gender: Male
Sexual Orientation: Straight

Re: [Tease AI] House of Tease Version 5.0.1

Post by avatarbr »

The start script, should be required just the start, with all that @NullResponse working.

The end almost the same (you example works fine), if you create something new, you can use flags there too. I will need to check other things, but I bet it's not essential.

When I am done with the new update, I will check any changes in these files, and see what I can do.
User avatar
tigrotto
Explorer At Heart
Explorer At Heart
Posts: 547
Joined: Sat Jul 15, 2017 5:13 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: [Tease AI] House of Tease Version 5.0.1

Post by tigrotto »

Hi avatarbr
Yesterday I started wanking( :blush: :look: ...working...) on a new personality for Tease AI.
I don't know if this project will ever see daylight and if I will ever release it(it depends on how much original content I'm able to create, which seems to be an hard task at the moment, and if I'm happy with it), but there's a chance I might use some of the scripts and/or ideas you used for House of Tease.
For example I'd like to use the response file HadAnOrgasm 2.0 I created and copy your idea about trainings.
It goes without saying that you will be credited for your work.(for HadAnOrgasm 2.0 I will just credit myself... :lol: )
My question is: are you OK with that?
I will of course respect your wish if you say no.
I don't need an answer for tomorrow(probably I won't even need an answer...), take your time then feel free to leave a reply here or write me a PM.

Thanks.

Bye! :wave:
User avatar
avatarbr
Experimentor
Experimentor
Posts: 1185
Joined: Fri Aug 18, 2006 3:33 am
Gender: Male
Sexual Orientation: Straight

Re: [Tease AI] House of Tease Version 5.0.1

Post by avatarbr »

tigrotto wrote: Wed Feb 14, 2018 10:08 am Hi avatarbr
Yesterday I started wanking( :blush: :look: ...working...) on a new personality for Tease AI.
I don't know if this project will ever see daylight and if I will ever release it(it depends on how much original content I'm able to create, which seems to be an hard task at the moment, and if I'm happy with it), but there's a chance I might use some of the scripts and/or ideas you used for House of Tease.
For example I'd like to use the response file HadAnOrgasm 2.0 I created and copy your idea about trainings.
It goes without saying that you will be credited for your work.(for HadAnOrgasm 2.0 I will just credit myself... :lol: )
My question is: are you OK with that?
I will of course respect your wish if you say no.
I don't need an answer for tomorrow(probably I won't even need an answer...), take your time then feel free to leave a reply here or write me a PM.

Thanks.

Bye! :wave:
Yes, you can use anything from HoT.

A lot of things are from ramdom sources around the internet anyway (adaptations from webteases, reddit GWA scripts, clip4sale description pages, etc)
User avatar
tigrotto
Explorer At Heart
Explorer At Heart
Posts: 547
Joined: Sat Jul 15, 2017 5:13 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: [Tease AI] House of Tease Version 5.0.1

Post by tigrotto »

avatarbr wrote: Wed Feb 14, 2018 11:34 pm Yes, you can use anything from HoT.

A lot of things are from ramdom sources around the internet anyway (adaptations from webteases, reddit GWA scripts, clip4sale description pages, etc)
Thanks!
Lovepain99
Explorer
Explorer
Posts: 15
Joined: Sun Nov 12, 2017 9:36 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch
Location: Germany

Re: [Tease AI] House of Tease Version 5.0.1

Post by Lovepain99 »

I tried to start House of Tease, but it didn`t work.. :no:
Always when I write something an error report appears.
Can anyone help me please?
User avatar
tigrotto
Explorer At Heart
Explorer At Heart
Posts: 547
Joined: Sat Jul 15, 2017 5:13 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: [Tease AI] House of Tease Version 5.0.1

Post by tigrotto »

Lovepain99 wrote: Tue Feb 20, 2018 3:30 pm I tried to start House of Tease, but it didn`t work.. :no:
Always when I write something an error report appears.
Can anyone help me please?
What kind of error? Could you give us more details?(screenshot, chatlog...)
Lovepain99
Explorer
Explorer
Posts: 15
Joined: Sun Nov 12, 2017 9:36 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch
Location: Germany

Re: [Tease AI] House of Tease Version 5.0.1

Post by Lovepain99 »

This appears every time I write sth.:
C:\TeaseAI\Scripts\House of Tease502\Vocabulary\Responses\System\EdgeKEY.txt not found.
I don`t know what this means...
Lovepain99
Explorer
Explorer
Posts: 15
Joined: Sun Nov 12, 2017 9:36 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch
Location: Germany

Re: [Tease AI] House of Tease Version 5.0.1

Post by Lovepain99 »

I think I found the problem :-D
User avatar
Kristycookie
Explorer At Heart
Explorer At Heart
Posts: 353
Joined: Sat May 18, 2013 1:27 am
Sexual Orientation: Straight
I am a: Submissive

Re: [Tease AI] House of Tease Version 5.0.1

Post by Kristycookie »

I also received the issue where the Dom says, "I will make you edge for each of your crushes" and then she told me wow that was good and to rest. I have like 10 crushes set and it didn't find them somehow? Not sure what's happening there.
03:40 PM Ariel: You will stroke and edge for every crush you told me
03:40 PM Ariel: After that, I will give you a few minutes to recover.
03:40 PM Ariel: Looks fun, right? *giggles evilly*
03:40 PM Ariel: Let's start with...
03:40 PM Ariel: Now I need to check your new crushes
03:41 PM Ariel: This can be a lot of edges for you *sweetly grins at you*
03:41 PM Ariel: Ready?
Yes Mistress
03:41 PM Ariel: Let your body become consumed with the ache
03:41 PM Ariel: Wow, that was hot lol
03:41 PM Ariel: But I know you love it
03:41 PM Ariel: Now you can rest
User avatar
avatarbr
Experimentor
Experimentor
Posts: 1185
Joined: Fri Aug 18, 2006 3:33 am
Gender: Male
Sexual Orientation: Straight

Re: [Tease AI] House of Tease Version 5.0.1

Post by avatarbr »

Kristycookie wrote: Thu Feb 22, 2018 7:48 pm I also received the issue where the Dom says, "I will make you edge for each of your crushes" and then she told me wow that was good and to rest. I have like 10 crushes set and it didn't find them somehow? Not sure what's happening there.
03:40 PM Ariel: You will stroke and edge for every crush you told me
03:40 PM Ariel: After that, I will give you a few minutes to recover.
03:40 PM Ariel: Looks fun, right? *giggles evilly*
03:40 PM Ariel: Let's start with...
03:40 PM Ariel: Now I need to check your new crushes
03:41 PM Ariel: This can be a lot of edges for you *sweetly grins at you*
03:41 PM Ariel: Ready?
Yes Mistress
03:41 PM Ariel: Let your body become consumed with the ache
03:41 PM Ariel: Wow, that was hot lol
03:41 PM Ariel: But I know you love it
03:41 PM Ariel: Now you can rest
Did you setup all or just added the pictures?

You need to type "I have a new crush" or something like that, and she will ask you the names and the folders where you need to put the pictures.
Post Reply

Who is online

Users browsing this forum: No registered users and 19 guests