Page 1 of 2

how remove this flowers :D ?

Posted: Fri Aug 28, 2009 8:00 am
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....

Re: how remove this flowers :D ?

Posted: Fri Aug 28, 2009 8:25 am
by Aikimaniac
LOL...lower details in client....

Re: how remove this flowers :D ?

Posted: Fri Aug 28, 2009 8:30 am
by repxl
Aikimaniac wrote:LOL...lower details in client....
hmmm ty and the other questions ???

Re: how remove this flowers :D ?

Posted: Fri Aug 28, 2009 8:55 am
by Aikimaniac
check zone.xml and change mapregion table and change needed location to value 8...

Re: how remove this flowers :D ?

Posted: Fri Aug 28, 2009 11:05 am
by LiquidIce
Change in zone.xml here PEACE ZONE to ARENA and it will be like the colli.

Re: how remove this flowers :D ?

Posted: Fri Aug 28, 2009 11:53 am
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 ..

Re: how remove this flowers :D ?

Posted: Fri Aug 28, 2009 11:57 am
by LiquidIce
type="arena"

Re: how remove this flowers :D ?

Posted: Fri Aug 28, 2009 12:16 pm
by repxl
and when i no need make it like coli .. like normal when u are out infront of giran with flags and pk ???

Re: how remove this flowers :D ?

Posted: Fri Aug 28, 2009 12:21 pm
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...

Re: how remove this flowers :D ?

Posted: Fri Aug 28, 2009 12:44 pm
by JIV
repxl wrote:i wanna delete this flowers
disable ground details in client.

Re: how remove this flowers :D ?

Posted: Fri Aug 28, 2009 8:17 pm
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.

Re: how remove this flowers :D ?

Posted: Sat Aug 29, 2009 10:35 am
by repxl
u mean delete type ?? or what

Re: how remove this flowers :D ?

Posted: Sat Aug 29, 2009 10:36 am
by Aikimaniac
if you dont understand what you should do from this answers than imho nobody can help you...

Re: how remove this flowers :D ?

Posted: Sat Aug 29, 2009 11:19 am
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

Re: how remove this flowers :D ?

Posted: Sat Aug 29, 2009 2:04 pm
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.