Hi, I have a question regarding to the ship models for the missions. is it possible to change the ship name in these lines(shown below) to enable other ship models or it actually needs some other complicated modifications to enable us to fly other ships for the missions? I personally don't like Caldari ships, because I don't like to use missiles!~ 
switch ${Ship.TypeID}
{
case TYPE_VEXOR
call This.VexorCombat ${agentID}
break
case TYPE_THORAX
call This.ThoraxCombat ${agentID}
break
case TYPE_DOMINIX
call This.DominixCombat ${agentID}
break
case TYPE_ISHKUR
call This.IshkurCombat ${agentID}
break
default
UI:UpdateConsole["obj_Missions: WARNING! Unknown Ship Type."]
call This.DefaultCombat ${agentID}
break
}
switch ${Ship.TypeID}
{
case TYPE_VEXOR
call This.VexorCombat ${agentID}
break
case TYPE_THORAX
call This.ThoraxCombat ${agentID}
break
case TYPE_DOMINIX
call This.DominixCombat ${agentID}
break
case TYPE_ISHKUR
call This.IshkurCombat ${agentID}
break
default
UI:UpdateConsole["obj_Missions: WARNING! Unknown Ship Type."]
call This.DefaultCombat ${agentID}
break
}