A few things to check:
~Your sorc has the correct abilities (if it is missing an ability the script tries to run, it will automatically end the run and disconnect itself from the game)
~Find the script that your sorc runs (it should be in the pindlebot folder in the javascript folder loacted in the main JED folder) and scroll down till you find its abilities and spells that it casts. If you find that the script tries to cast a spell that you do not have (i.e script has 'energy shield' coding in it and you do not have energy shield on your character) then delete any coding relating to that spell/ability - make sure you read the coding carefully, the code should somewhat look like this:
Print("Casting defensive spells");
Player.SetRightSkill("Energy Shield", 10);
Sleep(300);
Player.UseRightSkill(10059, 13290);
Sleep(300);
Player.SetRightSkill("Shiver Armor", 10);
Sleep(300);
Player.UseRightSkill(10059, 13290);
Sleep(300);
Player.SetRightSkill("Thunder Storm", 30);
Sleep(300);
Player.UseRightSkill(10059, 13290);
Sleep(300);
or like this:
Print("Frozen Orb");
Player.SetRightSkill("Frozen Orb", 24);
Sleep(200);
Player.UseRightSkill(10057, 13223);
Sleep(400);
if (exitnow){
Print("ÿc1BAD Immunities Detected - Leaving Game");
Sleep(700);
return true;
} else {
Print("Static Field");
Player.SetRightSkill("Static Field", 25);
Sleep(200);
for(i = 0; i < 10; i++)
{
Player.UseRightSkill(10057, 13238);
Sleep(200);
}
Print("Frozen Orb");
Player.SetRightSkill("Frozen Orb", 24);
Sleep(200);
for(i = 0; i < 4; i++)
{
Player.UseRightSkill(10057, 13223);
Sleep(1100);
}
Print("Firewall");
Player.SetRightSkill("Fire Wall", 34);
Sleep(200);
for(j = 0; j < 3; j++)
{
Player.UseRightSkill(10057, 13235);
Sleep(1100);
}
if you find that one of these is not true for your character, delete the appropriate coding.
~Find the script that your sorc runs (it should be in the pindlebot folder in the javascript folder located in the main JED folder) and scroll down till you can read the abilities/spells it casts. [This area is pretty etchy and you should only tweak with this if you're confident in your ability] You can copy and paste the functions concering spells (i.e frozen orb) one after another to make her cast the spell more and more (1 paste - 1 cast).