Raid Bosses Config???

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
Post Reply
User avatar
LaraCroft
Posts: 360
Joined: Sat Aug 08, 2009 1:37 am

Raid Bosses Config???

Post by LaraCroft »

If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number: last
L2JDP Revision Number: last

Hi guys
One doubt...
These settings on NPC.properties affect the Grand Bosses?
:?: :?:

Code: Select all

# ---------------------------------------------------------------------------# Raid Bosses# ---------------------------------------------------------------------------# Percent of HP and MP regeneration for raid bosses.# Example: Setting HP to 10 will cause raid boss HP to regenerate 90% slower than normal.# Default: 100, 100RaidHpRegenMultiplier = 180RaidMpRegenMultiplier = 180 # Percent of physical and magical defense for raid bosses.# Example: A setting of 10 will cause defense to be 90% lower than normal, # while 110 will cause defense to be 10% higher than normal.# Default: 100, 100RaidPDefenceMultiplier = 150RaidMDefenceMultiplier = 150 # Percent of physical and magical attack for raid bosses.# Example: A setting of 10 will cause attack to be 90% lower than normal, # while 110 will cause attack to be 10% higher than normal.# Default: 100, 100RaidPAttackMultiplier = 160RaidMAttackMultiplier = 160 # Configure Minimum and Maximum time multiplier between raid boss re-spawn.# By default 12Hours*1.0 for Minimum Time and 24Hours*1.0 for Maximum Time.# Example: Setting RaidMaxRespawnMultiplier to 2 will make the time between# re-spawn 24 hours to 48 hours.# Default: 1.0, 1.0RaidMinRespawnMultiplier = 1.0RaidMaxRespawnMultiplier = 1.0 # Configure the interval at which raid boss minions will re-spawn.# This time is in milliseconds, 1 minute is 60000 milliseconds.# Default: 300000RaidMinionRespawnTime = 300000 # Disable Raid Curse if raid more than 8 levels lower.# Caution: drop will be reduced or even absent if DeepBlue drop rules enabled.  # Default: FalseDisableRaidCurse = False # Configure the interval at which raid bosses and minions wont reconsider their target# This time is in seconds, 1 minute is 60 seconds.# Default: 10,10,10RaidChaosTime = 10GrandChaosTime = 10MinionChaosTime = 10
THxxx
!!!knowledge and intelligence must be shared!!!
User avatar
Faelucc
Posts: 27
Joined: Sun Nov 28, 2010 8:22 pm

Re: Raid Bosses Config???

Post by Faelucc »

Hi,
I think yes (L2GrandBossInstance: _isRaid is set to "true").
User avatar
LaraCroft
Posts: 360
Joined: Sat Aug 08, 2009 1:37 am

Re: Raid Bosses Config???

Post by LaraCroft »

nobody knows?
:? :(
!!!knowledge and intelligence must be shared!!!
User avatar
janiii
L2j Veteran
L2j Veteran
Posts: 4269
Joined: Wed May 28, 2008 3:15 pm
Location: Slovakia

Re: Raid Bosses Config???

Post by janiii »

try it. not that hard to set the values to some higher number so that you can see the difference between original and with other config.
DO NOT EVEN TRY TO MESS WITH ME!
forum flOOder dancing dEVILoper
I don't give private support - PM will be ignored!
User avatar
LaraCroft
Posts: 360
Joined: Sat Aug 08, 2009 1:37 am

Re: Raid Bosses Config???

Post by LaraCroft »

OK... thx...
!!!knowledge and intelligence must be shared!!!
User avatar
LaraCroft
Posts: 360
Joined: Sat Aug 08, 2009 1:37 am

Re: Raid Bosses Config???

Post by LaraCroft »

Hi guys...
I did some testing on this Raid Bosses options...
Difference was only in normal Raid Bosses... Grand Bosses makes no difference...
:?:
Is this correct??
It is possible also affect the Grand Bosses??

Thxx a lot...
!!!knowledge and intelligence must be shared!!!
User avatar
LaraCroft
Posts: 360
Joined: Sat Aug 08, 2009 1:37 am

Re: Raid Bosses Config???

Post by LaraCroft »

nobody knows answer me?
:cry:
!!!knowledge and intelligence must be shared!!!
User avatar
LaraCroft
Posts: 360
Joined: Sat Aug 08, 2009 1:37 am

Re: Raid Bosses Config???

Post by LaraCroft »

LaraCroft wrote:Hi guys...
I did some testing on this Raid Bosses options...
Difference was only in normal Raid Bosses... Grand Bosses makes no difference...
:?:
Is this correct??
It is possible also affect the Grand Bosses??
Developers can not answer me?
If yes or not?
:cry:
!!!knowledge and intelligence must be shared!!!
Sleek
Posts: 112
Joined: Tue Dec 28, 2010 1:11 pm

Re: Raid Bosses Config???

Post by Sleek »

Here is small patch for 1 of the configs I added it to pdef modifier. You can easy do it for the rest Just find where it is handled in core and add like I did.

Code: Select all

 Index: java/com/l2jserver/gameserver/model/actor/stat/CharStat.java===================================================================--- java/com/l2jserver/gameserver/model/actor/stat/CharStat.java    (revision 4460)+++ java/com/l2jserver/gameserver/model/actor/stat/CharStat.java    (working copy)@@ -19,6 +19,7 @@ import com.l2jserver.gameserver.model.L2ItemInstance; import com.l2jserver.gameserver.model.L2Skill; import com.l2jserver.gameserver.model.actor.L2Character;+import com.l2jserver.gameserver.model.actor.instance.L2GrandBossInstance; import com.l2jserver.gameserver.skills.Calculator; import com.l2jserver.gameserver.skills.Env; import com.l2jserver.gameserver.skills.Stats;@@ -579,7 +580,7 @@        if (_activeChar == null)            return 1;        -       return (int) calcStat(Stats.POWER_DEFENCE, (_activeChar.isRaid()) ? _activeChar.getTemplate().basePDef * Config.RAID_PDEFENCE_MULTIPLIER : _activeChar.getTemplate().basePDef, target, null);+       return (int) calcStat(Stats.POWER_DEFENCE, (_activeChar.isRaid()|| (_activeChar instanceof L2GrandBossInstance) ) ? _activeChar.getTemplate().basePDef * Config.RAID_PDEFENCE_MULTIPLIER : _activeChar.getTemplate().basePDef, target, null);    }        /** Return the Physical Attack range (base+modifier) of the L2Character. */ 
User avatar
LaraCroft
Posts: 360
Joined: Sat Aug 08, 2009 1:37 am

Re: Raid Bosses Config???

Post by LaraCroft »

Thx Sleek...
:)
I'll test it.
!!!knowledge and intelligence must be shared!!!
Keira
Posts: 5
Joined: Tue Jan 04, 2011 2:29 pm

Re: Raid Bosses Config???

Post by Keira »

I tried to pop the queen ant for fun and there's an area raid curse even if DisableRaidCurse = True
You can change pdef etc all you want in the code, you will still get the curse on a grand boss apparently. (just tried misses ant there)
So you will have to change that too i guess.

Edit: never mind, i should have looked what you did there.
Make grand normal.. doh!
Not sure if that solves an aoe curse though...
User avatar
LaraCroft
Posts: 360
Joined: Sat Aug 08, 2009 1:37 am

Re: Raid Bosses Config???

Post by LaraCroft »

Thx Sleek...
Works very well..
:mrgreen:
!!!knowledge and intelligence must be shared!!!
Sleek
Posts: 112
Joined: Tue Dec 28, 2010 1:11 pm

Re: Raid Bosses Config???

Post by Sleek »

You are welcome
Post Reply