Mir Atlantis [Crystal] Discussion

  • Remember! Never use the same account usernames and password across different servers!
Join Discord

Anchorman

Dedicated Member
Dedicated Member
Feb 1, 2014
63
2
35
Re: Mir Atlantis [Crystal M2]

bone elite - bone cave

ghouls - zombie cave

WT - Wooma temple 1 and v2

young hog king - boar cave

most bosses require sunpots to kill.

ok thanks for the info :)
 

Piff1

Legend
Dedicated Member
Apr 17, 2015
2,864
422
125
Africa
Re: Mir Atlantis [Crystal M2]

GM needs to find the crash's in source and post for Far or somebody in #C team to help him fix.. helps the files in the long run anyway.
 

ibby

I'm a massive prick
Dedicated Member
Jan 10, 2017
871
127
85
Re: Mir Atlantis [Crystal M2]

1st time it hasn't booted back up itself, (if it has been) since every other crash its straight back up.

Means he's probably out, meh something needs to be done.... every time I run to a boss "crashed..."
 

IceMan

Hero's Act Mir 2
Legendary
Apr 17, 2003
8,544
2
370
350
Re: Mir Atlantis [Crystal M2]

GM needs to find the crash's in source and post for Far or somebody in #C team to help him fix.. helps the files in the long run anyway.

Last error he posted, looks like some to do with the network. So could be a dos or a flood to make the server drop its network conn.
 

Piff1

Legend
Dedicated Member
Apr 17, 2015
2,864
422
125
Africa
Re: Mir Atlantis [Crystal M2]

Last error he posted, looks like some to do with the network. So could be a dos or a flood to make the server drop its network conn.

100% sound's like the Arab's are doing that to make it drop to put bosses back up, only assuming as atleast 60% of them all run speed hacks.
 

Exwizz

Legend
Legendary
Feb 1, 2010
3,206
62
175
Newcastle
Re: Mir Atlantis [Crystal M2]

100% sound's like the Arab's are doing that to make it drop to put bosses back up, only assuming as atleast 60% of them all run speed hacks.

and they have the nerve to accuse other people too!

the amount of PMs 'your a cheater i'm telling GM'
 

ibby

I'm a massive prick
Dedicated Member
Jan 10, 2017
871
127
85
Re: Mir Atlantis [Crystal M2]

Last error he posted, looks like some to do with the network. So could be a dos or a flood to make the server drop its network conn.

Well whenever server is down, comes back up arabs are all on within a minute.

other than that maybe too many mobs, because the r/s is for everycave are up to a point where u can't even move, suns drop ridiculously a lot

meh idk :D
 

Exwizz

Legend
Legendary
Feb 1, 2010
3,206
62
175
Newcastle
Re: Mir Atlantis [Crystal M2]

its getting annoying every single arab calling me a cheater...

saying i'm using speed hacks because i use the apples with +2 speed in PvP when they clearly don't.

also i need GM to Fix my robe for the 100th time... sick of being invisible.
 

FirEStorm

Mir Atlaints
Veteran
Aug 29, 2011
566
31
115
CaiRo-EGYPT
Re: EGYMIR online [Crystal M2] [Online]

i think the crash problem now fixed but i have a day till i make sure it done
 

xXxX

Golden Oldie
Golden Oldie
Mar 9, 2005
707
35
135
Re: Mir Atlantis [Crystal M2]

Empeor can you look into Tao's please, i'll break it down.

We have 1 spell that can inflict any sort of damage ( SFB ) With 160 SC and red poison on a warrior i can hit 700 MAX, now they have LR which last like 10 seconds and hit whole screen our pets are useless, and 3 sun pots u can regen the SFB with just done before casting another, unlike a wizz we don't have firewall to tick on them whilst chucking firestorm for 500+ damage on their head.

Again Vs Wizards 1 spell, can hit a max of 300 because it does not cut shield, pets hit them for 60-70 max not even worth casting as pro rings.

We either need Poison cloud ( **** knows why it's not being used you have crystal files and limiting us to mostly 2.3 or pre 2.3 spells ) or our SFB just doing like 1.3K damage a hit to make it even close to viable without us having pets to flinch people.

:\ Any other Taoist here feel the same ?

+1
 

NightScare

Golden Oldie
Golden Oldie
Nov 11, 2005
2,932
110
170
Nottingham
Re: Mir Atlantis [Crystal M2]

Regarding crashes, seems similar to mine, try the below, this is what I did to fix it. Make sure you backup your source before trying this.

SendList is found in MirConnection.cs (Server Side)....

This
Code:
     Code:
     private Queue<Packet> _sendList, _retryList;
To this
Code:
     private Queue<Packet> _retryList;
private ConcurrentQueue<Packet> _sendList;

Then this
Code:
     Code:
     _sendList = new Queue<Packet>(new[] { new S.Connected() });

To this -

Code:
    Code:
                 _sendList = new ConcurrentQueue<Packet>;
            _sendList.Enqueue(new S.Connected());


Then this
Code:
         while (_sendList.Count > 0)
            {
                Packet p = _sendList.Dequeue();
                data.AddRange(p.GetPacketBytes());
            }

To this
Code:
                while (!_sendList.IsEmpty)
            {
                Packet p;
                if (!_sendList.TryDequeue(out p) || p == null) continue;
                data.AddRange(p.GetPacketBytes());
            }
 
Last edited:

DeathAngel

Banned
Banned
Jul 16, 2017
503
5
44
Re: Mir Atlantis [Crystal M2]

Regarding crashes, seems similar to mine, try the below, this is what I did to fix it. Make sure you backup your source before trying this.

SendList is found in MirConnection.cs (Server Side)....

This
Code:
     Code:
     private Queue<Packet> _sendList, _retryList;
To this
Code:
     private Queue<Packet> _retryList;
private ConcurrentQueue<Packet> _sendList;

Then this
Code:
     Code:
     _sendList = new Queue<Packet>(new[] { new S.Connected() });

To this -

Code:
    Code:
                 _sendList = new ConcurrentQueue<Packet>;
            _sendList.Enqueue(new S.Connected());


Then this
Code:
         while (_sendList.Count > 0)
            {
                Packet p = _sendList.Dequeue();
                data.AddRange(p.GetPacketBytes());
            }

To this
Code:
                while (!_sendList.IsEmpty)
            {
                Packet p;
                if (!_sendList.TryDequeue(out p) || p == null) continue;
                data.AddRange(p.GetPacketBytes());
            }

some one is probably dosing the server which will 100% crash the server if it was on a weak / slow dedi..

(FireStorm): if what NightScare said didn't work for you

try increasing MaxUser in setup.ini to 100