Auto complete KissAnime Captcha
< 脚本KissAnime Auto Captcha V3.2的反馈
I also had this problem. I solved it by changing29|for(var i =0; i < 5; i++){
to 29|for(var i =0; i < x.length; i++){
n.b. It messed up because the script was attempting to
check a fifth, nonexistent, picture. Instead of just
changing the number, I made it check the found
photos to prevent it from happening again, should
the KissAdmins decide to have a fluctuating number
of pictures.
I also had this problem. I solved it by changing29|for(var i =0; i < 5; i++){
to29|for(var i =0; i < x.length; i++){
n.b. It messed up because the script was attempting to check a fifth, nonexistent, picture. Instead of just changing the number, I made it check the found photos to prevent it from happening again, should the KissAdmins decide to have a fluctuating number of pictures.
Thanks :)
@Marcus Rockwell
The other kiss captcha script NoKissReload [CAPTCHA SKIP] isn't working either.
do you think changing slice(0,5)
to slice(0,4)
would fix it?
Probably. I haven't seen the code for that one so I couldn't be sure. I would suggest, if that does work, finding a way to softcode it so the problem doesn't crop up later on.
Probably. I haven't seen the code for that one so I couldn't be sure. I would suggest, if that does work, finding a way to softcode it so the problem doesn't crop up later on.
well..... it didn't work. I'll just have to wait for the dev to fix that script then :)
Fixed on 2.3
Fixed on 2.3
Thanks for the quick fix ?
Since yesterday the script won't load for me.
I am not sure if I am the only one, but switching to jquerys ready event fixed the problem.26| document.getElementsByTagName("body")[0].onload = function(){
35| };
to26| $( document ).ready( function(){
35| });
Since yesterday the script won't load for me. I am not sure if I am the only one, but switching to jquerys ready event fixed the problem.26| document.getElementsByTagName("body")[0].onload = function(){
35| };
to26| $( document ).ready( function(){
35| });
Hi Akku :)
Wouldn't the script try to click the images a bit later if using the .ready
event rather then the .onload
event?
Seems to not be working again sadly
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
Doesn't work anymore.
The script doesn't work anymore.
Apparently, KissAnime has switched to a new version of the image captcha, which only shows 4 images instead of 5.
I believe that they only just made the change today.