Return to Project-GC

Welcome to Project-GC Q&A. Ask questions and get answers from other Project-GC users.

If you get a good answer, click the checkbox on the left to select it as the best answer.

Upvote answers or questions that have helped you.

If you don't get clear answers, edit your question to make it clearer.

+1 vote
434 views
Hello,

 

would it be possible to add an optional filter on the alphabetic challenge checker, where I can select a specific alphabet? The issue is that there are so many different alphabets in different countries (e.g Scandinavian vs. Czech language).

Thanks a lot
in Miscellaneous by smellfooth (4.8k points)

2 Answers

0 votes

If you want changes for checkers, you should contact the author of the script. I did a search and I can not see any script with the name alphabetic challenge checker. Another option is to fork the script and make the changes yourself, if you know how to write programs.

I assume that there are many scripts right now that checks different alphabet things in different ways. I know I own one script myself for example.

by magma1447 (Admin) (241k points)
0 votes
My Generic alphabet checker can now do that

look at

http://project-gc.com/Tools/Challenges?edit&scriptId=206
by Target. (Expert) (104k points)
looks nearly perfect. would it be possible to add some new lines after line 124, like

elseif alpha=="deu" then
    letters={"ABCDEFGHIJKLMNOPQRSTUVWXYZÄÖÜ"}
elseif alpha=="deu_alpha_num" then
    letters="ABCDEFGHIJKLMNOPQRSTUVWXYZÄÖÜ1234567890"

elseif alpha=="cze" then
    letters={"???"}
elseif alpha=="cze_alpha_num" then
    letters="???1234567890"

and for all the other mainlanguages, where the alphabet ist different to the english on.
I forgot to add a line to the description for the custom alphabet i added
use it like
"alphabet":"ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"

you missed the code on line 132 that loads a custom alphabet
The hardcoded alphabets are old code that should be removed. But i have to change all tag so in will probably remain for compability
Yes your are right, that I'm ignored line 132. After reading your comment I recognized this function, but I haven't any idea what is included. Do the function contain all the different ABCs?
...