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
markus
Explorer At Heart
Explorer At Heart
Posts: 656
Joined: Tue Nov 18, 2008 11:09 pm

Re: Tease AI Bug Report Thread

Post by markus »

Kajinek010 wrote: Tue Jan 10, 2023 5:43 pm Hi, I'm using Tease AI-fury latest version and I got this error. Twice in the same place. When she asking about watching porn. Can you help me please?
Hi!

Do you play the PERSONALITY Fury, or do you play another personality with the Fury-Patch?

Can you please upload that screenshot of the problem to this forum instead of linking to some strange site which I definitely will not click on that link.

When this error happens, hit @ in the chat, to get some more info about which script and part of the script you are in and post that info as well.


Best greetings,
Markus
Kajinek010
Explorer
Explorer
Posts: 7
Joined: Sat May 07, 2022 7:23 pm

Re: Tease AI Bug Report Thread

Post by Kajinek010 »

Sorry, my mistake, I gave you little information.
I'm using Miss blue personatily with fury patch latest version.

Spoiler: show
::: TYPO :::
::: FileText = E:\Downloads\Tease AI Fury 3.5.2020\Scripts\MissBlue\Custom\Play.txt ::: LineVal = 21
::: TauntText = E:\Downloads\Tease AI Fury 3.5.2020\Scripts\MissBlue\Stroke\StrokeTaunts_1.txt ::: LineVal = 8
::: ResponseFile = ::: LineVal = 0
Sorry i don't know how to add picture here. So i gave it to mega, with another 2 files, i don't know if you need them.
https://mega.nz/file/JmoSVIzK#lNZvZ1qIc ... XP96hnBHVI
https://mega.nz/file/Z3hUUZYQ#uijMUJeQc ... 10Y_PAtiI8
https://mega.nz/file/h75HyRDb#fhztGhN3Q ... CK6DFEZikQ
User avatar
markus
Explorer At Heart
Explorer At Heart
Posts: 656
Joined: Tue Nov 18, 2008 11:09 pm

Re: Tease AI Bug Report Thread

Post by markus »

Hi again! :-)

Ok, looks like you don't have what is called 'tagged local images' with the matching 'tags'.

There are 3 lines in the script, see the commands with the leading '@':

No more peeking at pretty girls @ImageTag(TagSoloF)
No more checking out lesbians making out @ImageTag(TagLesbian,TagKissing)
No more drooling over girls giving blowjobs @ShowBlowjobImage

The program wants to show you pictures with those 'tags' (SoloF,Lesbian,Kissing).

Now you would have to tag local pictures to make this work, I would recommend to take your time for searching really good pictures, and also take your time to tag them.

To tag them, go to 'Settings' -> 'Tagging' -> 'Local Tags'
There you select a folder (you can do this for more folders), go through the pictures and give them those 'tags'.
(I know this takes a while but overall it's worth the effort).


Here is a list I once made for my Alice-project, I am not sure if you will need EVERY tag listed here for Miss Blue, but to be on the safe-side you should have at least one picture tagged with the following tags:
Spoiler: show
@TagBodyFeet
@TagStrapon
@TagAnalSex
@TagBodyFace
@TagSoloF
@TagCumEating
@TagCumshot
@TagLesbian
@TagKissing
@TagMasturbation
@TagRimming
@TagCunnilingus
@TagBodyLegs
@TagHandjob
@TagBodyPussy
@TagArtwork
@TagOutdoors
@TagBisexual
@TagBodyCock
@TagBodyBalls
@TagBath
@TagShower
@TagChastity
@TagBondage
@TagFemsub
@TagGag
@TagBlowjob
@TagBlindfold
@TagSM
@TagAnalToy
@TagCockTorture
@TagBallTorture
@TagBodyNipples
@TagFacesitting
@TagBodyTits
@TagHardcore
@TagWhipping
@TagGay
@Tag2F
@Tag3M
@Tag1M
@TagSoloM
@TagMaledom
@TagMalesub
@TagFemdom
@TagBodyAss

Also make sure that you have folders selected in the settings -> Images -> Genre Images for each genre there.


Good luck and best greetings, :wave:
Markus
UrSlaveInGB
Explorer
Explorer
Posts: 5
Joined: Mon Nov 12, 2012 1:30 am

Re: Tease AI Bug Report Thread

Post by UrSlaveInGB »

Not sure if this is the right place to post this, but I am attempting to run TeaseAI in a container with an HTML5 desktop environment for portability.

I have been able to get TAI to start, kind of. It fails downloading dependencies on the first run.

Place this Dockerfile in your TeaseAI Java folder and it will copy your TeaseAI into the image.
Alternatively, remove the copy . /app/ line and bind mount your TeaseAI folder to /app/

I use Podman, but Docker is a drop-in.

Code: Select all

podman build -t teaseai:latest .

Code: Select all

podman run --replace --name teaseai -p 5800:5800 teaseai:latest
Any help would be greatly appreciated, Java is not something I am super familiar with.

Code: Select all

# Pull base image.
FROM jlesage/baseimage-gui:debian-11

# Acquire OpenJDK14
ADD https://download.java.net/java/GA/jdk14.0.2/205943a0976c4ed48cb16f1043c5c647/12/GPL/openjdk-14.0.2_linux-x64_bin.tar.gz /opt/openjdk-14.0.2_linux-x64_bin.tar.gz

# Install OpenJDK14
RUN tar xf /opt/openjdk-14.0.2_linux-x64_bin.tar.gz --directory /opt

# Install TeaseAI
COPY . /app/

# Initialize Application
RUN echo "#!/bin/bash" > /startapp.sh \
    && echo "cd /app" >> /startapp.sh \
    && echo "export JAVA_HOME=/opt/jdk-14.0.2" >> /startapp.sh \
    && echo "export PATH=\$PATH:\$JAVA_HOME/bin" >> /startapp.sh \
    && echo "exec java -jar /app/TeaseAI.jar" >> /startapp.sh \
    && chmod +x /startapp.sh \
    && chmod -R u+rwX,g+rwX,o+rwX /app

# Set the name of the application.
#RUN set-cont-env APP_NAME "TeaseAI"
Here are the logs when it fails.
Spoiler: show
[services.d] starting app...
[app] starting DockerApp...
[services.d] done.
02:56:08 AM INFO: Starting up TAJ Classloader...
02:56:08 AM INFO: Classes injected. Starting up TAJ...
02:56:08 AM INFO: Checking libraries for updates...
02:56:09 AM INFO: Missing library gson-2.6.2.jar queued for fetch.
02:56:09 AM INFO: Missing library commons-collections-3.2.1.jar queued for fetch.
02:56:09 AM INFO: Missing library commons-configuration-1.7.jar queued for fetch.
02:56:09 AM INFO: Missing library commons-lang-2.6.jar queued for fetch.
02:56:09 AM INFO: Missing library commons-logging-1.1.1.jar queued for fetch.
02:56:09 AM INFO: Missing library guava-22.0.jar queued for fetch.
02:56:09 AM INFO: Missing library httpclient-4.3.6.jar queued for fetch.
02:56:09 AM INFO: Missing library httpcore-4.3.3.jar queued for fetch.
02:56:09 AM INFO: Missing library httpmime-4.3.3.jar queued for fetch.
02:56:09 AM INFO: Missing library json-20140107.jar queued for fetch.
02:56:09 AM INFO: Missing library jsoup-1.8.1.jar queued for fetch.
02:56:09 AM INFO: Missing library marytts-builder-5.2-jar-with-dependencies.jar queued for fetch.
02:56:09 AM INFO: Missing library marytts-lang-en-5.2.jar queued for fetch.
02:56:09 AM INFO: Missing library voice-dfki-prudence-hsmm-5.2.jar queued for fetch.
02:56:09 AM INFO: Missing library estimAPI.jar queued for fetch.
02:56:09 AM INFO: Library uber-EstimAPI-0.0.1-SNAPSHOT.jar is only local but keeping and not deleting.
11/04/2023 02:56:17 Got connection from client 127.0.0.1
11/04/2023 02:56:17 other clients:
11/04/2023 02:56:17 Got 'ws' WebSockets handshake
11/04/2023 02:56:17 Got protocol: binary
11/04/2023 02:56:17 - webSocketsHandshake: using binary/raw encoding
11/04/2023 02:56:17 - WebSockets client version hybi-13
11/04/2023 02:56:17 Disabled X server key autorepeat.
11/04/2023 02:56:17 to force back on run: 'xset r on' (3 times)
11/04/2023 02:56:17 incr accepted_client=1 for 127.0.0.1:53440 sock=11
11/04/2023 02:56:17 Client Protocol Version 3.8
11/04/2023 02:56:17 Protocol version sent 3.8, using 3.8
11/04/2023 02:56:17 rfbProcessClientSecurityType: executing handler for type 1
11/04/2023 02:56:17 rfbProcessClientSecurityType: returning securityResult for client rfb version >= 3.8
11/04/2023 02:56:17 copy_tiles: allocating first_line at size 41
11/04/2023 02:56:17 Pixel format for client 127.0.0.1:
11/04/2023 02:56:17 32 bpp, depth 24, little endian
11/04/2023 02:56:17 true colour: max r 255 g 255 b 255, shift r 16 g 8 b 0
11/04/2023 02:56:17 no translation needed
11/04/2023 02:56:17 Enabling NewFBSize protocol extension for client 127.0.0.1
11/04/2023 02:56:17 Enabling full-color cursor updates for client 127.0.0.1
11/04/2023 02:56:17 Using image quality level 6 for client 127.0.0.1
11/04/2023 02:56:17 Using JPEG subsampling 0, Q79 for client 127.0.0.1
11/04/2023 02:56:17 Using compression level 9 for client 127.0.0.1
11/04/2023 02:56:17 Enabling LastRect protocol extension for client 127.0.0.1
11/04/2023 02:56:17 rfbProcessClientNormalMessage: ignoring unsupported encoding type Enc(0xFFFFFECC)
11/04/2023 02:56:17 Using tight encoding for client 127.0.0.1
11/04/2023 02:56:18 client_set_net: 127.0.0.1 0.0009
11/04/2023 02:56:18 created xdamage object: 0x20002c
11/04/2023 02:56:26 created selwin: 0x20002d
11/04/2023 02:56:26 called initialize_xfixes()
Exception in thread "main" java.lang.reflect.InvocationTargetException
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:564)
at me.goddragon.teaseai.utils.classloader.JarRsrcLoader.main(JarRsrcLoader.java:65)
Caused by: java.lang.NullPointerException
at me.goddragon.teaseai.Main.restart(Main.java:147)
at me.goddragon.teaseai.utils.update.UpdateHandler.checkLibraries(UpdateHandler.java:151)
at me.goddragon.teaseai.Main.main(Main.java:23)
... 5 more
[services.d] stopping services
User avatar
markus
Explorer At Heart
Explorer At Heart
Posts: 656
Joined: Tue Nov 18, 2008 11:09 pm

Re: Tease AI Bug Report Thread

Post by markus »

UrSlaveInGB wrote: Mon Apr 24, 2023 12:19 am Not sure if this is the right place to post this,
Hi!

Nope, not really, this thread is meant for the original Tai, not for Tai Java (or Awakening btw.) ;-)

Would be better here:
[Tease Program] Tease-AI Java (1.4)
viewtopic.php?t=20717

Sorry, I can't be of any further help, Java isn't my thing.

Good luck and best greetings, :wave:
Markus
UrSlaveInGB
Explorer
Explorer
Posts: 5
Joined: Mon Nov 12, 2012 1:30 am

Re: Tease AI Bug Report Thread

Post by UrSlaveInGB »

markus wrote: Mon Apr 24, 2023 6:30 pm Sorry, I can't be of any further help, Java isn't my thing.
It's not mine either :lol:
But, thanks, I'll try there.
Wei Wuxian
Curious Newbie
Curious Newbie
Posts: 4
Joined: Sat Jun 24, 2023 7:05 pm

Re: Tease AI Bug Report Thread

Post by Wei Wuxian »

Hello
I'm kind of new to this but I've tried setting up TAI but I can't seem to get the videos to work. Any time there is a video the application crashes with no errors.
Thanks in advance!
Post Reply

Who is online

Users browsing this forum: No registered users and 74 guests