criss22 Posted October 7, 2019 Posted October 7, 2019 How i can set activeChar to not use CB on zones farm? Just in peace zones (Towns) Quote
0 Contessina* Posted October 9, 2019 Posted October 9, 2019 8 hours ago, criss22 said: Ok, and how i can make it in General file to config? like AllowFarm=True/False? try to find a similar confing and understand how it works Quote
0 SweeTs Posted October 9, 2019 Posted October 9, 2019 By creating a config, first of all? Then, adding config check, before the actual check you have so far. if (Config.BLOCK_COMMUNITY_BOARD) { // blabla, your actual check } Quote
0 criss22 Posted October 9, 2019 Author Posted October 9, 2019 Idk if it's good. But i do like that: if (Config.BLOCK_COMMUNITY_BOARD) { L2Character activeChar = null; if (!activeChar.isInsideZone(ZoneIdType.PEACE) || !activeChar.isInsideZone(ZoneIdType.TOWN)) { activeChar.sendMessage("Cannot use outside of peace zone."); } } Quote
0 Tryskell Posted October 10, 2019 Posted October 10, 2019 14 hours ago, criss22 said: Idk if it's good. But i do like that: if (Config.BLOCK_COMMUNITY_BOARD) { L2Character activeChar = null; if (!activeChar.isInsideZone(ZoneIdType.PEACE) || !activeChar.isInsideZone(ZoneIdType.TOWN)) { activeChar.sendMessage("Cannot use outside of peace zone."); } } What is your logic behind : L2Character activeChar = null; ? Quote
0 SweeTs Posted October 10, 2019 Posted October 10, 2019 4 hours ago, Tryskell said: What is your logic behind : L2Character activeChar = null; ? To have a local variable, obviously. Who cares it's null, it's a feature catch as many npe's you can :D Quote
0 criss22 Posted October 10, 2019 Author Posted October 10, 2019 So SweeTs, i can leave how it is now? Will work? Quote
0 SweeTs Posted October 10, 2019 Posted October 10, 2019 Yes, just what Tk pointed out is so wrong and will throw an error, meaning it won't work. It can't be assigned to null.. Check other zones how it's casted and do the same. Quote
0 criss22 Posted October 11, 2019 Author Posted October 11, 2019 SweeTs, i mean how i can write in Config file? x=True Quote
0 criss22 Posted October 11, 2019 Author Posted October 11, 2019 Config file. Idk if it's good and if it's enough setting in Config.java http:// idk how to set activeChar Quote
0 SweeTs Posted October 11, 2019 Posted October 11, 2019 I told you, open other file and see how it's done.. All zones are short as fak, once you open you have an answer. About config the same, see how is done another boolean config. You did like 50%. Quote
0 Rootware Posted October 11, 2019 Posted October 11, 2019 Mate, find 5 euro and rent anyone who know Java better than you and it will done for 5 minutes. Stop to make my day everyday. You want the help but can't use it cause your Java knowledge is nothing. Unfortunately, today the community have no more altruists who work remotely with your sources for free of charge or for like or positive feedback. Quote
0 Dragic Posted October 12, 2019 Posted October 12, 2019 7 hours ago, Rootware said: Mate, find 5 euro and rent anyone who know Java better than you and it will done for 5 minutes. Stop to make my day everyday. You want the help but can't use it cause your Java knowledge is nothing. Unfortunately, today the community have no more altruists who work remotely with your sources for free of charge or for like or positive feedback. He make your day every day? I don't want to be a part of this but I realy when I see this comment I disappointed about your attitude you are rude this guy is just asking for help because is newbie that's why this section is exist and wait minute why you are l2j developer ? How dare you to speak like this in newbie in l2j help section? Quote
0 criss22 Posted October 12, 2019 Author Posted October 12, 2019 Guys, i just want to understand how it's work this. Without extra explications. Like what it is `if` in code. i want just to understand once, then i will make alone in feauture. Thanks for understanding. Quote
0 criss22 Posted October 12, 2019 Author Posted October 12, 2019 12 hours ago, Rootware said: Mate, find 5 euro and rent anyone who know Java better than you and it will done for 5 minutes. Stop to make my day everyday. You want the help but can't use it cause your Java knowledge is nothing. Unfortunately, today the community have no more altruists who work remotely with your sources for free of charge or for like or positive feedback. RootWare, all was newbie, right? U find someone to learn you? Someone had patience with you? Quote
0 GLO Posted October 12, 2019 Posted October 12, 2019 11 minutes ago, criss22 said: Guys, i just want to understand how it's work this. Without extra explications. Like what it is `if` in code. i want just to understand once, then i will make alone in feauture. Thanks for understanding. Man sweets fixed it for you.. If (activechar.isinpeacezone) = will happeb if char playerinstance is in peace zone, understand If(!activechar.is...) = will happen when player instance is NOT in peace zone. Adding the ! Is like will not do or not equal to If gelvel==70 -> if level is 70 If getlevel != 70 -> if level is not 70 Quote
Question
criss22
How i can set activeChar to not use CB on zones farm? Just in peace zones (Towns)
51 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.