//Captcha Antibot
public static boolean SHOW_CAPTCHA;
public static String ALT_CAPTCHA_ANTIBOT;
public static int[] ALT_CAPTCHA_ANTIBOT_LIST;
public static int ALT_CAPTCHA_MOBS_KILLS;
public static int ALT_CAPTCHA_ANTIBOT_X;
public static int ALT_CAPTCHA_ANTIBOT_Y;
public static int ALT_CAPTCHA_ANTIBOT_Z;
SHOW_CAPTCHA = Boolean.parseBoolean(L2JFrozenSettings.getProperty("CaptchaEnabled", "true"));
ALT_CAPTCHA_ANTIBOT = L2JFrozenSettings.getProperty("CaptchaNpcId", "2375,3500,3501");
String[] array1 = ALT_CAPTCHA_ANTIBOT.split(",");
ALT_CAPTCHA_ANTIBOT_LIST = new int[array1.length];
for (int i = 0; i < array1.length; i++)
ALT_CAPTCHA_ANTIBOT_LIST[i] = Integer.parseInt(array1[i]);
ALT_CAPTCHA_MOBS_KILLS = Integer.parseInt(L2JFrozenSettings.getProperty("CaptchaMobsKills", "1"));
ALT_CAPTCHA_ANTIBOT_X = Integer.parseInt(L2JFrozenSettings.getProperty("CaptchaSpawnX", ""));
ALT_CAPTCHA_ANTIBOT_Y = Integer.parseInt(L2JFrozenSettings.getProperty("CaptchaSpawnY", ""));
ALT_CAPTCHA_ANTIBOT_Z = Integer.parseInt(L2JFrozenSettings.getProperty("CaptchaSpawnZ", ""));
i know that something in Config.java but i dont know exactly where
Hey! It's been years since I tried this, just redownloaded everything for the nostalgia but I'm having the "mismatch" problem.
You were right, I used another system, not the one from the post! My bad!
Now I can't find the system that works with AuthGateD 🤣
I see you have found it and uploaded it but the link you provided no longer works. If you are still around, can you please reupload? Thank you!
Question
Guarder
i'm trying to add this :
but...i can't figure out where to put this:
//Captcha Antibot public static boolean SHOW_CAPTCHA; public static String ALT_CAPTCHA_ANTIBOT; public static int[] ALT_CAPTCHA_ANTIBOT_LIST; public static int ALT_CAPTCHA_MOBS_KILLS; public static int ALT_CAPTCHA_ANTIBOT_X; public static int ALT_CAPTCHA_ANTIBOT_Y; public static int ALT_CAPTCHA_ANTIBOT_Z; SHOW_CAPTCHA = Boolean.parseBoolean(L2JFrozenSettings.getProperty("CaptchaEnabled", "true")); ALT_CAPTCHA_ANTIBOT = L2JFrozenSettings.getProperty("CaptchaNpcId", "2375,3500,3501"); String[] array1 = ALT_CAPTCHA_ANTIBOT.split(","); ALT_CAPTCHA_ANTIBOT_LIST = new int[array1.length]; for (int i = 0; i < array1.length; i++) ALT_CAPTCHA_ANTIBOT_LIST[i] = Integer.parseInt(array1[i]); ALT_CAPTCHA_MOBS_KILLS = Integer.parseInt(L2JFrozenSettings.getProperty("CaptchaMobsKills", "1")); ALT_CAPTCHA_ANTIBOT_X = Integer.parseInt(L2JFrozenSettings.getProperty("CaptchaSpawnX", "")); ALT_CAPTCHA_ANTIBOT_Y = Integer.parseInt(L2JFrozenSettings.getProperty("CaptchaSpawnY", "")); ALT_CAPTCHA_ANTIBOT_Z = Integer.parseInt(L2JFrozenSettings.getProperty("CaptchaSpawnZ", ""));i know that something in Config.java but i dont know exactly where
7 answers to this question
Recommended Posts