Jump to content
  • 0

activeChar.isIn?


Question

Recommended Posts

  • 0
Posted

By creating a config, first of all? :dat: Then, adding config check, before the actual check you have so far.

 

if (Config.BLOCK_COMMUNITY_BOARD)

{

   // blabla, your actual check

}

  • 0
Posted

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.");
				
			}
		}

 

  • 0
Posted
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;

?

  • 0
Posted
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

  • 0
Posted

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.

  • 0
Posted

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%.

  • 0
Posted

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.

  • 0
Posted
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? 

  • 0
Posted

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.

  • 0
Posted
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?

  • 0
Posted
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

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




×
×
  • Create New...