Search found 6 matches

by Zefram
Thu Aug 22, 2019 8:12 pm
Forum: Teasing Software
Topic: [Tease AI Java] SPICY development thread
Replies: 143
Views: 50294

Re: [Tease AI Java] SPICY development thread

Found a likely issue in parachute.js: the weight is always the max allowed for the pain level. current: return Math.max(0.5, random(painTolerance*0.25), (painTolerance + 1)*0.25, (painTolerance + 2)*0.25); my best guess what was intended: return Math.max(0.5, random(painTolerance*0.25, (painToleranc...
by Zefram
Sat Feb 16, 2019 5:42 pm
Forum: Teasing Software
Topic: [Tease Program] Tease-AI Java (1.4)
Replies: 879
Views: 285584

Re: [Tease Program] Tease-AI Java (1.0.18)

There seems to be a small bug in TAJ sendInput() function. The issue I have observed is that lazy sub options are only added to the GUI at the time the function returns. I suspect the code for this loop needs to come earlier: /* ...SendInputFunction.java... */ for (int x = offset; x < args.length; x...
by Zefram
Mon Feb 11, 2019 8:01 pm
Forum: Teasing Software
Topic: [Tease Program] Tease-AI Java (1.4)
Replies: 879
Views: 285584

Re: [Tease Program] Tease-AI Java (1.0.18)

Try renaming the tumblr folder, “Downloaded Images”. Not sure this really helped. The Tumblr folder was recreated when the software was started and the partially broken image downloads resumed eventually. Disabling the "use for tease" flag in the settings was also not stopping the downloa...
by Zefram
Sun Feb 10, 2019 9:11 pm
Forum: Teasing Software
Topic: [Tease Program] Tease-AI Java (1.4)
Replies: 879
Views: 285584

Re: [Tease Program] Tease-AI Java (1.0.18)

I noticed some odd behavior with TAJ 1.0.18. I did a clean install and installed Mischievous. Then I went into the setting and played around with the media URLs as supplied by the distribution. Then I started Mischievious. Not always was a tease picture shown but the few tagged picture I had always ...
by Zefram
Sat Feb 09, 2019 11:34 pm
Forum: Teasing Software
Topic: [Tease AI Java] Developer's Guide and Help Thread
Replies: 70
Views: 16475

Re: [Tease AI Java] Developer's Guide and Help Thread

My JavaScript Development Setup What I don't like about writing for TAJ is that it requires TAJ to run JavaScript code and the only way to debug the code is with some logging statements. I can neither debug nor automatically test the code. Or could I? The following is work in progress - use at your...
by Zefram
Sat Feb 09, 2019 6:56 pm
Forum: Teasing Software
Topic: [Tease AI Java] Developer's Guide and Help Thread
Replies: 70
Views: 16475

Re: [Tease AI Java] Developer's Guide and Help Thread

My Java Development Setup The Java sources for TAJ are currently provided without a standard way to build. As a non Java expert I struggled to get started with debugging or building the software. Sharing what I did may help others - I don't claim this it is good enough for production but it helped ...