Search found 100 matches
- Wed Oct 23, 2024 2:06 pm
- Forum: The Art of Webteasing
- Topic: Here are EOS tutorials
- Replies: 178
- Views: 165189
Re: Here are EOS tutorials
According to my back-of-the-envelope calculation that amounts to roughly 596 bits of information. That would make the password close to a 100 characters long... However, that is just fine with copy&paste. I'm sure it could be optimized further. The floating point numbers (e.g. holdfaktor) are re...
- Sat Oct 19, 2024 6:44 pm
- Forum: The Art of Webteasing
- Topic: Here are EOS tutorials
- Replies: 178
- Views: 165189
Re: Here are EOS tutorials
[...] Yes, I have already recognized this problem. A password would then look something like this: 110010001111000230050110203301110101000111000101000.... And that doesn't work at all. I'll read up on your method with the ascii values. Maybe I can rewrite the password (which actually consists almos...
- Tue Oct 15, 2024 2:19 am
- Forum: The Art of Webteasing
- Topic: Here are EOS tutorials
- Replies: 178
- Views: 165189
Re: Here are EOS tutorials
Use the "var" keyword only for the initial declaration (i.e. in the init script), not when modifying already declared variables.
To tell you the truth, it's probably best if you don't use "var" at all.
To tell you the truth, it's probably best if you don't use "var" at all.
- Sun Oct 13, 2024 10:11 pm
- Forum: The Art of Webteasing
- Topic: Here are EOS tutorials
- Replies: 178
- Views: 165189
Re: Here are EOS tutorials
Hi bbb
Coding is case sensitive, which means "Runs" and "runs" are two different variables.
Also "If" and "Var" won't work for the same reason.
Coding is case sensitive, which means "Runs" and "runs" are two different variables.
Also "If" and "Var" won't work for the same reason.
- Fri Apr 12, 2024 9:24 pm
- Forum: The Art of Webteasing
- Topic: Here are EOS tutorials
- Replies: 178
- Views: 165189
Re: Here are EOS tutorials
Code: Select all
var vertical_list = your_array.join("<br>");
- Sat Mar 09, 2024 12:54 am
- Forum: The Art of Webteasing
- Topic: Here are EOS tutorials
- Replies: 178
- Views: 165189
Re: Here are EOS tutorials
Not in the Editor afaik. I'm guessing one could edit the json file by hand, but I'm not 100% certainHerpDerp42 wrote: ↑Fri Mar 08, 2024 2:14 pm is there any way to move pictures from one gallery to another...?
- Sat Mar 09, 2024 12:21 am
- Forum: The Art of Webteasing
- Topic: New tease help
- Replies: 4
- Views: 963
Re: New tease help
I've looked into the tutorial topic but it's not really helping me anymore. I'm the author and I'm planning to write more. The thing is I'm not really sure what to write about. So I'm trying to hang out in the forum and help on a case-by-case basis, hoping to get a better picture what people need. ...
- Sun Feb 25, 2024 2:17 pm
- Forum: The Art of Webteasing
- Topic: Here are EOS tutorials
- Replies: 178
- Views: 165189
Re: Here are EOS tutorials
Now, the tease freezes earlier. I can tell you that it hangs on page "Alice", trying to load a non-existent "alice.jpg". What possibility in debugging are there to find the problem? Excessive use of console.log(some_var); and your browser's console (F12) Not much else, I don't t...
- Fri Feb 16, 2024 8:51 pm
- Forum: Technical Support
- Topic: Response not successful: Received status code 400
- Replies: 11
- Views: 3894
Re: Response not successful: Received status code 400
If it really can't be fixed, then I see only one more option: Check if people can access their progress in the development version (using the share link from the editor). I don't know if there are two seperate teaseStorages for public and edit version, but perhaps it is the same. If that works, your...
- Fri Feb 16, 2024 4:18 pm
- Forum: Technical Support
- Topic: Response not successful: Received status code 400
- Replies: 11
- Views: 3894
Re: Response not successful: Received status code 400
The tease doesn't load anymore !! Please HELP !! All players loose their progression (months of progression) ! It doesn't load because the publication failed. I bet teaseStorage is still intact, though. I'm somewhat confused, the tease 59393 seems to be your anal queen tease if I open it via EOS pr...
- Wed Feb 14, 2024 10:42 pm
- Forum: The Art of Webteasing
- Topic: Technical advice: keeping score.
- Replies: 2
- Views: 1293
Re: Technical advice: keeping score.
I'm not familiar with what you're describing, but a quick googling tells me that it's just counting how many As, Bs, Cs etc you choose and the highest wins? If that is accurate, then I believe it's enough to just do `a++;` when you press the button with answer A. In the end you would have to figure ...
- Sun Jan 07, 2024 10:45 pm
- Forum: Technical Support
- Topic: Metronome/Volume settings?
- Replies: 2
- Views: 3223
Re: Metronome/Volume settings?
All sound in teases - including metronomes - are mp3 files, so there's no trivial way to lower just the metronome's volume, other than editing the tease. The highly dynamic audio in anything porn is also something I'm struggling with (unintelligible dialog => neighborhood-waking screams) Some TVs/Re...
- Thu Jan 04, 2024 7:32 pm
- Forum: The Art of Webteasing
- Topic: Here are EOS tutorials
- Replies: 178
- Views: 165189
Re: Here are EOS tutorials
There can be several. Give it a unique ID like "score", then you can display your variable like this:
Code: Select all
Notification.get("score").setTitle("Score: "+myVariable+"❤️");
- Wed Dec 20, 2023 10:53 am
- Forum: The Art of Webteasing
- Topic: Here are EOS tutorials
- Replies: 178
- Views: 165189
Re: Here are EOS tutorials
I want these variables to be saved, but there are a lot of them.. Can I put them in a matrix like this: keep=[(keep1),(keep2),...]=[0,0,1,0,...] and then just save this matrix? Yes, you can. It's called "Array". keep = [0, 0, 1, 0]; //Prefill it keep[3]=1; // Results in [0, 0, 1, 1] becau...
- Thu Dec 14, 2023 10:59 pm
- Forum: The Art of Webteasing
- Topic: Here are EOS tutorials
- Replies: 178
- Views: 165189
Re: Here are EOS tutorials
[...] the picture of the woman is still displayed, whether the everyday text is not related to her. I had already tried to see if the picture disappears when a new page is inserted via Go-To; unfortunately the picture still remains there. I don't want to work with a purely black image. I think it w...