Ive recently changed a map in my server and changed regions and added spawners - we use exclusively premiumspawners and ever since that day, i get this error on startup

1595426072301.png

Now, i loaded the [editor for premiumspawner, looked for a spawner with that ID and there isn't one, so i looked at the scripts, its being generated from
Spawnentry.cs, specifically
C#:
        public SpawnEntry( int id, BaseRegion region, Point3D home, int range, Direction direction, SpawnDefinition definition, int max, TimeSpan minSpawnTime, TimeSpan maxSpawnTime )
        {
            m_ID = id;
            m_Region = region;
            m_Home = home;
            m_Range = range;
            m_Direction = direction;
            m_Definition = definition;
            m_SpawnedObjects = new List<ISpawnable>();
            m_Max = max;
            m_MinSpawnTime = minSpawnTime;
            m_MaxSpawnTime = maxSpawnTime;
            m_Running = false;

            if ( m_Table.Contains( id ) )
            {
                Console.WriteLine( "Warning: double SpawnEntry ID '{0}' in {1} and {2} and {3}", id, region, home, this);
                this.Delete();
            }
            else
                m_Table[id] = this;
        }

I have NO idea how to remove this error, or fix the issue... what is this? regions overlapping? a premiumspawner? a mobile?

any help would be arpeciated.
 
looks like you just copy pased some spawn entries in the region file.
since they are no uniquly id'ed?

its not a error in the script there, look at your regions.xml
 
Back