Jump to content

Question

Posted

hello ...people can create their shops everywere in giran creating some khaos ...i wonder the frozen pack does not have the " cannot create shop here " option?huh.gif?i search in configs but i dont find anything can someone tell us if there is....and if not maybe give a patch for it???ty in advance.........

4 answers to this question

Recommended Posts

  • 0
Posted

Add check

 

if (activeChar.isInside(ZoneId.NO_STORE))
{
	activeChar.sendMessage("You can't store in this place.");
	return;
}

and create NO_STORE zone.

  • 0
Posted (edited)

It's better to do opposite, to create a STORE_ZONE. Definitelly you will have sell work to do to make the area where the store is allowed :)

 

 

if (!activeChar.isInside(ZoneId.STORE_ZONE))
{
    activeChar.sendMessage("You can't store in this place.");
    return;
}
Edited by SweeTs

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock