Tease AI Bug Report Thread

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
avatarbr
Experimentor
Experimentor
Posts: 1239
Joined: Fri Aug 18, 2006 3:33 am
Gender: Male
Sexual Orientation: Straight

Re: Tease AI Bug Report Thread

Post by avatarbr »

desiatoo wrote: Mon Sep 18, 2017 10:56 am When you patch it like that, *does* it behave as described in the command guide? It might be a better explanation of what we are observing. I'm desperately waiting for the moment that She is able to put me on a release schedule. :w00t:
I don't know if I understood your problem about patch. But the release schedule will be a Personality thing only. Someone will need to write that (I think Miss Blue have something like that already).

Another way to get something like that is in the settings-sub tab, in the Orgasms part you can set a limit of orgasms by periods. I think any personality will respect that limit and make you wait.
desiatoo
Curious Newbie
Curious Newbie
Posts: 3
Joined: Mon Sep 18, 2017 10:48 am

Re: Tease AI Bug Report Thread

Post by desiatoo »

Thanks for your response! I would like to add a weekly release schedule to an existing Personality, was looking at HoT but will have a look at Miss Blue too. My thought was that something like a release schedule would heavily make use of @CheckDate and SYS_LastOrgasm, so I was experimenting with these two and found out about the wrong documentation.
Daragorn
Explorer At Heart
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

Post by Daragorn »

Yes, checkdate has always needed a gotoline to go to.....
I dont know which command guide you are referring to, but the command guide i have in teaseai specifically says you need a gotoline...

Generally speaking, you better NOT use more than 1 @ command per line, though, since, due to how 1885 wrote the code (and he firmly refused to put in the changes i made to overcome this, since he thought it was obvious it worked that way for everyone and they were used to that) teaseai will NOT execute those command in the orders you write them, but it only depends on which one come first in the code.
So if you want to be sure to have them executed in the right order, put each of them on a separate line.

As far as the bug... Yes, it is strange it didnt give the same error for the 2 days, which it should have, since it misses the gotoline
User avatar
tigrotto
Explorer At Heart
Explorer At Heart
Posts: 564
Joined: Sat Jul 15, 2017 5:13 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Tease AI Bug Report Thread

Post by tigrotto »

Daragorn wrote: Wed Sep 20, 2017 11:47 am Yes, checkdate has always needed a gotoline to go to.....
I dont know which command guide you are referring to, but the command guide i have in teaseai specifically says you need a gotoline...
It seems we have different Command Guide in TeaseAI... :lol:
This is what I see in my TeaseAI Language Guide about CheckDate
Immagine1.jpg
Immagine1.jpg (102.38 KiB) Viewed 2500 times
Immagine2.jpg
Immagine2.jpg (101.04 KiB) Viewed 2500 times
But as I said in a previous post it works(more or less) also as you see in these images.
It works like a filter in the same way as @Flag/@NotFlag command.
Anyway, it wouldn't be a bad idea if CheckDate worked in both ways...
Daragorn
Explorer At Heart
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

Post by Daragorn »

Thats really weird...
I can only suppose that the command guide is not updated with the patches but only with the full install sp we have different versions because it depends on which version we used for the installation then... But i am speculating

As far as new additions to teaseAI sorry but lately i have started working on another project in the freetime, so i dont have much (if any) time to work on teaseAI
User avatar
tigrotto
Explorer At Heart
Explorer At Heart
Posts: 564
Joined: Sat Jul 15, 2017 5:13 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Tease AI Bug Report Thread

Post by tigrotto »

Daragorn wrote: Wed Sep 20, 2017 1:35 pm Thats really weird...
I can only suppose that the command guide is not updated with the patches but only with the full install sp we have different versions because it depends on which version we used for the installation then... But i am speculating

As far as new additions to teaseAI sorry but lately i have started working on another project in the freetime, so i dont have much (if any) time to work on teaseAI
Don't worry it's not a major issue.

Good luck with your new project!
Bye! :wave:
desiatoo
Curious Newbie
Curious Newbie
Posts: 3
Joined: Mon Sep 18, 2017 10:48 am

Re: Tease AI Bug Report Thread

Post by desiatoo »

For me it does not seem to work....

Your last orgasm was on: @ShowVar[SYS_LastOrgasm]
@CheckDate(SYS_LastOrgasm, 20 Days) @NullResponse @Goto(20days)
@CheckDate(SYS_LastOrgasm, 10 Days) @NullResponse @Goto(10days)
@CheckDate(SYS_LastOrgasm, 5 Days) @NullResponse @Goto(5days)
@CheckDate(SYS_LastOrgasm, 2 Days) @NullResponse @Goto(2days)
@CheckDate(SYS_LastOrgasm, 1 Days) @NullResponse @Goto(1days)
@CheckDate(SYS_LastOrgasm, 1 Hours) @NullResponse @Goto(1hours)
@CheckDate(SYS_LastOrgasm, 1 Minutes) @NullResponse @Goto(1minutes)

gives always this:

09:14 PM Kendra James: Your last orgasm was on: 9/20/2017 3:34:59 AM
09:15 PM Kendra James: 20 days have passed since your last orgasm
09:15 PM Kendra James: Time is: 9/20/2017 9:15:35 PM

Perhaps its the issue Bluelow is talking about; use of CDate instead of DateTime.Parse ?
Daragorn
Explorer At Heart
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

Post by Daragorn »

Bluelow wrote: Tue Sep 12, 2017 7:02 pm The problem with Tease AI is that it uses the CDate function to check for date and time. This is bad practice because it's heavily dependent on the current time and culture settings for the user's operating system and doesn't work right in many cases, especially outside the US (including mine). So I always have to download the newest version source code and change it to use DateTime.Parse (the correct way to do it) and build it again. Hopefully Tease AI will move to use this method in the future.
I have just uploaded version 5.3 and changed all cdate to date.parse as you suggested :yes: (and some minor additions too)
heftigeruser
Explorer
Explorer
Posts: 10
Joined: Fri Sep 29, 2017 8:59 am

Re: Tease AI Bug Report Thread

Post by heftigeruser »

hey

i tried playing risky pick but my programm crashed, now all text is centered and disappears when the next line appears during every session.
any idea how to fix it?

already tried to play another game of risky pick to "reset" the broken state but it didnt change anything (but another error came up)

e: i know now that the user.config file in AppData is responsible (deleted it and it was fixed)
now i have to look for the responsible option

e2: found the responsible option: CBWebtease was set to True (and should probably be False, but i simply deleted the <settings>)
User avatar
markus
Explorer At Heart
Explorer At Heart
Posts: 863
Joined: Tue Nov 18, 2008 11:09 pm

Re: Tease AI Bug Report Thread

Post by markus »

Hi!

I'm new to Tease AI and it looks really impressive and amazing.
Sadly I get some strange errors with it, I tested it in different locations (on different HDD's).
The most 'strange' to me is that the error provides me the user-path (C:\Users\Elijah\....).
I don't know, just wild guessing, but could there be a problem with the way it is compiled?

May I ask on what system it is compiled?

My system is Win7 x64 (home), .NET Framework 4.6.1 and I use TeaseAI 0.54.9, except for the second error.

Here the errors I got:

When I try to create an URL-File I get this:
Spoiler: show

Informationen über das Aufrufen von JIT-Debuggen
anstelle dieses Dialogfelds finden Sie am Ende dieser Meldung.

************** Ausnahmetext **************
System.Xml.XmlException: Beim Analysieren von 'EntityName' ist ein Fehler aufgetreten. Zeile 18, Position 29.
bei Tease_AI.URL_Files.URL_File_BGW.Me_RunWorkerCompleted(Object sender, RunWorkerCompletedEventArgs e) in C:\Users\Elijah\Documents\Visual Studio 2010\Projects\Tease-AI\Tease AI\Classes\URL_Files_BGW.vb:Zeile 238.
bei System.ComponentModel.BackgroundWorker.OnRunWorkerCompleted(RunWorkerCompletedEventArgs e)
bei System.ComponentModel.BackgroundWorker.AsyncOperationCompleted(Object arg)


************** Geladene Assemblys **************
mscorlib
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll.
----------------------------------------
Tease AI
Assembly-Version: 0.54.9.0.
Win32-Version: 1.0.0.0.
CodeBase: file:///F:/teaseAItesting/TeaseAI/Tease%20AI%200.54.9/Tease%20AI.exe.
----------------------------------------
System.Core
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll.
----------------------------------------
System
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll.
----------------------------------------
Microsoft.VisualBasic
Assembly-Version: 10.0.0.0.
Win32-Version: 14.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll.
----------------------------------------
System.Windows.Forms
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll.
----------------------------------------
System.Drawing
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1068.2 built by: NETFXREL3STAGE.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll.
----------------------------------------
System.Configuration
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll.
----------------------------------------
System.Xml
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1067.0 built by: NETFXREL3STAGE.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll.
----------------------------------------
System.Runtime.Remoting
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll.
----------------------------------------
System.Speech
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Speech/v4.0_4.0.0.0__31bf3856ad364e35/System.Speech.dll.
----------------------------------------
AxInterop.WMPLib
Assembly-Version: 1.0.0.0.
Win32-Version: 1.0.0.0.
CodeBase: file:///F:/teaseAItesting/TeaseAI/Tease%20AI%200.54.9/AxInterop.WMPLib.DLL.
----------------------------------------
Interop.WMPLib
Assembly-Version: 1.0.0.0.
Win32-Version: 1.0.0.0.
CodeBase: file:///F:/teaseAItesting/TeaseAI/Tease%20AI%200.54.9/Interop.WMPLib.DLL.
----------------------------------------
mscorlib.resources
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/mscorlib.resources/v4.0_4.0.0.0_de_b77a5c561934e089/mscorlib.resources.dll.
----------------------------------------
System.Windows.Forms.resources
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms.resources/v4.0_4.0.0.0_de_b77a5c561934e089/System.Windows.Forms.resources.dll.
----------------------------------------
Accessibility
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Accessibility/v4.0_4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll.
----------------------------------------
Microsoft.GeneratedCode
Assembly-Version: 1.0.0.0.
Win32-Version: 4.6.1067.0 built by: NETFXREL3STAGE.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll.
----------------------------------------
Microsoft.mshtml
Assembly-Version: 7.0.3300.0.
Win32-Version: 7.0.3300.0.
CodeBase: file:///C:/Windows/assembly/GAC/Microsoft.mshtml/7.0.3300.0__b03f5f7f11d50a3a/Microsoft.mshtml.dll.
----------------------------------------
Microsoft.VisualBasic.resources
Assembly-Version: 10.0.0.0.
Win32-Version: 14.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic.resources/v4.0_10.0.0.0_de_b03f5f7f11d50a3a/Microsoft.VisualBasic.resources.dll.
----------------------------------------
System.resources
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.resources/v4.0_4.0.0.0_de_b77a5c561934e089/System.resources.dll.
----------------------------------------
System.xml.resources
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml.resources/v4.0_4.0.0.0_de_b77a5c561934e089/System.Xml.resources.dll.
----------------------------------------

************** JIT-Debuggen **************
Um das JIT-Debuggen (Just-In-Time) zu aktivieren, muss in der
Konfigurationsdatei der Anwendung oder des Computers
(machine.config) der jitDebugging-Wert im Abschnitt system.windows.forms festgelegt werden.
Die Anwendung muss mit aktiviertem Debuggen kompiliert werden.

Zum Beispiel:

<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>

Wenn das JIT-Debuggen aktiviert ist, werden alle nicht behandelten
Ausnahmen an den JIT-Debugger gesendet, der auf dem
Computer registriert ist, und nicht in diesem Dialogfeld behandelt.
---> This error is gone when I use the windows compatibility-mode for win XP SP3.

Then I wanted to test it with the inofficial patch 0.55.3, but on startup I get this error (maybe of interest, my language setting is DE (germany), because it states something about Date):
Spoiler: show



Informationen über das Aufrufen von JIT-Debuggen
anstelle dieses Dialogfelds finden Sie am Ende dieser Meldung.

************** Ausnahmetext **************
System.InvalidCastException: Ungültige Konvertierung von der Zeichenfolge 09.10.2017 09.10.2017 11:12:01 in Typ Date.
bei Microsoft.VisualBasic.CompilerServices.Conversions.ToDate(String Value)
bei Tease_AI.Form1.TeaseAIClock_Tick(Object sender, EventArgs e) in G:\Dario\Tease-AI2\Tease AI\Form1.vb:Zeile 18446.
bei System.Windows.Forms.Timer.OnTick(EventArgs e)
bei Tease_AI.teaseAI_Timer.OnTick(EventArgs e) in G:\Dario\Tease-AI2\Tease AI\Classes\teaseAI_Timer.vb:Zeile 50.
bei System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
bei System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Geladene Assemblys **************
mscorlib
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/mscorlib.dll.
----------------------------------------
Tease AI
Assembly-Version: 0.54.9.0.
Win32-Version: 1.0.0.0.
CodeBase: file:///F:/teaseAItesting/TeaseAI/Tease%20AI%200.54.9/Tease%20AI.exe.
----------------------------------------
System.Core
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll.
----------------------------------------
System
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll.
----------------------------------------
Microsoft.VisualBasic
Assembly-Version: 10.0.0.0.
Win32-Version: 14.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll.
----------------------------------------
System.Windows.Forms
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll.
----------------------------------------
System.Drawing
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1068.2 built by: NETFXREL3STAGE.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll.
----------------------------------------
System.Configuration
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll.
----------------------------------------
System.Xml
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1067.0 built by: NETFXREL3STAGE.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll.
----------------------------------------
System.Runtime.Remoting
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll.
----------------------------------------
System.Speech
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Speech/v4.0_4.0.0.0__31bf3856ad364e35/System.Speech.dll.
----------------------------------------
AxInterop.WMPLib
Assembly-Version: 1.0.0.0.
Win32-Version: 1.0.0.0.
CodeBase: file:///F:/teaseAItesting/TeaseAI/Tease%20AI%200.54.9/AxInterop.WMPLib.DLL.
----------------------------------------
Interop.WMPLib
Assembly-Version: 1.0.0.0.
Win32-Version: 1.0.0.0.
CodeBase: file:///F:/teaseAItesting/TeaseAI/Tease%20AI%200.54.9/Interop.WMPLib.DLL.
----------------------------------------
mscorlib.resources
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/mscorlib.resources/v4.0_4.0.0.0_de_b77a5c561934e089/mscorlib.resources.dll.
----------------------------------------
System.Windows.Forms.resources
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms.resources/v4.0_4.0.0.0_de_b77a5c561934e089/System.Windows.Forms.resources.dll.
----------------------------------------
Accessibility
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Accessibility/v4.0_4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll.
----------------------------------------
Microsoft.GeneratedCode
Assembly-Version: 1.0.0.0.
Win32-Version: 4.6.1067.0 built by: NETFXREL3STAGE.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll.
----------------------------------------
Microsoft.mshtml
Assembly-Version: 7.0.3300.0.
Win32-Version: 7.0.3300.0.
CodeBase: file:///C:/Windows/assembly/GAC/Microsoft.mshtml/7.0.3300.0__b03f5f7f11d50a3a/Microsoft.mshtml.dll.
----------------------------------------
Microsoft.VisualBasic.resources
Assembly-Version: 10.0.0.0.
Win32-Version: 14.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic.resources/v4.0_10.0.0.0_de_b03f5f7f11d50a3a/Microsoft.VisualBasic.resources.dll.
----------------------------------------

************** JIT-Debuggen **************
Um das JIT-Debuggen (Just-In-Time) zu aktivieren, muss in der
Konfigurationsdatei der Anwendung oder des Computers
(machine.config) der jitDebugging-Wert im Abschnitt system.windows.forms festgelegt werden.
Die Anwendung muss mit aktiviertem Debuggen kompiliert werden.

Zum Beispiel:

<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>

Wenn das JIT-Debuggen aktiviert ist, werden alle nicht behandelten
Ausnahmen an den JIT-Debugger gesendet, der auf dem
Computer registriert ist, und nicht in diesem Dialogfeld behandelt.
Then in a chat I got this error (this was without the compatibility mode, not tested with it yet):

ERROR: Tease AI did not return a valid Hold the Edge Taunt from file: G:\TeaseAI\Tease AI 0.54.9\Scripts\Wicked Tease\Stroke\HoldTheEdge\GroupHoldTheEdge.txt

... and the error log from above:
Spoiler: show

###################################################################
Date/Time: 2017-10-08 18:44:18
Version: 0.54.9.0
Title: HoldEdgeTauntTimer.Tick
Message: Tease AI did not return a valid Hold the Edge Taunt from file: G:\TeaseAI\Tease AI 0.54.9\Scripts\Wicked Tease\Stroke\HoldTheEdge\GroupHoldTheEdge.txt
Exceptions:
================================== Exception =====================================
Message: Der Index lag außerhalb des Bereichs. Er darf nicht negativ und kleiner als die Auflistung sein.
Parametername: index
Typ: System.ArgumentOutOfRangeException
StackTrace:
bei System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
bei Tease_AI.Form1.HoldEdgeTauntTimer_Tick(Object sender, EventArgs e) in C:\Users\Elijah\Documents\Visual Studio 2010\Projects\Tease-AI\Tease AI\Form1.vb:Zeile 15916.


~~~~~~~~~~~~~~~~~~~~Application.StackTrace~~~~~~~~~~~~~~~~~~~~~~~~~
bei Tease_AI.Form1.HoldEdgeTauntTimer_Tick(Object sender, EventArgs e) in C:\Users\Elijah\Documents\Visual Studio 2010\Projects\Tease-AI\Tease AI\Form1.vb:Zeile 15946.
bei System.Windows.Forms.Timer.OnTick(EventArgs e)
bei Tease_AI.teaseAI_Timer.OnTick(EventArgs e) in C:\Users\Elijah\Documents\Visual Studio 2010\Projects\Tease-AI\Tease AI\Classes\teaseAI_Timer.vb:Zeile 50.
bei System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
bei System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
bei System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
bei System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
bei System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
bei System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
bei Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun()
bei Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.DoApplicationModel()
bei Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run(String[] commandLine)
bei Tease_AI.My.MyApplication.Main(String[] Args) in 17d14f5c-a337-4978-8281-53493378c1071.vb:Zeile 82.

And at the end of the chat, I was supposed to open a 'downloaded' file and when I clicked 'open' I got this error (also without the compatibility mode):
Spoiler: show

Informationen über das Aufrufen von JIT-Debuggen
anstelle dieses Dialogfelds finden Sie am Ende dieser Meldung.

************** Ausnahmetext **************
System.InvalidOperationException: Der Prozess kann nicht gestartet werden, da ein Dateiname nicht angegeben wurde.
bei System.Diagnostics.Process.Start()
bei Tease_AI.Form1.ShellExecute(String File) in C:\Users\Elijah\Documents\Visual Studio 2010\Projects\Tease-AI\Tease AI\Form1.vb:Zeile 16219.
bei Tease_AI.Form1.BTNFileTransferOpen_Click(Object sender, EventArgs e) in C:\Users\Elijah\Documents\Visual Studio 2010\Projects\Tease-AI\Tease AI\Form1.vb:Zeile 16226.
bei System.Windows.Forms.Control.OnClick(EventArgs e)
bei System.Windows.Forms.Button.OnClick(EventArgs e)
bei System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
bei System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
bei System.Windows.Forms.Control.WndProc(Message& m)
bei System.Windows.Forms.ButtonBase.WndProc(Message& m)
bei System.Windows.Forms.Button.WndProc(Message& m)
bei System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
bei System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
bei System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Geladene Assemblys **************
mscorlib
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll.
----------------------------------------
Tease AI
Assembly-Version: 0.54.9.0.
Win32-Version: 1.0.0.0.
CodeBase: file:///G:/TeaseAI/Tease%20AI%200.54.9/Tease%20AI.exe.
----------------------------------------
System.Core
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll.
----------------------------------------
System
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll.
----------------------------------------
Microsoft.VisualBasic
Assembly-Version: 10.0.0.0.
Win32-Version: 14.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll.
----------------------------------------
System.Windows.Forms
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll.
----------------------------------------
System.Drawing
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1068.2 built by: NETFXREL3STAGE.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll.
----------------------------------------
System.Configuration
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll.
----------------------------------------
System.Xml
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1067.0 built by: NETFXREL3STAGE.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll.
----------------------------------------
System.Runtime.Remoting
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll.
----------------------------------------
System.Speech
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Speech/v4.0_4.0.0.0__31bf3856ad364e35/System.Speech.dll.
----------------------------------------
AxInterop.WMPLib
Assembly-Version: 1.0.0.0.
Win32-Version: 1.0.0.0.
CodeBase: file:///G:/TeaseAI/Tease%20AI%200.54.9/AxInterop.WMPLib.DLL.
----------------------------------------
Interop.WMPLib
Assembly-Version: 1.0.0.0.
Win32-Version: 1.0.0.0.
CodeBase: file:///G:/TeaseAI/Tease%20AI%200.54.9/Interop.WMPLib.DLL.
----------------------------------------
mscorlib.resources
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/mscorlib.resources/v4.0_4.0.0.0_de_b77a5c561934e089/mscorlib.resources.dll.
----------------------------------------
System.Windows.Forms.resources
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms.resources/v4.0_4.0.0.0_de_b77a5c561934e089/System.Windows.Forms.resources.dll.
----------------------------------------
Accessibility
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Accessibility/v4.0_4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll.
----------------------------------------
Microsoft.GeneratedCode
Assembly-Version: 1.0.0.0.
Win32-Version: 4.6.1067.0 built by: NETFXREL3STAGE.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll.
----------------------------------------
Microsoft.mshtml
Assembly-Version: 7.0.3300.0.
Win32-Version: 7.0.3300.0.
CodeBase: file:///C:/Windows/assembly/GAC/Microsoft.mshtml/7.0.3300.0__b03f5f7f11d50a3a/Microsoft.mshtml.dll.
----------------------------------------
System.resources
Assembly-Version: 4.0.0.0.
Win32-Version: 4.6.1055.0 built by: NETFXREL2.
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.resources/v4.0_4.0.0.0_de_b77a5c561934e089/System.resources.dll.
----------------------------------------

************** JIT-Debuggen **************
Um das JIT-Debuggen (Just-In-Time) zu aktivieren, muss in der
Konfigurationsdatei der Anwendung oder des Computers
(machine.config) der jitDebugging-Wert im Abschnitt system.windows.forms festgelegt werden.
Die Anwendung muss mit aktiviertem Debuggen kompiliert werden.

Zum Beispiel:

<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>

Wenn das JIT-Debuggen aktiviert ist, werden alle nicht behandelten
Ausnahmen an den JIT-Debugger gesendet, der auf dem
Computer registriert ist, und nicht in diesem Dialogfeld behandelt.

Any idea what the problem is?
(I have some more errors when I tested with HoT4, but I have the feeling that there is just one problem that causes all these errors, once that is solved, I guess also the problems with HoT4 would be gone.)

Best greetings,
markus
User avatar
malibu900
Explorer At Heart
Explorer At Heart
Posts: 214
Joined: Wed Oct 17, 2012 5:19 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch
Dom/me(s): Don't have one but wouldn't mind an online domme if anyone is interested...
Location: South Carolina

Re: Tease AI Bug Report Thread

Post by malibu900 »

Mat wrote: Wed Sep 16, 2015 2:06 am I posted this in the other thread a few weeks ago and thought I should post it here..

During "too much hentai" it only showed hentai and then when it stopped on hentai it acted as if it had stopped on a different image and made me edge..

Also with patch 46, the "let me stop" interrupt still doesn't unlock the image slideshow for me..
I'm hitting the same problem too except for me it just automatically treats every image as hentai. I could bust my balls all day long and it won't recognize other pictures as what they are (I've only seen tits and ass so far).

Also, I tried to select tits when it gave me the option but wouldn't accept the answer. I had to choose ass and then when I land on an ass it says it's hentai.

What to do??
That's what she said
User avatar
avatarbr
Experimentor
Experimentor
Posts: 1239
Joined: Fri Aug 18, 2006 3:33 am
Gender: Male
Sexual Orientation: Straight

Re: Tease AI Bug Report Thread

Post by avatarbr »

malibu900 wrote: Tue Oct 17, 2017 6:54 pm
Mat wrote: Wed Sep 16, 2015 2:06 am I posted this in the other thread a few weeks ago and thought I should post it here..

During "too much hentai" it only showed hentai and then when it stopped on hentai it acted as if it had stopped on a different image and made me edge..

Also with patch 46, the "let me stop" interrupt still doesn't unlock the image slideshow for me..
I'm hitting the same problem too except for me it just automatically treats every image as hentai. I could bust my balls all day long and it won't recognize other pictures as what they are (I've only seen tits and ass so far).

Also, I tried to select tits when it gave me the option but wouldn't accept the answer. I had to choose ass and then when I land on an ass it says it's hentai.

What to do??
1885 made this module a long time ago....maybe one of the patches broke that.
Mat
Explorer At Heart
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

Post by Mat »

malibu900 wrote: Tue Oct 17, 2017 6:54 pm I'm hitting the same problem too
[..]
What to do??
Wow it's been a long time since I logged into this site.. I just got an email that you'd quoted me..

I can't remember if I fixed the module or not, I think I just unticked it, so it didn't load.

I haven't used TeaseAI in a while, partly because of bugs like this, I got to a point where I never got to finish a session, but mostly because I moved my laptop over to Linux.. So I can't really help much.
avatarbr wrote: Wed Oct 18, 2017 12:35 am [..]
1885 made this module a long time ago....maybe one of the patches broke that.
From what I remember, I think that module was meant to be a basic oneto show what could be done with the new "get a random image" function, or something along those lines.

I'm pretty sure that the function was something like getRandomImage(category1, category2, category3) and would pick one of the categories, then a random image from them. Except, as you said, after an update, it always said the image was from a category it wasn't.
Spielers
Explorer At Heart
Explorer At Heart
Posts: 309
Joined: Mon Jan 09, 2017 8:26 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Tease AI Bug Report Thread

Post by Spielers »

Hi I use 55.3 but the command @ShowImage doesn't work any more. maybe because i have only url files, but in previous versions it work great. at the moment when i start tease ai it always shows error image after the @ShowImage command, when i go to settings images and click on a url file it loads a minutes and show me an image, after this step @ShowImages work untile i cloase Tease ai. by reopening tease ai it is the same again ( no image, only after opening settings and click on the url
Daragorn
Explorer At Heart
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

Post by Daragorn »

Dont know whats causing your issue, but to me @showimage works perfectly fine both with url and local images
Post Reply