how remove this flowers :D ?

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
repxl
Posts: 207
Joined: Wed May 20, 2009 8:29 pm

how remove this flowers :D ?

Post by repxl »

Image

i wanna delete this flowers



and next questions why irc chat no work

and next question how i can delete peasefull zone from candy town (fantazy island)
and how i can change it when they diein fantazy island that they spawn not there when they press to vilage but in giran where i can change it


plz answer my questions thank you....
"Code is exactly like shit - you don't mind cleaning it when its yours, but when it isn't... fuck its annoying." - By the Almighty ZaKaX
User avatar
Aikimaniac
L2j Inner Circle
L2j Inner Circle
Posts: 3048
Joined: Sun Aug 07, 2005 11:42 pm
Location: Slovakia

Re: how remove this flowers :D ?

Post by Aikimaniac »

LOL...lower details in client....
Image
repxl
Posts: 207
Joined: Wed May 20, 2009 8:29 pm

Re: how remove this flowers :D ?

Post by repxl »

Aikimaniac wrote:LOL...lower details in client....
hmmm ty and the other questions ???
"Code is exactly like shit - you don't mind cleaning it when its yours, but when it isn't... fuck its annoying." - By the Almighty ZaKaX
User avatar
Aikimaniac
L2j Inner Circle
L2j Inner Circle
Posts: 3048
Joined: Sun Aug 07, 2005 11:42 pm
Location: Slovakia

Re: how remove this flowers :D ?

Post by Aikimaniac »

check zone.xml and change mapregion table and change needed location to value 8...
Image
User avatar
LiquidIce
Posts: 90
Joined: Wed Oct 18, 2006 4:17 pm
Location: Spain

Re: how remove this flowers :D ?

Post by LiquidIce »

Change in zone.xml here PEACE ZONE to ARENA and it will be like the colli.
When the rich wage war, its the poor who die.
repxl
Posts: 207
Joined: Wed May 20, 2009 8:29 pm

Re: how remove this flowers :D ?

Post by repxl »

<zone id="11039" type="Town" shape="Cuboid" minZ="-4324" maxZ="3097">
<stat name="name" val="Fantasy Isle" />
<stat name="townId" val="22" />
<stat name="taxById" val="14" />
<stat name="spawnX" val="-118167" />
<stat name="spawnY" val="46987" />
<stat name="spawnZ" val="367" />




where here i can set pease full zone off ?? i see no conifg ..
"Code is exactly like shit - you don't mind cleaning it when its yours, but when it isn't... fuck its annoying." - By the Almighty ZaKaX
User avatar
LiquidIce
Posts: 90
Joined: Wed Oct 18, 2006 4:17 pm
Location: Spain

Re: how remove this flowers :D ?

Post by LiquidIce »

type="arena"
When the rich wage war, its the poor who die.
repxl
Posts: 207
Joined: Wed May 20, 2009 8:29 pm

Re: how remove this flowers :D ?

Post by repxl »

and when i no need make it like coli .. like normal when u are out infront of giran with flags and pk ???
"Code is exactly like shit - you don't mind cleaning it when its yours, but when it isn't... fuck its annoying." - By the Almighty ZaKaX
User avatar
Aikimaniac
L2j Inner Circle
L2j Inner Circle
Posts: 3048
Joined: Sun Aug 07, 2005 11:42 pm
Location: Slovakia

Re: how remove this flowers :D ?

Post by Aikimaniac »

repxl wrote:and when i no need make it like coli .. like normal when u are out infront of giran with flags and pk ???
delete it then...
Image
User avatar
JIV
L2j Veteran
L2j Veteran
Posts: 1882
Joined: Sun Jan 06, 2008 8:17 pm
Location: Slovakia
Contact:

Re: how remove this flowers :D ?

Post by JIV »

repxl wrote:i wanna delete this flowers
disable ground details in client.
User avatar
LiquidIce
Posts: 90
Joined: Wed Oct 18, 2006 4:17 pm
Location: Spain

Re: how remove this flowers :D ?

Post by LiquidIce »

repxl wrote:and when i no need make it like coli .. like normal when u are out infront of giran with flags and pk ???
remove the entire zone code.
When the rich wage war, its the poor who die.
repxl
Posts: 207
Joined: Wed May 20, 2009 8:29 pm

Re: how remove this flowers :D ?

Post by repxl »

u mean delete type ?? or what
"Code is exactly like shit - you don't mind cleaning it when its yours, but when it isn't... fuck its annoying." - By the Almighty ZaKaX
User avatar
Aikimaniac
L2j Inner Circle
L2j Inner Circle
Posts: 3048
Joined: Sun Aug 07, 2005 11:42 pm
Location: Slovakia

Re: how remove this flowers :D ?

Post by Aikimaniac »

if you dont understand what you should do from this answers than imho nobody can help you...
Image
repxl
Posts: 207
Joined: Wed May 20, 2009 8:29 pm

Re: how remove this flowers :D ?

Post by repxl »

i tryed delete all the fan data in zones and then when i die in fan island and i press to village nothing happens
"Code is exactly like shit - you don't mind cleaning it when its yours, but when it isn't... fuck its annoying." - By the Almighty ZaKaX
User avatar
LiquidIce
Posts: 90
Joined: Wed Oct 18, 2006 4:17 pm
Location: Spain

Re: how remove this flowers :D ?

Post by LiquidIce »

Ok, this is the Fantasy Isle zone.

Code: Select all

 	<zone id="11039" type="Town" shape="Cuboid" minZ="-4324" maxZ="3097">		<stat name="name" val="Fantasy Isle" /> 		<stat name="townId" val="22" /> 		<stat name="taxById" val="14" /> 		<stat name="spawnX" val="-58752" /> 		<stat name="spawnY" val="-56898" /> 		<stat name="spawnZ" val="-2032" /> 	</zone> 
To make it take you to giran, change

Code: Select all

 <stat name="townId" val="22" /> 
to

Code: Select all

 <stat name="townId" val="11" /> 
For when you die and you hit TO TOWN, it will take you to giran.

Here is what your code should look if you want it as you wish:

Code: Select all

 	<zone id="11039" type="Arena" shape="Cuboid" minZ="-4324" maxZ="3097">		<stat name="name" val="Fantasy Isle" /> 		<stat name="townId" val="11" /> 		<stat name="taxById" val="11" /> 		<stat name="spawnX" val="-58752" /> 		<stat name="spawnY" val="-56898" /> 		<stat name="spawnZ" val="-2032" /> 	</zone> 
I think that should be it.
When the rich wage war, its the poor who die.
Post Reply