about the mission ships

zlhu32

Active Member
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!~ :D




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
}
 

pellik

Active Member
I haven't looked at missioner at all, but just from the snippet you posted I can tell you that 'call This.DominixCombat' or whatever refers to a function somewhere else in the same file. Look for a block of code starting with

function DominixCombat()
{

and see what goes on in there. If it makes sense you can write your own ship behavior, if not you have to probably beg someone else to do it for you. Good luck with that.
 
Top Bottom