l2jmods - champion

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
Menuval
Posts: 42
Joined: Sat Feb 02, 2008 11:44 pm

l2jmods - champion

Post by Menuval »

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

hey all,

this is my mod file for the champion
# ---------------------------------------------------------------------------
# Champion mobs
# Turns random mobs into Champions
# ---------------------------------------------------------------------------
# Enable/Disable Champion Mob System.
ChampionEnable = True

# Force Champion mobs to be passive?
# To leave champion mobs to default/Agressive, set to False.
# To set all champion mobs to Passive, set True.
ChampionPassive = False

# % chance for a mob to became champion (0 to disable).
ChampionFrequency = 20

# Title of all Champion Mobs.
ChampionTitle = Champion

# Min and max levels allowed for a mob to be a Champion mob.
ChampionMinLevel = 20
ChampionMaxLevel = 80

# Hp multiplier for Champion mobs.
ChampionHp = 8

# Hp Regen Multiplier for Champion mobs.
ChampionHpRegen = 1.0

# Standard rewards multiplier for Champion mobs.
ChampionRewards = 8

# Adena & Seal Stone rewards multiplier for Champion mobs.
ChampionAdenasRewards = 2.0

# P. Attack and M. Attack bonus for Champion mobs.
ChampionAtk = 1.0

# Physical/Magical Attack Speed bonus for Champion mobs.
ChampionSpdAtk = 1.0

# Specified reward item ID
ChampionRewardItemID = 6393

# The amount of the specified reward a player will receive if they are awarded the item.
ChampionRewardItemQty = 1

# % Chance to obtain a specified reward item from a HIGHER lvl Champion mob.
ChampionRewardLowerLvlItemChance = 0

# % Chance to obtain a specified reward item from a LOWER lvl Champion mob.
ChampionRewardHigherLvlItemChance = 0

as you can see I'm trying to reward the player with a glittering event medal, the mobs spawns and it's all fine, but from some reason they don't get the item .

I see the to 2 last lines and i'm wondering if it's related since low level and high level are parameters that are argueable.

thanks for you help.
lishawj
Posts: 253
Joined: Thu Apr 30, 2009 12:29 am

Re: l2jmods - champion

Post by lishawj »

The drop rate is NOT 100% so you may not get any glittering medals.
Removed20180815
Posts: 93
Joined: Tue Jan 09, 2007 12:41 pm

Re: l2jmods - champion

Post by Removed20180815 »

yes you should give some values here

Code: Select all

# % Chance to obtain a specified reward item from a HIGHER lvl Champion mob.ChampionRewardLowerLvlItemChance = 0 # % Chance to obtain a specified reward item from a LOWER lvl Champion mob.ChampionRewardHigherLvlItemChance = 0
put the chance you want your item to drop. Test it with 50 first and see. You have to give some numbers there and it will work.
User avatar
janiii
L2j Veteran
L2j Veteran
Posts: 4269
Joined: Wed May 28, 2008 3:15 pm
Location: Slovakia

Re: l2jmods - champion

Post by janiii »

ChampionRewardLowerLvlItemChance is applied for players of level lower or equal to champ level.
ChampionRewardHigherLvlItemChance is applied for players of level higher than champ level.
DO NOT EVEN TRY TO MESS WITH ME!
forum flOOder dancing dEVILoper
I don't give private support - PM will be ignored!
Menuval
Posts: 42
Joined: Sat Feb 02, 2008 11:44 pm

Re: l2jmods - champion

Post by Menuval »

janiii wrote:ChampionRewardLowerLvlItemChance is applied for players of level lower or equal to champ level.
ChampionRewardHigherLvlItemChance is applied for players of level higher than champ level.
does it mean that a level 80 player hits a level 20 champion mob can get the item also ?
User avatar
janiii
L2j Veteran
L2j Veteran
Posts: 4269
Joined: Wed May 28, 2008 3:15 pm
Location: Slovakia

Re: l2jmods - champion

Post by janiii »

Menuval wrote:does it mean that a level 80 player hits a level 20 champion mob can get the item also ?
yes. only that config is applied for the champ drop chance, no deep blue drop calculation done.
DO NOT EVEN TRY TO MESS WITH ME!
forum flOOder dancing dEVILoper
I don't give private support - PM will be ignored!
Post Reply