Tease AI Bug Report Thread
Moderator: 1885
-
gamer1204
- Explorer

- Posts: 17
- Joined: Sun Aug 30, 2015 9:03 am
- Gender: Male
- Sexual Orientation: Straight
- I am a: Switch
Re: Tease AI Bug Report Thread
the program started to play avoid the edge(the second video task) it didn't start a video, I picked one at random, and when I said edging, the programmed stopped responding(not in a crash, but the domme didn't talk anymore)
The first video task was red light green light
The first video task was red light green light
- AnonymousPseudonym
- Explorer

- Posts: 42
- Joined: Sun Feb 09, 2014 6:27 am
- I am a: Submissive
- Location: NSW, Australia
Re: Tease AI Bug Report Thread
1885, not necessarily a bug but definitely an exploit. If you play Risky Pick and you let the domme guide you through your edges and you're told to edge and you ask if you can start stroking, the domme immediately ignores the remaining edges.
Any other suggestions for getting coins back that are lost through crashes? This all started because I saved up for Risky Pick and then it crashed straight away.
I tried this script but the coins disappear as soon as the session ends. And as the session ends as soon as she gives me the coins they're basically useless, especially since you can't play Risky Pick while you're in a session. I tried extending the session so I could purchase decks of cards, which I did, but as soon as I converted those cards into coins I lost the coins.CBT wrote:NEGEV wrote:I have been using this little script (see below) to test this problem, and to replace any tokens I think I'm owed after they dissapear, or when Risky Pick crashed a few times (every time now), until the next patch which will hopefully fix the problem (fingers crossed).
Use this to add coins to your "bank" if you need to, but dont over do it now...(ahem) its for test purposes only (cough, cough)![]()
You can add extra lines for more tokens, but 200 is usually enough to replace whats owed in most situations. Again, dont over do it
Any other suggestions for getting coins back that are lost through crashes? This all started because I saved up for Risky Pick and then it crashed straight away.
-
Mat
- Explorer At Heart

- Posts: 429
- Joined: Sun Feb 26, 2012 8:34 pm
- Gender: Male
- Sexual Orientation: Straight
- Location: UK
Re: Tease AI Bug Report Thread
If you open:PinkDKB wrote:Any other suggestions for getting coins back that are lost through crashes? This all started because I saved up for Risky Pick and then it crashed straight away.
C:\Users\<Username>\AppData\Local\Tease_AI\Tease_AI.exe_Url_<random string>\1.0.0.0\user.xml
Then you can alter the number of tokens you have:
Code: Select all
<setting name="GoldTokens" serializeAs="String">
<value>0</value>
</setting>
<setting name="SilverTokens" serializeAs="String">
<value>0</value>
</setting>
<setting name="BronzeTokens" serializeAs="String">
<value>125</value>
</setting>-
CBT
- Explorer

- Posts: 52
- Joined: Sat Sep 19, 2015 4:39 pm
- Gender: Male
- Sexual Orientation: Straight
- I am a: Switch
- Sub/Slave(s): Elly
- Location: North West UK
Re: Tease AI Bug Report Thread
I had the tokens dissapear imediatly as well, but they turned up the next time I started the program. Try closing and reopening the program after "collecting" the tokens.
Im also confused by something else in this area. I finally got 2 gold coins and "bought" the default wishlist item (chastity belt)after adding a few things of my own (which didnt show up when the CB was still to be bought so I thought you hadto buy them in order of creation), but the CB is still there to be bought the next time rother thanone of the others.
Im also confused by something else in this area. I finally got 2 gold coins and "bought" the default wishlist item (chastity belt)after adding a few things of my own (which didnt show up when the CB was still to be bought so I thought you hadto buy them in order of creation), but the CB is still there to be bought the next time rother thanone of the others.
Re: Tease AI Bug Report Thread
It's starting to seem that the randomness of the TeaseAI is not too random. I've got around 30 imagesets for my domme but the program always seems to choose between 5 or so sets. I refuse to believe that it's just bad luck on my part as I've launched the app "enough" times. Also it seems to favor some scripts and taunt lines more than others, but that may just be my imagination.
As 1885 is restructuring the code this might be completely irrelevant for next version but still, a mild annoyance to change the picset manually when the app should do it for you.
As 1885 is restructuring the code this might be completely irrelevant for next version but still, a mild annoyance to change the picset manually when the app should do it for you.
-
Mat
- Explorer At Heart

- Posts: 429
- Joined: Sun Feb 26, 2012 8:34 pm
- Gender: Male
- Sexual Orientation: Straight
- Location: UK
Re: Tease AI Bug Report Thread
Well if 1885's using a seed for random number generation it just repeats around 6 numbers..Tepi wrote:It's starting to seem that the randomness of the TeaseAI is not too random. I've got around 30 imagesets for my domme but the program always seems to choose between 5 or so sets. I refuse to believe that it's just bad luck on my part as I've launched the app "enough" times. Also it seems to favor some scripts and taunt lines more than others, but that may just be my imagination.![]()
For 1885, just in case..
Code: Select all
' Initialize the random-number generator.
Randomize()
' Generate random value between 1 and 6.
Dim value As Integer = CInt(Int((6 * Rnd()) + 1))Then for geting a random value between two numbers..
Code: Select all
Randomize()
randomValue = CInt(Math.Floor((upperbound - lowerbound + 1) * Rnd())) + lowerboundhttps://msdn.microsoft.com/en-us/librar ... 90%29.aspx
- Azureballs
- Explorer At Heart

- Posts: 119
- Joined: Sat Oct 28, 2006 5:30 pm
- Gender: Transsexual/Transgender
- Sexual Orientation: Open to new ideas!
- I am a: Submissive
- Location: USA
Re: Tease AI Bug Report Thread
Small bug, when I reset the AI after starting a playlist it wont let me start another, the buttons stay grayed out.
-
Mat
- Explorer At Heart

- Posts: 429
- Joined: Sun Feb 26, 2012 8:34 pm
- Gender: Male
- Sexual Orientation: Straight
- Location: UK
Re: Tease AI Bug Report Thread
Hopefully an easy bug to fix:
@UpdateRuined and @UpdateOrgasm don't update the counter for how many orgasms you've had. They only update the last orgasmed/ruined date in the settings..
I presume it gets updated through @DecideOrgasm rather than when the@Update commands are called.. so it should be easy to swap them round.
Edit:
While testing that one, I also found another, after the allowed number of orgasms has run out, if the domme would allow you an orgasm it seems to freeze, and any messages typed gives this error:
@UpdateRuined and @UpdateOrgasm don't update the counter for how many orgasms you've had. They only update the last orgasmed/ruined date in the settings..
I presume it gets updated through @DecideOrgasm rather than when the@Update commands are called.. so it should be easy to swap them round.
Edit:
While testing that one, I also found another, after the allowed number of orgasms has run out, if the domme would allow you an orgasm it seems to freeze, and any messages typed gives this error:
- Spoiler: show
-
Mat
- Explorer At Heart

- Posts: 429
- Joined: Sun Feb 26, 2012 8:34 pm
- Gender: Male
- Sexual Orientation: Straight
- Location: UK
Re: Tease AI Bug Report Thread
I got this error after starting the Boobs Butts & Ballbusting module:
URI formats are not supported.
URI formats are not supported.
- Spoiler: show
-
closetwanker
- Explorer

- Posts: 75
- Joined: Tue Dec 10, 2013 6:00 pm
- Sexual Orientation: Straight
- I am a: Submissive
- Dom/me(s): Not Collared
- Location: USA East Coast
Re: Tease AI Bug Report Thread
I don't believe I've seen this addressed:
In "2Fingers", the app crashes at the very beginning. Right after the Domme says, "Imagine me on my knees....."
Is there an easy fix for this?
In "2Fingers", the app crashes at the very beginning. Right after the Domme says, "Imagine me on my knees....."
Is there an easy fix for this?
-
Daragorn
- Explorer At Heart

- Posts: 587
- Joined: Fri Nov 06, 2015 1:16 pm
- Gender: Male
- Sexual Orientation: Straight
- I am a: Submissive
Re: Tease AI Bug Report Thread
not sure it this is your problem....but when the domme say that phrase, it requires also @ShowTaggedImage @TagHandjob @LockImages....do you have any handjob tagged image in the local tags?closetwanker wrote:I don't believe I've seen this addressed:
In "2Fingers", the app crashes at the very beginning. Right after the Domme says, "Imagine me on my knees....."
Is there an easy fix for this?
Maybe thats causing the crash....i don't know what happen when there isn't an available tagged image as requested by the script....otherwise the script seems fine, i don't see why it should crash
-
closetwanker
- Explorer

- Posts: 75
- Joined: Tue Dec 10, 2013 6:00 pm
- Sexual Orientation: Straight
- I am a: Submissive
- Dom/me(s): Not Collared
- Location: USA East Coast
Re: Tease AI Bug Report Thread
Daragorn wrote:not sure it this is your problem....but when the domme say that phrase, it requires also @ShowTaggedImage @TagHandjob @LockImages....do you have any handjob tagged image in the local tags?closetwanker wrote:I don't believe I've seen this addressed:
In "2Fingers", the app crashes at the very beginning. Right after the Domme says, "Imagine me on my knees....."
Is there an easy fix for this?
Maybe thats causing the crash....i don't know what happen when there isn't an available tagged image as requested by the script....otherwise the script seems fine, i don't see why it should crash
I appreciate the help. I made sure that handjobs and blowjobs are both tagged. While looking at the list of scripts in the settings menu it states that all requirements are met. But it still completely crashes.
Any other thoughts?........anyone?
-
sexybastardo
- Explorer

- Posts: 45
- Joined: Thu Nov 26, 2015 9:10 pm
- Gender: Male
- I am a: None of the above
- Location: Germany
Re: Tease AI Bug Report Thread
Hey 1885!1885 wrote:
Known Bugs - List Updated 9/14
- Various Glitter aspects are still buggy, including when a new Contact joins the room and when the Glitter app runs a script using old Command Filters
Thank you for your great work and this awesome software. :)
I think i found a bug in this case, after I'm using the @AddContact1 and @AddContact3 Commands in a module or start script the @LockImages command doesn't work anymore ... if you skip this in the script, everything works fine.
Hope that helps ... keep on rocking!
Cheers,
sb
-
pepsifreak
- Explorer At Heart

- Posts: 145
- Joined: Fri May 08, 2009 8:50 pm
- Gender: Male
- Sexual Orientation: Straight
Re: Tease AI Bug Report Thread
Chatlogs should be saved on @EndTease instead of when closing the program because otherwise it saves the cleared chat.
- Caius1
- Explorer At Heart

- Posts: 472
- Joined: Thu Sep 05, 2013 5:59 am
- Gender: Male
- Sexual Orientation: Bisexual/Bi-Curious
- I am a: Switch
- Location: The coldest north
Re: Tease AI Bug Report Thread
Hi
I'm not sure if this is that much of a bug but I can't set my sub name because I cannot see the name field. In the pic attached there's the bottom left corner of the window and the orange thing in the back is my desktop. Otherwise the window resizing works perfectly but left side domme message area is somewhat off.
I'm not sure if this is that much of a bug but I can't set my sub name because I cannot see the name field. In the pic attached there's the bottom left corner of the window and the orange thing in the back is my desktop. Otherwise the window resizing works perfectly but left side domme message area is somewhat off.
- Attachments
-
- Capture.PNG (46.88 KiB) Viewed 3579 times
"Two possibilities exist:
Either we are alone in the universe, or we are not.
Both are equally terrifying." -Arthur C. Clarke
Either we are alone in the universe, or we are not.
Both are equally terrifying." -Arthur C. Clarke


