So for some reason when fighting this champ when u hit him he is teleporting players way off screen away from him so u can't even hit him how can this be fixed any info would be greatly appreciated and i can send the script if need be
 
He's supposed to do that, but if you want him to not...

find the following section:
C#:
switch (Utility.Random(3))
                {
                    case 0: { DoCondemn(); break; }
                    case 1: { DoSummon(); break; }
                    case 2: { DoNuke(); break; }
                }

and change it to:
C#:
switch (Utility.Random(2))
                {
                    //case 0: { DoCondemn(); break; }
                    case 0: { DoSummon(); break; }
                    case 1: { DoNuke(); break; }
                }
 
He's supposed to do that, but if you want him to not...

find the following section:
C#:
switch (Utility.Random(3))
                {
                    case 0: { DoCondemn(); break; }
                    case 1: { DoSummon(); break; }
                    case 2: { DoNuke(); break; }
                }

and change it to:
C#:
switch (Utility.Random(2))
                {
                    //case 0: { DoCondemn(); break; }
                    case 0: { DoSummon(); break; }
                    case 1: { DoNuke(); break; }
                }
mine does not have the code=csharp does that matter
 
The C# is just there telling what type of code it is. It is auto added by the code box on this website.
 
Back