Jump to content
  • 0

activeChar.isIn?


criss22

Question

Recommended Posts

  • 0
37 minutes ago, Rootware said:

if (activeChar.isInsideZone(ZoneId.PEACE) || activeChar.isInsideZone(ZoneId.TOWN))
{
	// Do something here.
}

 

With this i can open CB just in farm zones, and not in town. And i want reverse :)

 

In peace i want to use and farm zone not

Edited by criss22
Link to comment
Share on other sites

  • 0

I make like this

if (activeChar.isInsideZone(ZoneIdType.PEACE) || activeChar.isInsideZone(ZoneIdType.TOWN))
		{
			activeChar.sendMessage("Cannot use outside of peace zone.");
			return;
		}

and i can't open Comunity board in towns. Just in Farm zones i can open...:/

Link to comment
Share on other sites

  • 0

Because you asked question with one conditions and in result wants the another.

 

1 hour ago, criss22 said:

How i can set activeChar to not use CB on zones farm? Just in peace zones (Towns)

 

Link to comment
Share on other sites

  • 0
if (!activeChar.isInsideZone(ZoneIdType.PEACE) || !activeChar.isInsideZone(ZoneIdType.TOWN))
{
	activeChar.sendMessage("Cannot use outside of peace zone.");
	return;
}

 

Link to comment
Share on other sites

  • 0
!activeChar.isInsideZone()

-->   <-- activeChar.isInsideZone(mplampla)  <---- this is for player is not inside zone and if player is in zone town/peace cant open cb
without -->     <-- this he check if player is in zone town/peace he can open it only out of that zones

Link to comment
Share on other sites

  • 0

Your towns isn't peace zones?

 

if (!activeChar.isInsideZone(ZoneIdType.TOWN) && !activeChar.isInsideZone(ZoneIdType.PEACE))
{
	activeChar.sendMessage("Cannot use outside of peace zone.");
	return;
}

 

Link to comment
Share on other sites

  • 0

RootWare, i am glad to have you here. And your answer are faster and correct. But for me, doedn't work. If you want (it is not

necessary) to join into my pc to check yourself how it's work.

Link to comment
Share on other sites

  • 0
On 10/7/2019 at 10:59 PM, criss22 said:

RootWare, i am glad to have you here. And your answer are faster and correct. But for me, doedn't work. If you want (it is not

necessary) to join into my pc to check yourself how it's work.

God, ofc it's gonna work, just do as he posted on second post, add godamn ! to deny condition...... 

 

! stands for NOT 

Link to comment
Share on other sites

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