GuideMe (TeaseMe v2.0) - Current Build 0.4.4

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
PlayfulGuy
Explorer At Heart
Explorer At Heart
Posts: 792
Joined: Sat Jul 07, 2012 10:08 pm
Gender: Male
Sexual Orientation: Bisexual/Bi-Curious
I am a: Switch
Dom/me(s): No domme
Sub/Slave(s): No sub
Location: British Columbia, Canada

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Post by PlayfulGuy »

Trusfrated wrote: Wed Nov 30, 2022 5:44 am
Spoiler: show
PlayfulGuy wrote: Tue Nov 29, 2022 9:07 pm
lawman5297 wrote: Tue Nov 29, 2022 8:48 pm

PlayfulGuy, I did not know about this. Are there other hotkeys or a list of them somewhere? Very helpful. THX!
That's the only one I know of. If there are others I never knew them or have forgotten them.
ALT+M will toggle the Menu bar, helping to maximize screen space for the tease, too.
Sweet! Thanks for that!

PG
lawman5297
Explorer At Heart
Explorer At Heart
Posts: 156
Joined: Tue May 30, 2017 1:18 pm
Gender: Male
Sexual Orientation: Straight
I am a: None of the above

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Post by lawman5297 »

Hey @PlayfulGuy, Question once again on Text element and using if-set and if-not-set attributes. Can you specify more that two if-not-set by using pipes?

Code: Select all

<Text if-set="4" if-not-set="1|2|3" "text stuff" </Text>
User avatar
PlayfulGuy
Explorer At Heart
Explorer At Heart
Posts: 792
Joined: Sat Jul 07, 2012 10:08 pm
Gender: Male
Sexual Orientation: Bisexual/Bi-Curious
I am a: Switch
Dom/me(s): No domme
Sub/Slave(s): No sub
Location: British Columbia, Canada

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Post by PlayfulGuy »

lawman5297 wrote: Thu Jan 05, 2023 7:13 pm Hey @PlayfulGuy, Question once again on Text element and using if-set and if-not-set attributes. Can you specify more that two if-not-set by using pipes?

Code: Select all

<Text if-set="4" if-not-set="1|2|3" "text stuff" </Text>
Yes, but no. The if-set and if-not-set are a little tricky to get right.
The pipe symbol is the OR operator, and the plus sign is the AND operator, and if a node has both an if-set and if-not-set clause they get AND'ed together.

So in your example, the result is equivalent to

Code: Select all

if-set 4 AND (if-not-set 1 OR  if-not-set 2 OR if-not-set 3)
so that second part is almost always true, and the node displays if 4 is set and any one of the others is NOT.

You probably want

Code: Select all

if-set="4" if-not-set="1+2+3" "text stuff"
which is equivalent to

Code: Select all

if-set 4 AND (if-not-set 1 AND  if-not-set 2 AND if-not-set 3)
so it only displays when 4 is set and NONE of the others are.


When testing multiple flags at once I find it helps to read them out kind of longhand that way to figure out what it really means.

Hope that helps, and sorry for the delay replying. The site is so f'ing slow I've not been bothering to even come by lately.

PG
bootslicker
Explorer
Explorer
Posts: 34
Joined: Fri Dec 06, 2019 10:46 am

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Post by bootslicker »

Hello!
Thank You for GuideMe,
I have a question.
Is there any Tool or Editor (like eos editor here on milovana) for develop fast Tease offline for GuideMe ?

I want to add that I have downloaded this tease
https://milovana.com/webteases/showtease.php?id=63434
with the last version of Milodownloader the "0.96g" and it doesn't work with last version of GuideMe 0.4.5
User avatar
PlayfulGuy
Explorer At Heart
Explorer At Heart
Posts: 792
Joined: Sat Jul 07, 2012 10:08 pm
Gender: Male
Sexual Orientation: Bisexual/Bi-Curious
I am a: Switch
Dom/me(s): No domme
Sub/Slave(s): No sub
Location: British Columbia, Canada

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Post by PlayfulGuy »

bootslicker wrote: Sat Apr 08, 2023 11:48 am Hello!
Thank You for GuideMe,
I have a question.
Is there any Tool or Editor (like eos editor here on milovana) for develop fast Tease offline for GuideMe ?
Not sure if you mean to develop them fast, or that they'll run fast, but...

Years ago philo wrote this offline editor for Teaseme.
You could use that to get the basic strructure built, but it doesn't support GuideMe specific features.

There aren't any others that I'm aware of. But you can use the EOS editor and then download it with the downloader like you did. If you avoid complex javascript the downloader does an excellent job.

Personally I use PsPad, a free code editor that supports macros, scripts etc. It has it's issues but I like it anyway. Other than that find a good text editor like Notepad++ etc.

Someday someone will build a new version of the offline editor. Maybe.
bootslicker wrote: Sat Apr 08, 2023 11:48 am I want to add that I have downloaded this tease
https://milovana.com/webteases/showtease.php?id=63434
with the last version of Milodownloader the "0.96g" and it doesn't work with last version of GuideMe 0.4.5
You should report problems with teases downloaded using the downloader in the thread for it (link in my signature below). GuideMe and the downloader are two separate things developed by different people. I'll make a note of it and have a look tomorrow though.

PG
User avatar
PlayfulGuy
Explorer At Heart
Explorer At Heart
Posts: 792
Joined: Sat Jul 07, 2012 10:08 pm
Gender: Male
Sexual Orientation: Bisexual/Bi-Curious
I am a: Switch
Dom/me(s): No domme
Sub/Slave(s): No sub
Location: British Columbia, Canada

Wheel Of Fortune for GuideMe

Post by PlayfulGuy »

Have you ever wished you could have a Wheel Of Fortune in your tease? Well now you can!

Download the demo tease here: Mega link

The demo includes several examples and everything you need to add various wheels of chance to your latest creation.
This is based on a now defunct website that was online years ago. I downloaded the code hoping to get around to doing this one day, and that day finally arrived.

Enjoy!

Wheel of Fortune.jpg
Wheel of Fortune.jpg (100.54 KiB) Viewed 3974 times
User avatar
PlayfulGuy
Explorer At Heart
Explorer At Heart
Posts: 792
Joined: Sat Jul 07, 2012 10:08 pm
Gender: Male
Sexual Orientation: Bisexual/Bi-Curious
I am a: Switch
Dom/me(s): No domme
Sub/Slave(s): No sub
Location: British Columbia, Canada

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Post by PlayfulGuy »

bootslicker wrote: Sat Apr 08, 2023 11:48 am I want to add that I have downloaded this tease
https://milovana.com/webteases/showtease.php?id=63434
with the last version of Milodownloader the "0.96g" and it doesn't work with last version of GuideMe 0.4.5
I downloaded that tease with downloader version 0.96g and opened it in GuideMe 4.5 and as far as I can tell (I did limited testing) it seems to work just fine. Please post in the downloader thread with more detail on what seems to be the issue.

PG
bootslicker
Explorer
Explorer
Posts: 34
Joined: Fri Dec 06, 2019 10:46 am

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Post by bootslicker »

PlayfulGuy wrote: Mon Apr 10, 2023 5:13 pm
bootslicker wrote: Sat Apr 08, 2023 11:48 am I want to add that I have downloaded this tease
https://milovana.com/webteases/showtease.php?id=63434
with the last version of Milodownloader the "0.96g" and it doesn't work with last version of GuideMe 0.4.5
I downloaded that tease with downloader version 0.96g and opened it in GuideMe 4.5 and as far as I can tell (I did limited testing) it seems to work just fine. Please post in the downloader thread with more detail on what seems to be the issue.

PG
Hello!
sorry for later reply.
Please try at least 3/4 mins the web on EOS and the downloaded for Guideme, you can see that navigate to pages doesn't show continue button, you have to wait and not laod the picture of the girl, please do a compare 1:1 it's difficoult to explain but You'll notice after a while almost immediately.
labrat
Explorer
Explorer
Posts: 12
Joined: Sun Sep 20, 2020 1:33 am

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Post by labrat »

I've found something that confuses me. When I run the following page the output doesn't make sense to me. Can someone explain why it does this.

Code: Select all

    <Page id="start">
        <javascript>
        <![CDATA[
            function ArgTest(a, b)
            {
                jscriptLog("a = " + a + " b = " + b);
            }

            function pageLoad()
            {
                var x = 3;
                var y = 4;
                ArgTest(x, y);
                overRide.addButton("start", "Dummy", "", "", "ArgTest(x, y)", "");
            }
        ]]>
        </javascript>
    </Page>
The output I get copied from jscript.log is::

a = 3 b = 4
a = x b = y

Thanks for any help anyone can provide.

Edit:
I have found a workaround for what I'm trying to do, so this isn't anything critical for me.
User avatar
PlayfulGuy
Explorer At Heart
Explorer At Heart
Posts: 792
Joined: Sat Jul 07, 2012 10:08 pm
Gender: Male
Sexual Orientation: Bisexual/Bi-Curious
I am a: Switch
Dom/me(s): No domme
Sub/Slave(s): No sub
Location: British Columbia, Canada

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Post by PlayfulGuy »

labrat wrote: Thu Apr 27, 2023 6:07 am I've found something that confuses me. When I run the following page the output doesn't make sense to me. Can someone explain why it does this.

Code: Select all

    <Page id="start">
        <javascript>
        <![CDATA[
            function ArgTest(a, b)
            {
                jscriptLog("a = " + a + " b = " + b);
            }

            function pageLoad()
            {
                var x = 3;
                var y = 4;
                ArgTest(x, y);
                overRide.addButton("start", "Dummy", "", "", "ArgTest(x, y)", "");
            }
        ]]>
        </javascript>
    </Page>
The output I get copied from jscript.log is::

a = 3 b = 4
a = x b = y

Thanks for any help anyone can provide.

Edit:
I have found a workaround for what I'm trying to do, so this isn't anything critical for me.
The code is actually producing exactly what you asked for. In your javascript

Code: Select all

            overRide.addButton("start", "Dummy", "", "", "ArgTest(x, y)", "");
the javascript argument "ArgTest(x,y)" is a string, which ends up passing the string arguments "x" and "y" to your function.
To have the values of the arguments passed you need to build the javascript argument like

Code: Select all

"ArgTest(" + x + "," + y + ")"
which inserts the values of x and y into the string passed to addButton.
So the addbutton call would look like

Code: Select all

overRide.addButton("start", "Dummy", "", "", "ArgTest(" + x + "," + y + ")", "");
One oddity you may find is that the numbers also then get passed to your function as strings, so if you need them to be numbers you may need to modify ArgsTest() as follows:

Code: Select all

    function ArgTest(a, b)
    {
      	a = parseInt(a);
      	b = parseInt(b);
        jscriptLog("a = " + a + " b = " + b);
     }
Without that strange things happen. For example, if the arguments are strings and you say
c = a + b
you might get c = "34" (a string concatenation) instead of c = 7 (a mathematical addition).

Hope that helps

PG
labrat
Explorer
Explorer
Posts: 12
Joined: Sun Sep 20, 2020 1:33 am

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Post by labrat »

PlayfulGuy wrote: Sat Apr 29, 2023 6:32 pm
labrat wrote: Thu Apr 27, 2023 6:07 am I've found something that confuses me. When I run the following page the output doesn't make sense to me. Can someone explain why it does this.

Code: Select all

    <Page id="start">
        <javascript>
        <![CDATA[
            function ArgTest(a, b)
            {
                jscriptLog("a = " + a + " b = " + b);
            }

            function pageLoad()
            {
                var x = 3;
                var y = 4;
                ArgTest(x, y);
                overRide.addButton("start", "Dummy", "", "", "ArgTest(x, y)", "");
            }
        ]]>
        </javascript>
    </Page>
The output I get copied from jscript.log is::

a = 3 b = 4
a = x b = y

Thanks for any help anyone can provide.

Edit:
I have found a workaround for what I'm trying to do, so this isn't anything critical for me.
The code is actually producing exactly what you asked for. In your javascript

Code: Select all

            overRide.addButton("start", "Dummy", "", "", "ArgTest(x, y)", "");
the javascript argument "ArgTest(x,y)" is a string, which ends up passing the string arguments "x" and "y" to your function.
To have the values of the arguments passed you need to build the javascript argument like

Code: Select all

"ArgTest(" + x + "," + y + ")"
which inserts the values of x and y into the string passed to addButton.
So the addbutton call would look like

Code: Select all

overRide.addButton("start", "Dummy", "", "", "ArgTest(" + x + "," + y + ")", "");
One oddity you may find is that the numbers also then get passed to your function as strings, so if you need them to be numbers you may need to modify ArgsTest() as follows:

Code: Select all

    function ArgTest(a, b)
    {
      	a = parseInt(a);
      	b = parseInt(b);
        jscriptLog("a = " + a + " b = " + b);
     }
Without that strange things happen. For example, if the arguments are strings and you say
c = a + b
you might get c = "34" (a string concatenation) instead of c = 7 (a mathematical addition).

Hope that helps

PG
Thanks, that was the problem. Doesn't seem intuitively obvious to me, but after this I'll probably recognize the problem quicker.

You're also right in that I'll need the parseInt function when passing them in the addButton call. That one I would have recognized. Sometimes I feel like I overuse the parseInt function just to be safe.

BTW, your tease downloader seems to be working better with EOS conversions, or maybe I just got lucky with the last couple of teases I downloaded. Thanks for all of your work.
tapslap
Explorer
Explorer
Posts: 5
Joined: Tue Jun 14, 2022 3:32 am

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Post by tapslap »

Does anyone have v4.5 working on Linux?

I got 3.8 working on Ubuntu back in 2019 (only supported windows by default), but I don't remember exactly how I did it. It still runs fine today.

However I was curious to try out the new version, but none of the Linux releases will run (I tried 4.3 and 4.5). It tries to launch, and then the java runtime crashes with what looks like a segmentation fault. It generates a log file that I am not able to attach to this post (unsupported file type error with .log and .txt extensions, character count exceeds post limit for a code snippet).

I'm not a programmer, but this seems like an issue with a native Java library or some other feature of the JRE that is being called by the GuideMe script. I assume there is added functionality or library(ies) used in version 4.5 that are not present in version 3.8, which is why I can run the older GuideMe.

I'd appreciate any suggestions on how to troubleshoot. Or if anyone has this running on another Java version and can share details on their setup I could try downgrading to an older Java. Thanks!

Java version:

Code: Select all

~$ java -version
openjdk version "11.0.19" 2023-04-18
OpenJDK Runtime Environment (build 11.0.19+7-post-Ubuntu-0ubuntu120.04.1)
OpenJDK 64-Bit Server VM (build 11.0.19+7-post-Ubuntu-0ubuntu120.04.1, mixed mode, sharing)
Part of the error log:

Code: Select all

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x00007fbcf1e44fc4, pid=317323, tid=317324
#
# JRE version: OpenJDK Runtime Environment (11.0.19+7) (build 11.0.19+7-post-Ubuntu-0ubuntu120.04.1)
# Java VM: OpenJDK 64-Bit Server VM (11.0.19+7-post-Ubuntu-0ubuntu120.04.1, mixed mode, sharing, tiered, compressed oops, g1 gc, linux-amd64)
# Problematic frame:
# C  [libpthread.so.0+0xafc4]  pthread_mutex_lock+0x4
#
# Core dump will be written. Default location: Core dumps may be processed with "/lib/systemd/systemd-coredump %P %u %g %s %t 9223372036854775808 %h" (or dumping to /media/kristoffer/Stash/Milovana/GuideMe-v0.4.5/core.317323)
#
# If you would like to submit a bug report, please visit:
#   https://bugs.launchpad.net/ubuntu/+source/openjdk-lts
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

---------------  S U M M A R Y ------------

Command Line: -Xms1024m -Xmx1024m GuideMe.jar

Host: Intel(R) Core(TM) i7-3770 CPU @ 3.40GHz, 8 cores, 22G, Linux Mint 20.3 Una
Time: Mon May 22 23:24:41 2023 PDT elapsed time: 8.848506 seconds (0d 0h 0m 8s)

---------------  T H R E A D  ---------------

Current thread (0x00007fbcec016800):  JavaThread "main" [_thread_in_native, id=317324, stack(0x00007fbcf0723000,0x00007fbcf0824000)]

Stack: [0x00007fbcf0723000,0x00007fbcf0824000],  sp=0x00007fbcf081e4e8,  free space=1005k
Native frames: (J=compiled Java code, A=aot compiled Java code, j=interpreted, Vv=VM code, C=native code)
C  [libpthread.so.0+0xafc4]  pthread_mutex_lock+0x4

Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j  org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(J)V+0
j  org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(J)V+8
j  org.eclipse.swt.widgets.Display.eventProc(JJ)J+149
v  ~StubRoutines::call_stub
J 2642  org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(JZ)Z (0 bytes) @ 0x00007fbcdc3d0c94 [0x00007fbcdc3d0c40+0x0000000000000054]
J 2653 c1 org.eclipse.swt.widgets.Display.readAndDispatch()Z (73 bytes) @ 0x00007fbcd525190c [0x00007fbcd5251720+0x00000000000001ec]
j  org.guideme.guideme.App.main([Ljava/lang/String;)V+509
v  ~StubRoutines::call_stub

siginfo: si_signo: 11 (SIGSEGV), si_code: 1 (SEGV_MAPERR), si_addr: 0x0000000000000010

Register to memory mapping:

RAX=0x00007fbcf1e44fc0: pthread_mutex_lock+0x0000000000000000 in /lib/x86_64-linux-gnu/libpthread.so.0 at 0x00007fbcf1e3a000
RBX=0x00007fbcecb8f220 points into unknown readable memory: 0x00007fbcecb9f8e0 | e0 f8 b9 ec bc 7f 00 00
RCX=0x000000000000014c is an unknown value
RDX=0x00007fbcf081e56c is pointing into the stack for thread: 0x00007fbcec016800
RSP=0x00007fbcf081e4e8 is pointing into the stack for thread: 0x00007fbcec016800
RBP=0x00007fbcf081e550 is pointing into the stack for thread: 0x00007fbcec016800
RSI=0x00007fbcf081e560 is pointing into the stack for thread: 0x00007fbcec016800
RDI=0x0 is NULL
R8 =0x00007fbcf081e550 is pointing into the stack for thread: 0x00007fbcec016800
R9 =0x00000000000001fd is an unknown value
R10=0x00007fbceccb6f00 points into unknown readable memory: 0x00007fbcecc05400 | 00 54 c0 ec bc 7f 00 00
R11=0x00007fbcecc078ce points into unknown readable memory: 4e 61
R12=0x00007fbcf081e560 is pointing into the stack for thread: 0x00007fbcec016800
R13=0x00007fbcf081e54c is pointing into the stack for thread: 0x00007fbcec016800
R14=0x00007fbcf081e56c is pointing into the stack for thread: 0x00007fbcec016800
R15=0x0000000000000001 is an unknown value


Registers:
RAX=0x00007fbcf1e44fc0, RBX=0x00007fbcecb8f220, RCX=0x000000000000014c, RDX=0x00007fbcf081e56c
RSP=0x00007fbcf081e4e8, RBP=0x00007fbcf081e550, RSI=0x00007fbcf081e560, RDI=0x0000000000000000
R8 =0x00007fbcf081e550, R9 =0x00000000000001fd, R10=0x00007fbceccb6f00, R11=0x00007fbcecc078ce
R12=0x00007fbcf081e560, R13=0x00007fbcf081e54c, R14=0x00007fbcf081e56c, R15=0x0000000000000001
RIP=0x00007fbcf1e44fc4, EFLAGS=0x0000000000010206, CSGSFS=0x002b000000000033, ERR=0x0000000000000004
  TRAPNO=0x000000000000000e

Top of Stack: (sp=0x00007fbcf081e4e8)
0x00007fbcf081e4e8:   00007fbc8bf0a51f 0000000081dad980
0x00007fbcf081e4f8:   0000000000000004 00007fbc81dc8940
0x00007fbcf081e508:   e41096c0a00b9e00 00007fbcec9feff0
0x00007fbcf081e518:   00007fbcc439cfe1 00007fbcc439e7f4 

Instructions: (pc=0x00007fbcf1e44fc4)
0x00007fbcf1e44ec4:   00 00 48 8d 35 2d c7 00 00 48 8d 3d 43 c7 00 00
0x00007fbcf1e44ed4:   e8 57 b8 ff ff 8b 45 00 89 c2 e9 2e fa ff ff 48
0x00007fbcf1e44ee4:   8d 0d 86 c8 00 00 ba a7 01 00 00 48 8d 35 04 c7
0x00007fbcf1e44ef4:   00 00 48 8d 3d 33 c6 00 00 e8 2e b8 ff ff 66 0f
0x00007fbcf1e44f04:   1f 44 00 00 c7 45 04 00 00 00 00 45 31 d2 31 d2
0x00007fbcf1e44f14:   48 89 ef be 07 00 00 00 b8 ca 00 00 00 0f 05 48
0x00007fbcf1e44f24:   3d 00 f0 ff ff 77 37 64 48 c7 04 25 f0 02 00 00
0x00007fbcf1e44f34:   00 00 00 00 41 bf 83 00 00 00 e9 5b fa ff ff 48
0x00007fbcf1e44f44:   8d 0d 26 c8 00 00 ba 48 02 00 00 48 8d 35 a4 c6
0x00007fbcf1e44f54:   00 00 48 8d 3d d0 c6 00 00 e8 ce b7 ff ff 83 f8
0x00007fbcf1e44f64:   92 74 c4 83 c0 26 83 f8 26 0f 87 30 ff ff ff 83
0x00007fbcf1e44f74:   f8 25 0f 87 27 ff ff ff 48 8d 15 49 c7 00 00 48
0x00007fbcf1e44f84:   63 04 82 48 01 d0 3e ff e0 c7 45 04 00 00 00 00
0x00007fbcf1e44f94:   87 55 00 83 fa 01 7e 8f 45 31 d2 ba 01 00 00 00
0x00007fbcf1e44fa4:   be 01 00 00 00 48 89 ef b8 ca 00 00 00 0f 05 e9
0x00007fbcf1e44fb4:   73 ff ff ff e8 13 b7 ff ff 0f 1f 00 f3 0f 1e fa
0x00007fbcf1e44fc4:   8b 47 10 89 c2 81 e2 7f 01 00 00 90 83 e0 7c 75
0x00007fbcf1e44fd4:   7b 53 48 83 ec 10 85 d2 75 7a 8b 0d f4 73 01 00
0x00007fbcf1e44fe4:   85 c9 75 38 31 c0 ba 01 00 00 00 f0 0f b1 17 0f
0x00007fbcf1e44ff4:   85 97 00 00 00 8b 57 08 85 d2 0f 85 41 01 00 00
0x00007fbcf1e45004:   64 8b 04 25 d0 02 00 00 89 47 08 83 47 0c 01 90
0x00007fbcf1e45014:   31 c0 48 83 c4 10 5b c3 0f 1f 40 00 8b 47 10 f6
0x00007fbcf1e45024:   c4 03 74 08 f6 c4 01 74 bb eb 07 90 80 cc 01 89
0x00007fbcf1e45034:   47 10 8b 57 10 48 83 c4 10 48 8d 77 16 5b 81 e2
0x00007fbcf1e45044:   80 00 00 00 e9 73 b2 00 00 0f 1f 00 e9 4b f8 ff
0x00007fbcf1e45054:   ff 0f 1f 00 81 fa 00 01 00 00 74 d6 8b 57 10 83
0x00007fbcf1e45064:   e2 7f 83 fa 01 75 5f 64 8b 0c 25 d0 02 00 00 39
0x00007fbcf1e45074:   4f 08 75 35 8b 47 04 83 f8 ff 0f 84 b7 00 00 00
0x00007fbcf1e45084:   83 c0 01 89 47 04 31 c0 eb 88 66 90 8b 77 10 48
0x00007fbcf1e45094:   89 7c 24 08 81 e6 80 00 00 00 e8 9d 80 00 00 48
0x00007fbcf1e450a4:   8b 7c 24 08 e9 4c ff ff ff f0 0f b1 17 75 6b 8b
0x00007fbcf1e450b4:   47 08 85 c0 0f 85 cc 00 00 00 c7 47 04 01 00 00 


Stack slot to memory mapping:
stack at sp + 0 slots: 0x00007fbc8bf0a51f: XrmQGetResource+0x000000000000004f in /lib/x86_64-linux-gnu/libX11.so.6 at 0x00007fbc8bec3000
stack at sp + 1 slots: 0x0000000081dad980 is an unknown value
stack at sp + 2 slots: 0x0000000000000004 is an unknown value
stack at sp + 3 slots: 0x00007fbc81dc8940 is pointing into metadata
stack at sp + 4 slots: 0xe41096c0a00b9e00 is an unknown value
stack at sp + 5 slots: 0x00007fbcec9feff0 points into unknown readable memory: 0x0000000000000000 | 00 00 00 00 00 00 00 00
stack at sp + 6 slots: 0x00007fbcc439cfe1: <offset 0x00000000000ecfe1> in /lib/x86_64-linux-gnu/libcairo.so.2 at 0x00007fbcc42b0000
stack at sp + 7 slots: 0x00007fbcc439e7f4: <offset 0x00000000000ee7f4> in /lib/x86_64-linux-gnu/libcairo.so.2 at 0x00007fbcc42b0000


---------------  P R O C E S S  ---------------

Threads class SMR info:
_java_thread_list=0x00007fbb9003f940, length=24, elements={
0x00007fbcec016800, 0x00007fbcec42e800, 0x00007fbcec431000, 0x00007fbcec437000,
0x00007fbcec439000, 0x00007fbcec43b000, 0x00007fbcec43d000, 0x00007fbcec43f000,
0x00007fbcec4a6800, 0x00007fbceceb5800, 0x00007fbcede1f800, 0x00007fbcede27000,
0x00007fbcee0c2800, 0x00007fbcee18f000, 0x00007fbcee192800, 0x00007fbca0239000,
0x00007fbcee1bd800, 0x00007fbcee2bf000, 0x00007fbcee2d3000, 0x00007fbb90009000,
0x00007fbca005f000, 0x00007fbb9003a800, 0x00007fbb9003c800, 0x00007fbb9003e000
}

Java Threads: ( => current thread )
=>0x00007fbcec016800 JavaThread "main" [_thread_in_native, id=317324, stack(0x00007fbcf0723000,0x00007fbcf0824000)]
  0x00007fbcec42e800 JavaThread "Reference Handler" daemon [_thread_blocked, id=317331, stack(0x00007fbccc5ed000,0x00007fbccc6ee000)]
  0x00007fbcec431000 JavaThread "Finalizer" daemon [_thread_blocked, id=317332, stack(0x00007fbccc4ec000,0x00007fbccc5ed000)]
  0x00007fbcec437000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=317333, stack(0x00007fbccc3eb000,0x00007fbccc4ec000)]
  0x00007fbcec439000 JavaThread "Service Thread" daemon [_thread_blocked, id=317334, stack(0x00007fbccc2ea000,0x00007fbccc3eb000)]
  0x00007fbcec43b000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=317335, stack(0x00007fbccc1e9000,0x00007fbccc2ea000)]
  0x00007fbcec43d000 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=317336, stack(0x00007fbccc0e8000,0x00007fbccc1e9000)]
  0x00007fbcec43f000 JavaThread "Sweeper thread" daemon [_thread_blocked, id=317337, stack(0x00007fbcc598f000,0x00007fbcc5a90000)]
  0x00007fbcec4a6800 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=317339, stack(0x00007fbcc578c000,0x00007fbcc588d000)]
  0x00007fbceceb5800 JavaThread "process reaper" daemon [_thread_blocked, id=317347, stack(0x00007fbc880dd000,0x00007fbc880ff000)]
  0x00007fbcede1f800 JavaThread "Java Sound Event Dispatcher" daemon [_thread_blocked, id=317367, stack(0x00007fbc81ed7000,0x00007fbc81fd8000)]
  0x00007fbcede27000 JavaThread "Direct Clip" daemon [_thread_blocked, id=317369, stack(0x00007fbc81dd6000,0x00007fbc81ed7000)]
  0x00007fbcee0c2800 JavaThread "pool-2-thread-1" [_thread_blocked, id=317401, stack(0x00007fbcc558a000,0x00007fbcc568b000)]
  0x00007fbcee18f000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=317403, stack(0x00007fbcc568b000,0x00007fbcc578c000)]
  0x00007fbcee192800 JavaThread "AWT-XAWT" daemon [_thread_in_native, id=317404, stack(0x00007fbbda4a8000,0x00007fbbda5a9000)]
  0x00007fbca0239000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=317405, stack(0x00007fbbda1a7000,0x00007fbbda2a8000)]
  0x00007fbcee1bd800 JavaThread "AWT-Shutdown" [_thread_blocked, id=317406, stack(0x00007fbbda0a6000,0x00007fbbda1a7000)]
  0x00007fbcee2bf000 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=317408, stack(0x00007fbbd97a4000,0x00007fbbd98a5000)]
  0x00007fbcee2d3000 JavaThread "threadMetronome" [_thread_blocked, id=317409, stack(0x00007fbbd96a3000,0x00007fbbd97a4000)]
  0x00007fbb90009000 JavaThread "Timer-0" daemon [_thread_blocked, id=317410, stack(0x00007fbbd95a2000,0x00007fbbd96a3000)]
  0x00007fbca005f000 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=317411, stack(0x00007fbbd92a1000,0x00007fbbd93a2000)]
  0x00007fbb9003a800 JavaThread "JitterCorrector" daemon [_thread_blocked, id=317428, stack(0x00007fbbd819e000,0x00007fbbd829f000)]
  0x00007fbb9003c800 JavaThread "AudioPusher" daemon [_thread_blocked, id=317429, stack(0x00007fbbd809d000,0x00007fbbd819e000)]
  0x00007fbb9003e000 JavaThread "Java Sound Sequencer" [_thread_blocked, id=317430, stack(0x00007fbb7aefd000,0x00007fbb7affe000)]

Other Threads:
  0x00007fbcec42c000 VMThread "VM Thread" [stack: 0x00007fbccc6f0000,0x00007fbccc7f0000] [id=317330]
  0x00007fbcec4a3800 WatcherThread [stack: 0x00007fbcc588f000,0x00007fbcc598f000] [id=317338]
  0x00007fbcec02e800 GCTaskThread "GC Thread#0" [stack: 0x00007fbcf03e2000,0x00007fbcf04e2000] [id=317325]
  0x00007fbcb8001000 GCTaskThread "GC Thread#1" [stack: 0x00007fbc834ff000,0x00007fbc835ff000] [id=317348]
  0x00007fbcb8002800 GCTaskThread "GC Thread#2" [stack: 0x00007fbc833fd000,0x00007fbc834fd000] [id=317349]
  0x00007fbcb8004000 GCTaskThread "GC Thread#3" [stack: 0x00007fbc832fb000,0x00007fbc833fb000] [id=317350]
  0x00007fbcb8005800 GCTaskThread "GC Thread#4" [stack: 0x00007fbc831f9000,0x00007fbc832f9000] [id=317351]
  0x00007fbcb8007800 GCTaskThread "GC Thread#5" [stack: 0x00007fbc830f7000,0x00007fbc831f7000] [id=317352]
  0x00007fbcb8009000 GCTaskThread "GC Thread#6" [stack: 0x00007fbc82ff5000,0x00007fbc830f5000] [id=317353]
  0x00007fbcb800a800 GCTaskThread "GC Thread#7" [stack: 0x00007fbc82ef3000,0x00007fbc82ff3000] [id=317354]
  0x00007fbcec04a800 ConcurrentGCThread "G1 Main Marker" [stack: 0x00007fbccdb00000,0x00007fbccdc00000] [id=317326]
  0x00007fbcec04c800 ConcurrentGCThread "G1 Conc#0" [stack: 0x00007fbccd9fe000,0x00007fbccdafe000] [id=317327]
  0x00007fbcc8001000 ConcurrentGCThread "G1 Conc#1" [stack: 0x00007fbc804b6000,0x00007fbc805b6000] [id=317374]
  0x00007fbcec39b800 ConcurrentGCThread "G1 Refine#0" [stack: 0x00007fbccd0f4000,0x00007fbccd1f4000] [id=317328]
  0x00007fbcec39d800 ConcurrentGCThread "G1 Young RemSet Sampling" [stack: 0x00007fbcccff2000,0x00007fbccd0f2000] [id=317329]

Threads with active compile tasks:

VM state:not at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread: None

Heap address: 0x00000000c0000000, size: 1024 MB, Compressed Oops mode: 32-bit
Narrow klass base: 0x0000000800000000, Narrow klass shift: 3
Compressed class space size: 1073741824 Address: 0x0000000840000000

END.
DarkPassenger
Explorer
Explorer
Posts: 17
Joined: Tue Jan 05, 2021 11:44 pm
Gender: Male
Sexual Orientation: Bisexual/Bi-Curious
I am a: Switch

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Post by DarkPassenger »

Are you using 0.4.5 or the latest 0.4.5.1? I had the same message, which was caused by Teaseme using an old version of VLCJ. Version 0.4.5.1 has an updated version which shouldn't have the issue.
Alternatively you can use older versions of Teaseme and add the -DVLCJ_INITX=no option to start.sh, as explained in this message.

Teaseme works fine on Linux, except for a few bugs like forms not working but fortunately there aren't a lot of teases that use them.
tapslap
Explorer
Explorer
Posts: 5
Joined: Tue Jun 14, 2022 3:32 am

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Post by tapslap »

I Was using 0.4.5 from the link in the top post. I didn't realize there was a 0.4.5.1. I downloaded the newer version and it works fine, thanks!

I had been previously using 0.3.8 which also works fine, after a couple tweaks to the launcher
DarkPassenger
Explorer
Explorer
Posts: 17
Joined: Tue Jan 05, 2021 11:44 pm
Gender: Male
Sexual Orientation: Bisexual/Bi-Curious
I am a: Switch

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Post by DarkPassenger »

It looks like the first post on this thread needs to be updated :)
Post Reply

Who is online

Users browsing this forum: fortnitepoggers696 and 60 guests