Hi my source is 5530 and have this problem can anyone help me a little bit with this?
System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index
at System.ThrowHelper.ThrowArgumentOutOfRangeExceptio n()
at System.Collections.Generic.List`1.get_Item(Int32 index)
at Conquer_Online_Server.Database.MonsterInformation. Drop(Entity killer) in C:\DaRkHellCO 4 Source 5525\Database\MonsterTable.cs:line 1904
at Conquer_Online_Server.Game.Entity.Die(Entity killer) in C:\DaRkHellCO 4 Source 5525\Game\Entity.cs:line 2113
at Conquer_Online_Server.Game.Attacking.Handle.Receiv eAttack(Entity attacker, Entity attacked, Attack attack, UInt32 damage, SpellInformation spell) in C:\DaRkHellCO 4 Source 5525\Game\Attacking\Handle.cs:line 4537
at Conquer_Online_Server.Game.Attacking.Handle.Execut e() in C:\DaRkHellCO 4 Source 5525\Game\Attacking\Handle.cs:line 2491
at Conquer_Online_Server.Game.Attacking.Handle..ctor( Attack attack, Entity attacker, Entity attacked) in C:\DaRkHellCO 4 Source 5525\Game\Attacking\Handle.cs:line 24
at Conquer_Online_Server.Program.AttackThread_Execute () in C:\DaRkHellCO 4 Source 5525\Program.cs:line 287
__________________________________________________ ___________
this part is 1904
retry:
times--;
int generateItemId = ServerBase.Kernel.Random.Next(itemdroplist.Count);
uint id = itemdroplist[generateItemId];
if (!Boss)
{
if (Database.ConquerItemInformation.BaseInformations[id].Level > 121 && times > 0)
goto retry;
id = (id / 10) * 10 + (uint)quality;
}
if (!Database.ConquerItemInformation.BaseInformations .ContainsKey(id))
{
id = itemdroplist[generateItemId];
}






