Momo's Question Section ^_^

This is not a Support area! Discuss about the Server here. Non-Server related discussion goes in Off-Topic Discussion.
Forum rules
READ NOW: L2j Forums Rules of Conduct
User avatar
Tan
L2j Veteran
L2j Veteran
Posts: 873
Joined: Wed Jun 10, 2009 10:31 pm
Location: Poland

Re: Momo's Question Section ^_^

Post by Tan »

momo61 wrote:Is there a reason why Doombringers do extreme high crit damage with bows on practically anyone ? They even outdamage archers by 2-3k damage (fully buffed).

what's a way to lower their bow-damage-power?
Its Due Champion Favor
Some people believe in God... i believe in Music... some people pray..... I turn on Winamp
http://www.last.fm/user/L2jTan
User avatar
momo61
Posts: 1648
Joined: Fri Jun 06, 2008 2:05 pm
Location: Europe

Re: Momo's Question Section ^_^

Post by momo61 »

Im thinking of adding some kind of change to Ancient Sword Mastery that when you wear a bow, your P.atk decreases.

Code: Select all

	<skill id="472" levels="45" name="Ancient Sword Mastery" enchantGroup1="1" enchantGroup2="1">		<table name="#pAtk"> 5.2 8.1 9.9 11.9 14.1 16.6 19.4 22.5 25.9 27.7 29.6 31.6 33.7 35.9 38.1 40.5 42.9 45.4 48.1 50.8 53.6 56.5 59.4 62.5 65.6 68.9 72.2 75.6 79 82.5 86.1 89.8 93.5 97.3 101.1 104.9 108.8 112.7 116.7 120.6 124.6 128.5 132.5 136.4 140.3 </table>		<table name="#ench1pAtk"> 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 178 179 </table>		<table name="#ench2pAtkSpd"> 1.011 1.012 1.014 1.015 1.016 1.018 1.019 1.020 1.022 1.023 1.024 1.026 1.027 1.028 1.030 1.031 1.032 1.034 1.035 1.036 1.038 1.039 1.040 1.042 1.043 1.044 1.046 1.047 1.048 1.050 </table>		<set name="target" val="TARGET_SELF" />		<set name="skillType" val="BUFF" />		<set name="operateType" val="OP_PASSIVE" />		<for>			<add order="0x40" stat="pAtk" val="#pAtk">				<using kind="Ancient" />			</add>		</for>		<enchant1for>			<add order="0x40" stat="pAtk" val="#ench1pAtk">				<using kind="Ancient" />			</add>		</enchant1for>		<enchant2for>			<add order="0x40" stat="pAtk" val="140.3">				<using kind="Ancient" />			</add>			<mul order="0x30" stat="pAtkSpd" val="#ench2pAtkSpd">				<using kind="Ancient" />			</mul>		</enchant2for>	</skill>
something in there like:

Code: Select all

			<sub order="0x40" stat="pAtk" val="800">				<using kind="Bow" />
User avatar
momo61
Posts: 1648
Joined: Fri Jun 06, 2008 2:05 pm
Location: Europe

Re: Momo's Question Section ^_^

Post by momo61 »

why in the spring cleaning did you add "@override" everywhere? What does it do?
User avatar
momo61
Posts: 1648
Joined: Fri Jun 06, 2008 2:05 pm
Location: Europe

Re: Momo's Question Section ^_^

Post by momo61 »

http://www.l2jserver.com/trac/changeset/4031

Code: Select all

AllowedProtocolRevisions = 146;152 
Does that mean if we want to allow older protocol revisions, we must do 120;121;122;123;124;125 etc.?
User avatar
MELERIX
L2j Veteran
L2j Veteran
Posts: 6667
Joined: Sat Sep 23, 2006 11:31 pm
Location: Chile
Contact:

Re: Momo's Question Section ^_^

Post by MELERIX »

no xD

you don't need to put the entire ranges, you need to put the specific protocols only ;)

anyway is not recommended to use old protocols, due you could have several issues with packets.
User avatar
janiii
L2j Veteran
L2j Veteran
Posts: 4269
Joined: Wed May 28, 2008 3:15 pm
Location: Slovakia

Re: Momo's Question Section ^_^

Post by janiii »

momo61 wrote:http://www.l2jserver.com/trac/changeset/4031

Code: Select all

AllowedProtocolRevisions = 146;152 
Does that mean if we want to allow older protocol revisions, we must do 120;121;122;123;124;125 etc.?
yes. mostly l2j server supports only 1 or 2 protocol versions because of the packet changes. because of the latest version change, the old config would be wrong with 146-152, because 148 is not supported without DS patch. and because the packets did not really change from 146 to 152, l2j can support both of them, and config 152-152 would not make sense then as 146 is supported by l2j too.
DO NOT EVEN TRY TO MESS WITH ME!
forum flOOder dancing dEVILoper
I don't give private support - PM will be ignored!
User avatar
ZaKaX
Posts: 357
Joined: Thu Nov 22, 2007 6:28 am
Location: Somewhere in Asia.

Re: Momo's Question Section ^_^

Post by ZaKaX »

This thread will be the most popular thread in whole boards soon.
¿ Que dice los cojones de la nina ?
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: Momo's Question Section ^_^

Post by jurchiks »

it's not a bad thing, some questions and answers should be fairly informative to many members of this community
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
User avatar
momo61
Posts: 1648
Joined: Fri Jun 06, 2008 2:05 pm
Location: Europe

Re: Momo's Question Section ^_^

Post by momo61 »

jurchiks wrote:it's not a bad thing, some questions and answers should be fairly informative to many members of this community
thank you.

now what is this ^^

Code: Select all

                        // in case of EnterWorld error kick player from game                       if (this instanceof EnterWorld)                                 getClient().closeNow();
User avatar
momo61
Posts: 1648
Joined: Fri Jun 06, 2008 2:05 pm
Location: Europe

Re: Momo's Question Section ^_^

Post by momo61 »

this has been spamming a lot lately:

http://www.l2jserver.com/trac/ticket/4530
User avatar
JIV
L2j Veteran
L2j Veteran
Posts: 1882
Joined: Sun Jan 06, 2008 8:17 pm
Location: Slovakia
Contact:

Re: Momo's Question Section ^_^

Post by JIV »

ticket closed since you provide wrong info about your l2j rev.
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: Momo's Question Section ^_^

Post by jurchiks »

read that ticket again
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
User avatar
momo61
Posts: 1648
Joined: Fri Jun 06, 2008 2:05 pm
Location: Europe

Re: Momo's Question Section ^_^

Post by momo61 »

i couldnt pick an earlier revision!!!
User avatar
momo61
Posts: 1648
Joined: Fri Jun 06, 2008 2:05 pm
Location: Europe

Re: Momo's Question Section ^_^

Post by momo61 »

can we disable territory wars by commenting out this?

Code: Select all

quests/TerritoryWarScripts/TerritoryWarSuperClass.java
with this

Code: Select all

#quests/TerritoryWarScripts/TerritoryWarSuperClass.java
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: Momo's Question Section ^_^

Post by jurchiks »

heh, just when I thought there should be a setting to disable them in config there isn't one...
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Post Reply