Jump to content

Jakey4150

Members
  • Posts

    23
  • Joined

  • Last visited

Reputation

5 Neutral

Profile Information

  • About me
    Bottle Rocketeer

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Since 0.19, I have been fixing his wheels and making them work, but since 0.24, they worked once and seems like ksp edited the script and broke it. Has for the part.cfg, its up to date but the plugin is broken I think. Here it is. Anything not correct in this ?? And then, how I convert the .cs into a .dll? (traditional format change)?? These are the wheels http://i11.photobucket.com/albums/a180/manmuppet/screenshot62-1.png The name of the plugin is TTModularWheel.dll using System; using System.Collections.Generic; using System.Linq; using System.Text; using UnityEngine; public class TTModularWheel : PartModule { [KSPField] public float steerFalloff = 0.25f; [KSPField] public float maxMotorTorque = 15f; [KSPField] public float maxBrakeTorque = 15f; [KSPField] public float rollingResistance = 0.5f; [KSPField] public float maxSteer = 45f; [KSPField] public Vector3 wheelRotationAxis = new Vector3 (0,0,1); [KSPField] public float rotationFactor = (6/180); [KSPField] public float contactDisplace = 0.075f; [KSPField] public float brakepercentadd = 0.03f; [KSPField] public float brakepercentsub = 0.12f; [KSPField] public float slidefactor = 10f; [KSPField] public float slidepower = 0.9f; [KSPField] public float velslidefactor = 0.05f; [KSPField] public float smokestart = 5f; [KSPField] public bool isDeployable = false; [KSPField] public string retractAnimation = "Retract"; [KSPField] public float spring = 0f; [KSPField(isPersistant = true)] bool isDeployed = true; bool isActive = false; [KSPField(isPersistant = true)] bool throttlemode = false; [KSPField] public bool yforwardtrueorxfalse = true; //slightly borrowedcode protected Animation anim { get { return part.FindModelAnimators(retractAnimation)[0]; } } // Transform steeringTransform; Transform suspensionTransform; Transform wheelModel; Transform Bounder; Transform rotatingLever; //Transform wheelc; WheelCollider wheelc; Vector3 driveAt; //BoxCollider Bounderbox; //Animation s; //List<Animation> s = new List<Animation>(); GameObject skidSmoke; [KSPField(isPersistant = true)] bool brakesOn = false; float motor; float steer; float csteer; float fixedangle; float vel; float speed = 1f; float BrakeTorquePercent = 0f; float driveDirection = 1f; //Vector3 direction; //float mSpeed; bool Debugtoggle; bool editorstate = false; [KSPEvent(guiActive = true, guiName = "DEBUGTOGGLE", guiActiveUnfocused = false, unfocusedRange = 0)] public void Toggle2 () { Debugtoggle = !Debugtoggle; } // Throttle switching GUI / Action groups [KSPEvent(guiActive = true, guiName = "Change Throttlemode", guiActiveUnfocused = false, unfocusedRange = 0)] public void Togglethrottle () { throttlemode = !throttlemode; } [KSPAction("Change Throttlemode")] public void Togglethrottle2(KSPActionParam Param) { throttlemode = !throttlemode; } [KSPField(guiActive = true, guiName = "Mode = ")] public string throttlemodeout = "Rover Mode"; [KSPEvent(guiActive = true, guiName = "Gear up/down", guiActiveUnfocused = false, unfocusedRange = 0)] public void GearGui () { AnimGear(); } [KSPAction("Gear", KSPActionGroup.Gear)] public void Gear(KSPActionParam param) { AnimGear(); } [KSPAction("Brakes", KSPActionGroup.Brakes)] public void Brake (KSPActionParam param) { if (param.type == KSPActionType.Activate) { brakesOn = true; /*if (BrakeTorquePercent < 1f) BrakeTorquePercent = BrakeTorquePercent + brakepercentadd; else BrakeTorquePercent = 1f; wheelc.brakeTorque = maxBrakeTorque * BrakeTorquePercent;*/ Debug.Log ("Applying Percent Brakes : " + BrakeTorquePercent); } else { brakesOn = false; //wheelc.brakeTorque = maxBrakeTorque * BrakeTorquePercent; } } public void AnimGear () { if (isDeployable == true) if (isDeployed == true) { isDeployed = false; foreach (AnimationState s in anim) s.speed = speed; anim.Play (retractAnimation,PlayMode.StopAll); } else { isDeployed = true; foreach (AnimationState s in anim){ s.speed = -speed; } anim.Play (retractAnimation,PlayMode.StopAll); foreach (AnimationState s in anim){ if (s.normalizedTime == 0){ s.normalizedTime = 1; //Debug.Log ("setting normalizedTime to 1..."); } //Debug.Log ("normalizedtime = " + s.normalizedTime); } } } public override void OnStart (StartState state) { steeringTransform = part.FindModelTransform ("steeringAxis"); wheelModel = part.FindModelTransform ("Wheel"); suspensionTransform = part.FindModelTransform ("suspensionParent"); Bounder = part.FindModelTransform ("Bounds"); rotatingLever = part.FindModelTransform ("rotatingLever1"); //wheelc = part.FindModelTransform("Wheel"); wheelc = part.FindModelComponent<WheelCollider> (); //s = (part.FindModelAnimators(retractAnimation)); //Bounderbox = Bounder.GetComponent<BoxCollider> (); //Bounderbox.enabled = false; Destroy (Bounder.gameObject.collider); //This part is for setting up particles if (state != StartState.Editor) { skidSmoke = (GameObject)GameObject.Instantiate (UnityEngine.Resources.Load ("Effects/fx_smokeTrail_light")); skidSmoke.transform.parent = suspensionTransform; skidSmoke.transform.position = wheelc.transform.position; skidSmoke.particleEmitter.emit = false; skidSmoke.particleEmitter.localVelocity = Vector3.zero; skidSmoke.particleEmitter.useWorldSpace = true; JointSpring wheelspring; wheelspring = wheelc.suspensionSpring; if (spring != 0f){ wheelspring.spring = spring; wheelc.suspensionSpring = wheelspring; } if (isDeployed == false) { anim.Play (retractAnimation, PlayMode.StopAll); Debug.Log ("Persistant shows gear retracted, retracting animation"); foreach (AnimationState s in anim) s.normalizedTime = 1; } editorstate = false; } else { editorstate = true; } wheelc.enabled = true; // make sure wheels are at full suspension extension in the VAB/SPH suspensionTransform.position = wheelc.transform.position - (wheelc.transform.up * (wheelc.suspensionDistance + contactDisplace)); } // fix180 is for converting 0 to 360 degree range to -180 to 180 degree range. float fix180(float angle) { if (angle > 180f) { fixedangle = angle - 360f; } else { fixedangle = angle; } return fixedangle; } public void FixedUpdate () { /*// is the animation at the start? if it is, work. if it aint, don't. foreach (AnimationState s in anim) { if (s.normalizedTime == 0) { isDeployed = true; } else { isDeployed = false; } } */ if (HighLogic.LoadedSceneIsEditor == false) { if (this.vessel.isActiveVessel == false) isActive = false; else isActive = true; if (yforwardtrueorxfalse == true) { driveAt = part.transform.InverseTransformDirection (vessel.transform.forward + vessel.transform.up); if (driveAt.y > 0) driveDirection = 1f; else driveDirection = -1f; if (Debugtoggle == true) Debug.Log ("driveAt.y = " + driveAt.y); } else { driveAt = part.transform.InverseTransformDirection (vessel.transform.forward + vessel.transform.up); if (driveAt.x > 0) driveDirection = 1f; else driveDirection = -1f; if (Debugtoggle == true) Debug.Log ("driveAt.x = " + driveAt.x); } if (isActive == true) { if (isDeployed == true) { vel = (float)this.vessel.srf_velocity.magnitude; //Debug.Log ("velocity readout : " + vel); steer = (float)(-FlightInputHandler.state.wheelSteer * maxSteer / (1f + (vel * steerFalloff))); //select the appropiate mode for driving the motor if (throttlemode == false) { motor = (float)(FlightInputHandler.state.wheelThrottle); throttlemodeout = "Rover Mode"; } else { motor = (float)(FlightInputHandler.state.mainThrottle); throttlemodeout = "Throttle Mode"; } Vector3 partposition = part.transform.InverseTransformPoint (vessel.transform.position); Vector3 CoMposition = part.transform.InverseTransformPoint (vessel.CoM); if (Debugtoggle == true) Debug.Log ("PP = " + partposition + " COMP = " + CoMposition); if (yforwardtrueorxfalse == true) if (CoMposition.y * driveDirection > 0) steer = -steer; if (yforwardtrueorxfalse == false) if (CoMposition.x * driveDirection > 0) steer = -steer; // not deployed or active? then don't steer or drive. } else { motor = 0f; steer = 0f; } csteer = steeringTransform.localEulerAngles.y; csteer = fix180 (csteer); //rediculously basic smoothing command steer = (steer + csteer) / 2; // set the steering angle and wheel torque steeringTransform.localEulerAngles = new Vector3 (0, steer, 0); wheelc.motorTorque = (float)(motor * maxMotorTorque * driveDirection); } //Old Brakes applying code using GetKey /*if (Input.GetKey (KeyCode. == true) { wheelc.brakeTorque = maxBrakeTorque; } else { wheelc.brakeTorque = 0f; }*/ if (brakesOn == true) { if (BrakeTorquePercent < 1f) BrakeTorquePercent = BrakeTorquePercent + brakepercentadd; if (BrakeTorquePercent > 1f) BrakeTorquePercent = 1f; if (Debugtoggle == true) Debug.Log ("Applying Percent Brakes : " + BrakeTorquePercent); } else { if (BrakeTorquePercent > 0f) BrakeTorquePercent = BrakeTorquePercent - brakepercentsub; if (BrakeTorquePercent < 0f) BrakeTorquePercent = 0f; } if ((maxBrakeTorque * BrakeTorquePercent) > rollingResistance) wheelc.brakeTorque = maxBrakeTorque * BrakeTorquePercent; else if (vessel.srf_velocity.magnitude < 0.1) wheelc.brakeTorque = rollingResistance; //Debug.Log (KSPActionGroup.Brakes); //Debug.Log (Input.GetKey(KeyCode.); //var hit : Physics.RaycastHit; /* float susdist = wheelc.radius + wheelc.suspensionDistance; RaycastHit hit = new RaycastHit (); if (Physics.Raycast (wheelc.transform.position, -transform.up, out hit, susdist)) { suspensionTransform.position = hit.point + (this.part.transform.up * wheelc.radius); } else { suspensionTransform.position = wheelc.transform.position - (this.part.transform.up * wheelc.suspensionDistance); } */ /* WheelHit whit = new WheelHit (); if (wheelc.GetGroundHit (out whit)) { suspensionTransform.position = whit.point + (this.part.transform.up * wheelc.radius); if (whit.forwardSlip + whit.sidewaysSlip > 0.9) { Debug.Log ("skidding at " + whit.forwardSlip + " by " + whit.sidewaysSlip); skidSmoke.transform.position = whit.point; skidSmoke.particleEmitter.emit = true; } else { skidSmoke.particleEmitter.emit = false; } } else { suspensionTransform.position = wheelc.transform.position - (this.part.transform.up * wheelc.suspensionDistance); skidSmoke.particleEmitter.emit = false; } */ wheelModel.RotateAroundLocal (wheelRotationAxis, wheelc.rpm * rotationFactor * Time.deltaTime); WheelHit whit = new WheelHit (); RaycastHit hit = new RaycastHit (); if (wheelc.GetGroundHit (out whit)) { Physics.Raycast (wheelc.transform.position, -wheelc.transform.up, out hit); Vector3 hitlag = (whit.point - hit.point); if (Debugtoggle == true) Debug.Log ("Lagging " + hitlag.magnitude + " Deltatime " + Time.deltaTime); whit.point = whit.point + vessel.srf_velocity*Time.deltaTime; hitlag = (whit.point - hit.point); if (Debugtoggle == true){ Debug.Log ("Lagging " + hitlag.magnitude + "velocity = " + vessel.srf_velocity*Time.deltaTime); } whit.point = wheelc.transform.InverseTransformPoint (whit.point); whit.point = wheelc.transform.TransformPoint (0, whit.point.y + contactDisplace, 0); suspensionTransform.position = whit.point + (wheelc.transform.up * wheelc.radius); if (Math.Abs (whit.forwardSlip) + Math.Abs (whit.sidewaysSlip) > smokestart) { skidSmoke.transform.position = whit.point; skidSmoke.particleEmitter.emit = true; } else { skidSmoke.particleEmitter.emit = false; } WheelFrictionCurve sf = wheelc.sidewaysFriction; WheelFrictionCurve ff = wheelc.forwardFriction; Vector3 gee = FlightGlobals.getGeeForceAtPosition (transform.position); //sf.stiffness = (0.1f/(1f+(wheelc.rpm/50f))); //sf.stiffness = (1f/(10f * (1f+((float)vessel.srf_velocity.magnitude*velslidefactor)+slidefactor*(Math.Abs(whit.sidewaysSlip)+Math.Abs(whit.forwardSlip))))); //sf.stiffness = (1f/(10f * (1f+((float)vessel.srf_velocity.magnitude*velslidefactor)*slidefactor*(Math.Abs(whit.sidewaysSlip)+Math.Abs(whit.forwardSlip))))); //sf.stiffness = (1f/(10f * (1f+((float)vessel.srf_velocity.magnitude*velslidefactor)*slidefactor*(float)Math.Pow ((Math.Abs(whit.sidewaysSlip)+Math.Abs(whit.forwardSlip)),0.5f)))); sf.stiffness = (TimeWarp.CurrentRate / (10f + (slidefactor * (float)Math.Pow ((Math.Abs (whit.sidewaysSlip) + 0f * Math.Abs (whit.forwardSlip)), slidepower)))); ff.stiffness = (TimeWarp.CurrentRate / (7.5f * (1 + Math.Abs (whit.forwardSlip)))); if (Debugtoggle == true) { //Debug.Log ("gee " + gee.magnitude); Debug.Log ("partvel " + vessel.srf_velocity.magnitude); Debug.Log ("skidding at " + Math.Abs (whit.forwardSlip) + " by " + Math.Abs (whit.sidewaysSlip)); Debug.Log (sf.stiffness); Debug.Log (ff.stiffness); Debug.Log ("timewarp : " + TimeWarp.CurrentRate); } wheelc.sidewaysFriction = sf; wheelc.forwardFriction = ff; } else { suspensionTransform.position = wheelc.transform.position - (wheelc.transform.up * (wheelc.suspensionDistance + contactDisplace)); skidSmoke.particleEmitter.emit = false; } //deal with rotating levers if (rotatingLever) { //rotatingLever.LookAt (rotatingLever.position + wheelc.transform.right, Vector3.Normalize (wheelModel.position - rotatingLever.position)); //rotatingLever.LookAt (wheelc.transform, transform.TransformPoint (new Vector3(1,0,0))); //rotatingLever.localRotation = Quaternion.LookRotation (wheelModel.position, rotatingLever.position + rotatingLever.TransformDirection (1,0,0)); rotatingLever.LookAt ((rotatingLever.position + part.transform.TransformDirection (1, 0, 0)), Vector3.Normalize (wheelModel.position - rotatingLever.position)); } } } }
  2. I don't want to create a drop box account or anything else
  3. ship = Kings Comunication Sattelite version = 0.23.0 description = type = VAB PART { part = probeCoreSphere_4293650274 partName = Part pos = -0.0276157,14.97161,-0.03063026 rot = 0,0,0,1 attRot = 0,0,0,1 mir = 1,1,1 istg = 0 dstg = 0 sidx = -1 sqor = -1 attm = 0 link = fuelTankSmall_4293633756 attN = bottom,fuelTankSmall_4293633756 EVENTS { } ACTIONS { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Active WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleSAS isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Surfaced { } Flew { } FlewBy { } Orbited { } SubOrbited { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = fuelTankSmall_4293633756 partName = Part pos = -0.0276157,14.07802,-0.03063026 rot = 0,0,0,1 attRot = 0,0,0,1 mir = 1,1,1 istg = 0 dstg = 0 sidx = -1 sqor = -1 attm = 0 link = mediumDishAntenna_4293650008 link = mediumDishAntenna_4293632748 link = mediumDishAntenna_4293632536 link = mediumDishAntenna_4293632324 link = solarPanels4_4293650208 link = solarPanels4_4293631846 link = solarPanels4_4293631742 link = solarPanels4_4293631638 link = batteryPack_4293623860 link = batteryPack_4293623636 link = batteryPack_4293623596 link = batteryPack_4293623556 link = liquidEngineMini_4293649592 attN = top,probeCoreSphere_4293650274 attN = bottom,liquidEngineMini_4293649592 EVENTS { } ACTIONS { } RESOURCE { name = LiquidFuel amount = 90 maxAmount = 90 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 110 maxAmount = 110 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = mediumDishAntenna_4293650008 partName = Part pos = -0.0276156,14.4669,0.5558232 rot = -0.7071068,-6.181724E-08,6.181724E-08,-0.7071068 attRot = 0,0,0,1 mir = 1,1,1 istg = 0 dstg = 0 sidx = -1 sqor = -1 attm = 1 sym = mediumDishAntenna_4293632748 sym = mediumDishAntenna_4293632536 sym = mediumDishAntenna_4293632324 srfN = srfAttach,fuelTankSmall_4293633756 EVENTS { } ACTIONS { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiIcon = Toggle guiName = Blink Lights category = Toggle guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleDataTransmitter isEnabled = True EVENTS { StartTransmission { active = True guiActive = True guiIcon = Transmit Data guiName = Transmit Data category = Transmit Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } StopTransmission { active = False guiActive = True guiIcon = Stop Transmitting guiName = Stop Transmitting category = Stop Transmitting guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { part = mediumDishAntenna_4293632748 partName = Part pos = 0.5588377,14.4669,-0.03063033 rot = -0.5,-0.5000001,0.5000001,-0.5 attRot = 0,0,0,1 mir = 1,1,1 istg = 0 dstg = 0 sidx = -1 sqor = -1 attm = 1 sym = mediumDishAntenna_4293650008 sym = mediumDishAntenna_4293632536 sym = mediumDishAntenna_4293632324 srfN = srfAttach,fuelTankSmall_4293633756 EVENTS { } ACTIONS { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiIcon = Toggle guiName = Blink Lights category = Toggle guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleDataTransmitter isEnabled = True EVENTS { StartTransmission { active = True guiActive = True guiIcon = Transmit Data guiName = Transmit Data category = Transmit Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } StopTransmission { active = False guiActive = True guiIcon = Stop Transmitting guiName = Stop Transmitting category = Stop Transmitting guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { part = mediumDishAntenna_4293632536 partName = Part pos = -0.02761585,14.4669,-0.6170838 rot = 9.272586E-08,-0.7071068,0.7071068,9.272586E-08 attRot = 0,0,0,1 mir = 1,1,1 istg = 0 dstg = 0 sidx = -1 sqor = -1 attm = 1 sym = mediumDishAntenna_4293650008 sym = mediumDishAntenna_4293632748 sym = mediumDishAntenna_4293632324 srfN = srfAttach,fuelTankSmall_4293633756 EVENTS { } ACTIONS { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiIcon = Toggle guiName = Blink Lights category = Toggle guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleDataTransmitter isEnabled = True EVENTS { StartTransmission { active = True guiActive = True guiIcon = Transmit Data guiName = Transmit Data category = Transmit Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } StopTransmission { active = False guiActive = True guiIcon = Stop Transmitting guiName = Stop Transmitting category = Stop Transmitting guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { part = mediumDishAntenna_4293632324 partName = Part pos = -0.6140692,14.4669,-0.03063012 rot = 0.5000001,-0.5,0.5,0.5000001 attRot = 0,0,0,1 mir = 1,1,1 istg = 0 dstg = 0 sidx = -1 sqor = -1 attm = 1 sym = mediumDishAntenna_4293650008 sym = mediumDishAntenna_4293632748 sym = mediumDishAntenna_4293632536 srfN = srfAttach,fuelTankSmall_4293633756 EVENTS { } ACTIONS { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiIcon = Toggle guiName = Blink Lights category = Toggle guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleDataTransmitter isEnabled = True EVENTS { StartTransmission { active = True guiActive = True guiIcon = Transmit Data guiName = Transmit Data category = Transmit Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } StopTransmission { active = False guiActive = True guiIcon = Stop Transmitting guiName = Stop Transmitting category = Stop Transmitting guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { part = solarPanels4_4293650208 partName = Part pos = -0.0276157,13.87702,0.5308493 rot = 0,0.7071068,0,0.7071068 attRot = 0,0,0,1 mir = 1,1,1 istg = 0 dstg = 0 sidx = -1 sqor = -1 attm = 1 sym = solarPanels4_4293631846 sym = solarPanels4_4293631742 sym = solarPanels4_4293631638 srfN = srfAttach,fuelTankSmall_4293633756 EVENTS { } ACTIONS { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } MODULE { name = KASModuleGrab isEnabled = True grabbed = False evaHolderVesselName = EVENTS { ContextMenuGrab { active = True guiActive = False guiIcon = Grab guiName = Grab category = Grab guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuDrop { active = True guiActive = False guiIcon = Drop guiName = Drop category = Drop guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuEvaAttach { active = True guiActive = False guiIcon = Attach guiName = Attach category = Attach guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { part = solarPanels4_4293631846 partName = Part pos = 0.5338638,13.87702,-0.03063023 rot = 0,1,0,0 attRot = 0,0,0,1 mir = 1,1,1 istg = 0 dstg = 0 sidx = -1 sqor = -1 attm = 1 sym = solarPanels4_4293650208 sym = solarPanels4_4293631742 sym = solarPanels4_4293631638 srfN = srfAttach,fuelTankSmall_4293633756 EVENTS { } ACTIONS { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } MODULE { name = KASModuleGrab isEnabled = True grabbed = False evaHolderVesselName = EVENTS { ContextMenuGrab { active = True guiActive = False guiIcon = Grab guiName = Grab category = Grab guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuDrop { active = True guiActive = False guiIcon = Drop guiName = Drop category = Drop guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuEvaAttach { active = True guiActive = False guiIcon = Attach guiName = Attach category = Attach guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { part = solarPanels4_4293631742 partName = Part pos = -0.02761575,13.87702,-0.5921098 rot = 0,0.7071068,0,-0.7071069 attRot = 0,0,0,1 mir = 1,1,1 istg = 0 dstg = 0 sidx = -1 sqor = -1 attm = 1 sym = solarPanels4_4293650208 sym = solarPanels4_4293631846 sym = solarPanels4_4293631638 srfN = srfAttach,fuelTankSmall_4293633756 EVENTS { } ACTIONS { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } MODULE { name = KASModuleGrab isEnabled = True grabbed = False evaHolderVesselName = EVENTS { ContextMenuGrab { active = True guiActive = False guiIcon = Grab guiName = Grab category = Grab guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuDrop { active = True guiActive = False guiIcon = Drop guiName = Drop category = Drop guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuEvaAttach { active = True guiActive = False guiIcon = Attach guiName = Attach category = Attach guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { part = solarPanels4_4293631638 partName = Part pos = -0.5890952,13.87702,-0.03063023 rot = 0,0,0,-1 attRot = 0,0,0,1 mir = 1,1,1 istg = 0 dstg = 0 sidx = -1 sqor = -1 attm = 1 sym = solarPanels4_4293650208 sym = solarPanels4_4293631846 sym = solarPanels4_4293631742 srfN = srfAttach,fuelTankSmall_4293633756 EVENTS { } ACTIONS { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } MODULE { name = KASModuleGrab isEnabled = True grabbed = False evaHolderVesselName = EVENTS { ContextMenuGrab { active = True guiActive = False guiIcon = Grab guiName = Grab category = Grab guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuDrop { active = True guiActive = False guiIcon = Drop guiName = Drop category = Drop guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuEvaAttach { active = True guiActive = False guiIcon = Attach guiName = Attach category = Attach guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { part = batteryPack_4293623860 partName = Part pos = -0.4333887,13.83606,0.3751427 rot = -2.233862E-09,-0.9238795,8.336882E-09,-0.3826835 attRot = 0,0,0,1 mir = 1,1,1 istg = 0 dstg = 0 sidx = -1 sqor = -1 attm = 1 sym = batteryPack_4293623636 sym = batteryPack_4293623596 sym = batteryPack_4293623556 srfN = srfAttach,fuelTankSmall_4293633756 EVENTS { } ACTIONS { } MODULE { name = KASModuleGrab isEnabled = True grabbed = False evaHolderVesselName = EVENTS { ContextMenuGrab { active = True guiActive = False guiIcon = Grab guiName = Grab category = Grab guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuDrop { active = True guiActive = False guiIcon = Drop guiName = Drop category = Drop guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuEvaAttach { active = True guiActive = False guiIcon = Attach guiName = Attach category = Attach guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = batteryPack_4293623636 partName = Part pos = 0.3781572,13.83606,0.3751427 rot = 4.315487E-09,-0.9238796,7.474645E-09,0.3826834 attRot = 0,0,0,1 mir = 1,1,1 istg = 0 dstg = 0 sidx = -1 sqor = -1 attm = 1 sym = batteryPack_4293623860 sym = batteryPack_4293623596 sym = batteryPack_4293623556 srfN = srfAttach,fuelTankSmall_4293633756 EVENTS { } ACTIONS { } MODULE { name = KASModuleGrab isEnabled = True grabbed = False evaHolderVesselName = EVENTS { ContextMenuGrab { active = True guiActive = False guiIcon = Grab guiName = Grab category = Grab guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuDrop { active = True guiActive = False guiIcon = Drop guiName = Drop category = Drop guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuEvaAttach { active = True guiActive = False guiIcon = Attach guiName = Attach category = Attach guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = batteryPack_4293623596 partName = Part pos = 0.3781573,13.83606,-0.4364032 rot = 8.336883E-09,-0.3826835,2.233862E-09,0.9238796 attRot = 0,0,0,1 mir = 1,1,1 istg = 0 dstg = 0 sidx = -1 sqor = -1 attm = 1 sym = batteryPack_4293623860 sym = batteryPack_4293623636 sym = batteryPack_4293623556 srfN = srfAttach,fuelTankSmall_4293633756 EVENTS { } ACTIONS { } MODULE { name = KASModuleGrab isEnabled = True grabbed = False evaHolderVesselName = EVENTS { ContextMenuGrab { active = True guiActive = False guiIcon = Grab guiName = Grab category = Grab guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuDrop { active = True guiActive = False guiIcon = Drop guiName = Drop category = Drop guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuEvaAttach { active = True guiActive = False guiIcon = Attach guiName = Attach category = Attach guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = batteryPack_4293623556 partName = Part pos = -0.4333886,13.83606,-0.4364032 rot = 7.474645E-09,0.3826834,-4.315487E-09,0.9238796 attRot = 0,0,0,1 mir = 1,1,1 istg = 0 dstg = 0 sidx = -1 sqor = -1 attm = 1 sym = batteryPack_4293623860 sym = batteryPack_4293623636 sym = batteryPack_4293623596 srfN = srfAttach,fuelTankSmall_4293633756 EVENTS { } ACTIONS { } MODULE { name = KASModuleGrab isEnabled = True grabbed = False evaHolderVesselName = EVENTS { ContextMenuGrab { active = True guiActive = False guiIcon = Grab guiName = Grab category = Grab guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuDrop { active = True guiActive = False guiIcon = Drop guiName = Drop category = Drop guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuEvaAttach { active = True guiActive = False guiIcon = Attach guiName = Attach category = Attach guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = liquidEngineMini_4293649592 partName = Part pos = -0.0276157,13.52277,-0.03063026 rot = 0,0,0,1 attRot = 0,0,0,1 mir = 1,1,1 istg = 0 dstg = 0 sidx = -1 sqor = -1 attm = 0 link = stackDecoupler_4293612092 attN = top,fuelTankSmall_4293633756 attN = bottom,stackDecoupler_4293612092 EVENTS { } ACTIONS { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleJettison isEnabled = True EVENTS { Jettison { active = False guiActive = True guiIcon = Jettison guiName = Jettison category = Jettison guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { JettisonAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False EVENTS { LockGimbal { active = True guiActive = True guiActiveEditor = True guiIcon = Lock Gimbal guiName = Lock Gimbal category = Lock Gimbal guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } FreeGimbal { active = False guiActive = True guiActiveEditor = True guiIcon = Free Gimbal guiName = Free Gimbal category = Free Gimbal guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { part = stackDecoupler_4293612092 partName = Part pos = -0.0276157,13.08271,-0.03063026 rot = 0,0,0,1 attRot = 0,0,0,1 mir = 1,1,1 istg = 1 dstg = 1 sidx = -1 sqor = -1 attm = 0 link = solidBooster1-1_4293608744 attN = bottom,solidBooster1-1_4293608744 attN = top,liquidEngineMini_4293649592 EVENTS { } ACTIONS { } MODULE { name = ModuleDecouple isEnabled = True isDecoupled = False EVENTS { Decouple { active = True guiActive = True guiIcon = Decouple guiName = Decouple category = Decouple guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { DecoupleAction { actionGroup = None } } } } PART { part = solidBooster1-1_4293608744 partName = Part pos = -0.0276157,9.010221,-0.03063026 rot = 0,0,0,1 attRot = 0,0,0,1 mir = 1,1,1 istg = 2 dstg = 2 sidx = -1 sqor = -1 attm = 0 link = winglet3_4293606418 link = winglet3_4293606066 link = winglet3_4293606024 link = winglet3_4293605982 link = launchClamp1_4293649522 link = launchClamp1_4293604520 link = launchClamp1_4293604410 link = launchClamp1_4293604300 link = parachuteRadial_4293588054 link = parachuteRadial_4293587662 link = parachuteRadial_4293587612 link = parachuteRadial_4293587562 attN = top,stackDecoupler_4293612092 EVENTS { } ACTIONS { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0.9 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleAnimateHeat isEnabled = True EVENTS { } ACTIONS { } } RESOURCE { name = SolidFuel amount = 850 maxAmount = 850 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = winglet3_4293606418 partName = Part pos = -1.125408,6.084227,-0.03063022 rot = 0,0,0,-1 attRot = 0,0,0,1 mir = 1,1,1 istg = 2 dstg = 2 sidx = -1 sqor = -1 attm = 1 sym = winglet3_4293606066 sym = winglet3_4293606024 sym = winglet3_4293605982 srfN = srfAttach,solidBooster1-1_4293608744 EVENTS { } ACTIONS { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = False ignoreYaw = False ignoreRoll = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } } PART { part = winglet3_4293606066 partName = Part pos = -0.02761573,6.084227,1.067162 rot = 0,-0.7071068,0,-0.7071068 attRot = 0,0,0,1 mir = 1,1,1 istg = 2 dstg = 2 sidx = -1 sqor = -1 attm = 1 sym = winglet3_4293606418 sym = winglet3_4293606024 sym = winglet3_4293605982 srfN = srfAttach,solidBooster1-1_4293608744 EVENTS { } ACTIONS { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = False ignoreYaw = False ignoreRoll = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } } PART { part = winglet3_4293606024 partName = Part pos = 1.070176,6.084227,-0.03063039 rot = 0,-1,0,4.371139E-08 attRot = 0,0,0,1 mir = 1,1,1 istg = 2 dstg = 2 sidx = -1 sqor = -1 attm = 1 sym = winglet3_4293606418 sym = winglet3_4293606066 sym = winglet3_4293605982 srfN = srfAttach,solidBooster1-1_4293608744 EVENTS { } ACTIONS { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = False ignoreYaw = False ignoreRoll = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } } PART { part = winglet3_4293605982 partName = Part pos = -0.0276158,6.084227,-1.128422 rot = 0,-0.7071068,0,0.7071068 attRot = 0,0,0,1 mir = 1,1,1 istg = 2 dstg = 2 sidx = -1 sqor = -1 attm = 1 sym = winglet3_4293606418 sym = winglet3_4293606066 sym = winglet3_4293606024 srfN = srfAttach,solidBooster1-1_4293608744 EVENTS { } ACTIONS { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = False ignoreYaw = False ignoreRoll = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } } PART { part = launchClamp1_4293649522 partName = Strut pos = 0.6078715,4.670008,0.604857 rot = 0.06645229,0.9098437,0.16043,-0.3768696 attRot = 0.1736482,0,0,0.9848078 mir = 1,1,1 istg = 2 dstg = 2 sidx = -1 sqor = -1 attm = 1 sym = launchClamp1_4293604520 sym = launchClamp1_4293604410 sym = launchClamp1_4293604300 srfN = srfAttach,solidBooster1-1_4293608744 EVENTS { } ACTIONS { } MODULE { name = LaunchClamp isEnabled = True scaleFactor = 1.953461 height = 4.928967 towerRot = -0.06645229,-0.9098437,-0.16043,-0.3768696 EVENTS { Release { active = False guiActive = True guiIcon = Release Clamp guiName = Release Clamp category = Release Clamp guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ReleaseClamp { actionGroup = None } } } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = False throttle = 0 EVENTS { Activate { active = True guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = True guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { part = launchClamp1_4293604520 partName = Strut pos = 0.6078715,4.670008,-0.6661174 rot = 0.16043,0.3768696,0.06645229,-0.9098437 attRot = 0.1736482,0,0,0.9848078 mir = 1,1,1 istg = 2 dstg = 2 sidx = -1 sqor = -1 attm = 1 sym = launchClamp1_4293649522 sym = launchClamp1_4293604410 sym = launchClamp1_4293604300 srfN = srfAttach,solidBooster1-1_4293608744 EVENTS { } ACTIONS { } MODULE { name = LaunchClamp isEnabled = True scaleFactor = 1.953461 height = 4.928967 towerRot = -0.16043,-0.3768696,-0.06645229,-0.9098437 EVENTS { Release { active = False guiActive = True guiIcon = Release Clamp guiName = Release Clamp category = Release Clamp guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ReleaseClamp { actionGroup = None } } } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = False throttle = 0 EVENTS { Activate { active = True guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = True guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { part = launchClamp1_4293604410 partName = Strut pos = -0.663103,4.670008,-0.6661174 rot = 0.16043,-0.3768697,-0.06645229,-0.9098437 attRot = 0.1736482,0,0,0.9848078 mir = 1,1,1 istg = 2 dstg = 2 sidx = -1 sqor = -1 attm = 1 sym = launchClamp1_4293649522 sym = launchClamp1_4293604520 sym = launchClamp1_4293604300 srfN = srfAttach,solidBooster1-1_4293608744 EVENTS { } ACTIONS { } MODULE { name = LaunchClamp isEnabled = True scaleFactor = 1.953461 height = 4.928967 towerRot = -0.16043,0.3768697,0.06645229,-0.9098437 EVENTS { Release { active = False guiActive = True guiIcon = Release Clamp guiName = Release Clamp category = Release Clamp guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ReleaseClamp { actionGroup = None } } } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = False throttle = 0 EVENTS { Activate { active = True guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = True guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { part = launchClamp1_4293604300 partName = Strut pos = -0.6631029,4.670008,0.604857 rot = 0.06645229,-0.9098437,-0.16043,-0.3768696 attRot = 0.1736482,0,0,0.9848078 mir = 1,1,1 istg = 2 dstg = 2 sidx = -1 sqor = -1 attm = 1 sym = launchClamp1_4293649522 sym = launchClamp1_4293604520 sym = launchClamp1_4293604410 srfN = srfAttach,solidBooster1-1_4293608744 EVENTS { } ACTIONS { } MODULE { name = LaunchClamp isEnabled = True scaleFactor = 1.953461 height = 4.928967 towerRot = -0.06645229,0.9098437,0.16043,-0.3768696 EVENTS { Release { active = False guiActive = True guiIcon = Release Clamp guiName = Release Clamp category = Release Clamp guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ReleaseClamp { actionGroup = None } } } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = False throttle = 0 EVENTS { Activate { active = True guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = True guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { part = parachuteRadial_4293588054 partName = Part pos = 0.5927348,12.67482,-0.03063022 rot = 0,0.7071068,0,-0.7071068 attRot = 0,0,0,1 mir = 1,1,1 istg = 1 dstg = 1 sidx = -1 sqor = -1 attm = 1 sym = parachuteRadial_4293587662 sym = parachuteRadial_4293587612 sym = parachuteRadial_4293587562 srfN = srfAttach,solidBooster1-1_4293608744 EVENTS { } ACTIONS { } MODULE { name = ModuleParachute isEnabled = True persistentState = STOWED deployAltitude = 500 minAirPressureToOpen = 0.01 staged = False deployAltitude_UIFlight { controlEnabled = True minValue = 50 maxValue = 5000 stepIncrement = 50 } minAirPressureToOpen_UIFlight { controlEnabled = True minValue = 0.01 maxValue = 0.5 stepIncrement = 0.01 } EVENTS { Deploy { active = True guiActive = True guiIcon = Deploy Chute guiName = Deploy Chute category = Deploy Chute guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } CutParachute { active = False guiActive = True guiIcon = Cut Parachute guiName = Cut Parachute category = Cut Parachute guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Repack { active = False guiActive = False guiIcon = Repack Chute guiName = Repack Chute category = Repack Chute guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } CutAction { actionGroup = None } } } MODULE { name = KASModuleGrab isEnabled = True grabbed = False evaHolderVesselName = EVENTS { ContextMenuGrab { active = True guiActive = False guiIcon = Grab guiName = Grab category = Grab guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuDrop { active = True guiActive = False guiIcon = Drop guiName = Drop category = Drop guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuEvaAttach { active = True guiActive = False guiIcon = Attach guiName = Attach category = Attach guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { part = parachuteRadial_4293587662 partName = Part pos = -0.02761563,12.67482,-0.6509807 rot = 0,0,0,-1 attRot = 0,0,0,1 mir = 1,1,1 istg = 1 dstg = 1 sidx = -1 sqor = -1 attm = 1 sym = parachuteRadial_4293588054 sym = parachuteRadial_4293587612 sym = parachuteRadial_4293587562 srfN = srfAttach,solidBooster1-1_4293608744 EVENTS { } ACTIONS { } MODULE { name = ModuleParachute isEnabled = True persistentState = STOWED deployAltitude = 500 minAirPressureToOpen = 0.01 staged = False deployAltitude_UIFlight { controlEnabled = True minValue = 50 maxValue = 5000 stepIncrement = 50 } minAirPressureToOpen_UIFlight { controlEnabled = True minValue = 0.01 maxValue = 0.5 stepIncrement = 0.01 } EVENTS { Deploy { active = True guiActive = True guiIcon = Deploy Chute guiName = Deploy Chute category = Deploy Chute guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } CutParachute { active = False guiActive = True guiIcon = Cut Parachute guiName = Cut Parachute category = Cut Parachute guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Repack { active = False guiActive = False guiIcon = Repack Chute guiName = Repack Chute category = Repack Chute guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } CutAction { actionGroup = None } } } MODULE { name = KASModuleGrab isEnabled = True grabbed = False evaHolderVesselName = EVENTS { ContextMenuGrab { active = True guiActive = False guiIcon = Grab guiName = Grab category = Grab guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuDrop { active = True guiActive = False guiIcon = Drop guiName = Drop category = Drop guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuEvaAttach { active = True guiActive = False guiIcon = Attach guiName = Attach category = Attach guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { part = parachuteRadial_4293587612 partName = Part pos = -0.6479662,12.67482,-0.03063024 rot = 0,-0.7071069,0,-0.7071068 attRot = 0,0,0,1 mir = 1,1,1 istg = 1 dstg = 1 sidx = -1 sqor = -1 attm = 1 sym = parachuteRadial_4293588054 sym = parachuteRadial_4293587662 sym = parachuteRadial_4293587562 srfN = srfAttach,solidBooster1-1_4293608744 EVENTS { } ACTIONS { } MODULE { name = ModuleParachute isEnabled = True persistentState = STOWED deployAltitude = 500 minAirPressureToOpen = 0.01 staged = False deployAltitude_UIFlight { controlEnabled = True minValue = 50 maxValue = 5000 stepIncrement = 50 } minAirPressureToOpen_UIFlight { controlEnabled = True minValue = 0.01 maxValue = 0.5 stepIncrement = 0.01 } EVENTS { Deploy { active = True guiActive = True guiIcon = Deploy Chute guiName = Deploy Chute category = Deploy Chute guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } CutParachute { active = False guiActive = True guiIcon = Cut Parachute guiName = Cut Parachute category = Cut Parachute guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Repack { active = False guiActive = False guiIcon = Repack Chute guiName = Repack Chute category = Repack Chute guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } CutAction { actionGroup = None } } } MODULE { name = KASModuleGrab isEnabled = True grabbed = False evaHolderVesselName = EVENTS { ContextMenuGrab { active = True guiActive = False guiIcon = Grab guiName = Grab category = Grab guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuDrop { active = True guiActive = False guiIcon = Drop guiName = Drop category = Drop guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuEvaAttach { active = True guiActive = False guiIcon = Attach guiName = Attach category = Attach guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { part = parachuteRadial_4293587562 partName = Part pos = -0.0276157,12.67482,0.5897201 rot = 0,-1,0,0 attRot = 0,0,0,1 mir = 1,1,1 istg = 1 dstg = 1 sidx = -1 sqor = -1 attm = 1 sym = parachuteRadial_4293588054 sym = parachuteRadial_4293587662 sym = parachuteRadial_4293587612 srfN = srfAttach,solidBooster1-1_4293608744 EVENTS { } ACTIONS { } MODULE { name = ModuleParachute isEnabled = True persistentState = STOWED deployAltitude = 500 minAirPressureToOpen = 0.01 staged = False deployAltitude_UIFlight { controlEnabled = True minValue = 50 maxValue = 5000 stepIncrement = 50 } minAirPressureToOpen_UIFlight { controlEnabled = True minValue = 0.01 maxValue = 0.5 stepIncrement = 0.01 } EVENTS { Deploy { active = True guiActive = True guiIcon = Deploy Chute guiName = Deploy Chute category = Deploy Chute guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } CutParachute { active = False guiActive = True guiIcon = Cut Parachute guiName = Cut Parachute category = Cut Parachute guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Repack { active = False guiActive = False guiIcon = Repack Chute guiName = Repack Chute category = Repack Chute guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } CutAction { actionGroup = None } } } MODULE { name = KASModuleGrab isEnabled = True grabbed = False evaHolderVesselName = EVENTS { ContextMenuGrab { active = True guiActive = False guiIcon = Grab guiName = Grab category = Grab guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuDrop { active = True guiActive = False guiIcon = Drop guiName = Drop category = Drop guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ContextMenuEvaAttach { active = True guiActive = False guiIcon = Attach guiName = Attach category = Attach guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } }
  4. I did fix the .cfg, S.A.S, engines, science tree, crew report etc only 2 things to fix, airlock and collision box This link has nothing fixed thought
  5. Here's the link, Please fix it, collision box mostly http://kerbalspaceprogram.com/normandy-sr2/
  6. Yes im working on something similar to kethane butmore basic. If its not possible, is there a way to use G force to do the same thing, ill do an some kind of average.
  7. Is there a command or module that can be written in a .cfg file so something happens only when a craft’s status is “Landedâ€Â. For example, I want my drill to only start drilling when the craft is landed. This is to keep the add-on as simple has possible for update compatibility. Thanks for the help.
  8. In brief, these are actually features suggestions that I would hope to see, has you decide if you want to coop with your friend or do a "vs". And yes 4 player servers would be fine, we don't need 16.
  9. Well a first goal would be to complete your tech tree, Learn more about space and hopefully ( if they add random generated planets) Know more about their composition and etc . Also when you play with your friend, you make your own goal. The goal is your imagination .
  10. 2 Game modes Cooperative and competitive Cooperative - Option to set tech tree share or individual tech tree - Option to see you friend is ship normally or needing to scan it - Money trading for eventual costs - Company logos and flags that can be added on the ship - Live play (Mostly already a suggestion) Competitive - Contracts competitions - Some of the above
  11. I made a building, it appears correctly in the game but has soon has i got to the space port to reload, when i got back, its not there anymore, it just vanishes. Any idea why, something i missed after adding it to the map?? Here : http://hpics.li/e4506c4
  12. I have an alienware with 12 G of ram but when i go to 50% of ram usage, the game crashes. This is not happening with any other games. Seems like KSP ( Unity engine) can only deal with around 5 g of ram and won't use more. Is there a possibility you could fix this? Heres the error file i get. I apparently run out of physical memory, i think. Unity Player [version: Unity 4.1.2f1_911c7369eeac] KSP.exe caused an Access Violation (0xc0000005) in module KSP.exe at 0023:004dcbca. Error occurred at 2013-10-06_013236. C:\Program Files (x86)\Steam\SteamApps\common\Kerbal Space Program\KSP.exe, run by Jerome K. 34% memory in use. 0 MB physical memory [0 MB free]. 0 MB paging file [0 MB free]. 0 MB user address space [132 MB free]. Read from location 00000004 caused an access violation. Context: EDI: 0x00000004 ESI: 0xbe8c720c EAX: 0x00000000 EBX: 0x0026f82c ECX: 0xff910034 EDX: 0xffd1002c EIP: 0x004dcbca EBP: 0x0026f7c4 SegCs: 0x00000023 EFlags: 0x00010293 ESP: 0x0026f78c SegSs: 0x0000002b Bytes at CS:EIP: 8b 1f 89 77 fc 8b 46 08 81 e3 00 00 00 c0 c1 e8 Stack: 0x0026f78c: 00bac3b4 00000018 420fb688 03403c00 ...........B.<@. 0x0026f79c: ffd1002c ffd1002c 03403c00 ff910034 ,...,....<@.4... 0x0026f7ac: ffd1002c 0026f7c4 00000000 0026f82c ,.....&.....,.&. 0x0026f7bc: 0026f81c 000251a1 0026f89c 004ddcad ..&..Q....&...M. 0x0026f7cc: ffd1002c 00000001 00bac3b4 0026f808 ,.............&. 0x0026f7dc: 00000000 00260000 00000000 00000000 ......&......... 0x0026f7ec: 00000000 00000000 00000000 00000020 ............ ... 0x0026f7fc: 00000000 00000006 00000010 0026f800 ..............&. 0x0026f80c: 00000000 00000075 00000000 00000000 ....u........... 0x0026f81c: 00000000 00000075 000251a1 000251a1 ....u....Q...Q.. 0x0026f82c: f7090afc 00000075 00000000 000251a1 ....u........Q.. 0x0026f83c: 000251a1 00000000 0026f801 00000000 .Q........&..... 0x0026f84c: 03810058 0381005c 03810068 00000000 X...\...h....... 0x0026f85c: 00000000 02002000 00000000 00000000 ..... .......... 0x0026f86c: f38d0314 000251a1 420fb684 00000018 .....Q.....B.... 0x0026f87c: f38d03b4 0026f890 00534993 00000003 ......&..IS..... 0x0026f88c: 00000000 0026f8a4 004f69db f38d0354 ......&..iO.T... 0x0026f89c: 0026f92c 004f3c27 00000001 004e207d ,.&.'<O.....} N. 0x0026f8ac: f38d0314 f38d0354 04adffc8 f38d02d8 ....T........... 0x0026f8bc: 00000001 03400100 f582ffa4 00000000 ......@......... 0x0026f8cc: 0000793e 00000000 f670c07c 00000000 >y......|.p..... 0x0026f8dc: 0026f904 0026f8f0 f3679a00 0001d8ea ..&...&...g..... 0x0026f8ec: 75b83c07 75b83bf4 f582ffcc 0001d8ea .<.u.;.u........ 0x0026f8fc: 03462ba4 03403c00 ffbe3ecc ffd1002c .+F..<@..>..,... 0x0026f90c: 03403c00 ffd1002c ffd1002c 03403c00 .<@.,...,....<@. 0x0026f91c: f670c054 ffd10001 0000793c 00bac3b4 T.p.....<y...... 0x0026f92c: 0026f940 004e21e9 00000001 f38d0314 @.&..!N......... 0x0026f93c: f38d0354 0026f95c 004e2d34 00000001 T...\.&.4-N..... 0x0026f94c: f38d0314 f38d0354 03462ba4 f38d02d8 ....T....+F..... 0x0026f95c: 0026f96c 004e3e75 03462ba4 03462ba4 l.&.u>N..+F..+F. 0x0026f96c: 0026fa38 004e4024 3d4ccccd 04adffc8 8.&[email protected]=.... 0x0026f97c: 00000001 00000000 004e0f3f 777d5f74 ........?.N.t_}w 0x0026f98c: 00000000 00000000 00000070 ffffffff ........p....... 0x0026f99c: ffffffff 777c743b 00000183 0026fa0c ....;t|w......&. 0x0026f9ac: 00376ed6 0026fa0c 004aa327 00000001 .n7...&.'.J..... 0x0026f9bc: 00376ee2 00000000 7782a61e 13b3934b .n7........wK... 0x0026f9cc: fffffffe 777c6d51 777c77c4 00000000 ....Qm|w.w|w.... 0x0026f9dc: 777d0735 777d06eb 0026fa54 00000000 5.}w..}wT.&..... 0x0026f9ec: 00000000 00000000 00000001 01548d80 ..............T. 0x0026f9fc: 0026fa34 004aa327 00000001 00377232 4.&.'.J.....2r7. 0x0026fa0c: 777d5f74 00000000 00000000 c2bb0000 t_}w............ 0x0026fa1c: c2ca0000 00000001 777d5f74 00000001 ........t_}w.... 0x0026fa2c: 034365d0 04adffc8 0126fa44 0026fa74 .eC.....D.&.t.&. 0x0026fa3c: 00579c9d 00000000 00000001 00000000 ..W............. 0x0026fa4c: 00000010 00000001 008506de 00000200 ................ 0x0026fa5c: 00000000 017c0349 02c52440 00000349 ....I.|.@$..I... 0x0026fa6c: 0000017c 00000654 0026fb8c 0057b3cb |...T.....&...W. 0x0026fa7c: 00000000 00000000 fffde000 034012bc ..............@. 0x0026fa8c: 77d225df 0026fa24 00000400 00000042 .%.w$.&.....B... 0x0026fa9c: 0000004f 028d95b7 03401c00 77d0e38c [email protected] 0x0026faac: 77d0e0f2 00c4f558 00000000 0000000f ...wX........... 0x0026fabc: 02f51dc8 6f6e6f00 6374652f 0026fa00 .....ono/etc..&. 0x0026facc: 006ef0b6 00000000 0000000f 0000000f ..n............. 0x0026fadc: 034015f4 0340162c 0340162c 00bb49f0 ..@.,.@.,[email protected].. 0x0026faec: 03401258 02f507d0 00000000 00000000 X.@............. 0x0026fafc: 0000004b 0000004f 02f50000 03027cb0 K...O........|.. 0x0026fb0c: 03401394 00000004 0026fa4c 77cffaea [email protected].&....w 0x0026fb1c: 0000005a 0000005f 49656e69 03401c00 Z..._...ineI..@. 0x0026fb2c: 00000000 00000000 00a6adf0 00000000 ................ 0x0026fb3c: 0000000f 0026fb70 00000000 616e614d ....p.&.....Mana 0x0026fb4c: 00646567 006dd223 00000000 00000007 ged.#.m......... 0x0026fb5c: 0000000f 006dd230 03027cb0 6f6e6f4d ....0.m..|..Mono 0x0026fb6c: 6e6f6d2f 6c642e6f 0000006c 0000000d /mono.dll....... 0x0026fb7c: 0000000f 02f51dc8 00000000 00000000 ................ 0x0026fb8c: 0026fba4 006a8648 00300000 00000000 ..&.H.j...0..... 0x0026fb9c: 00f649ad 00000001 0026fc34 006d9d50 .I......4.&.P.m. 0x0026fbac: 00300000 00000000 00f649ad 00000001 ..0......I...... 0x0026fbbc: 64e94dd4 00000000 00000000 fffde000 .M.d............ 0x0026fbcc: 00000044 00f62c7e 00f62c5e 00f62bf8 D...~,..^,...+.. 0x0026fbdc: 00000000 00000000 00000000 00000000 ................ 0x0026fbec: 00000000 00000000 00000000 00000c01 ................ 0x0026fbfc: 00000001 00000000 00000000 00010001 ................ 0x0026fc0c: 00000000 c0000005 00000000 00000000 ................ 0x0026fc1c: 0026fbbc 0026f1d4 0026fc70 006db520 ..&...&.p.&. .m. 0x0026fc2c: 64774c88 00000000 0026fc40 75cf336a .Lwd....@.&.j3.u 0x0026fc3c: fffde000 0026fc80 77d19f72 fffde000 ......&.r..w.... 0x0026fc4c: 757bbb4f 00000000 00000000 fffde000 O.{u............ 0x0026fc5c: c0000005 75d176c7 75d176c7 0026fc4c .....v.u.v.uL.&. 0x0026fc6c: 0026f1d8 ffffffff 77d571f5 028d829f ..&......q.w.... 0x0026fc7c: 00000000 0026fc98 77d19f45 006d9da3 ......&.E..w..m. 0x0026fc8c: fffde000 00000000 00000000 00000000 ................ 0x0026fc9c: 00000000 006d9da3 fffde000 00000000 ......m......... 0x0026fcac: 00000000 00000000 00000000 00000000 ................ 0x0026fcbc: 00000000 00000000 00000000 00000000 ................ 0x0026fccc: 00000000 00000000 00000000 00000000 ................ 0x0026fcdc: 00000000 00000000 00000000 00000000 ................ 0x0026fcec: 00000000 00000000 00000000 00000000 ................ 0x0026fcfc: 00000000 00000000 00000000 00000000 ................ 0x0026fd0c: 00000000 00000000 00000000 00000000 ................ 0x0026fd1c: 00000000 00000000 00000000 00000000 ................ 0x0026fd2c: 00000000 00000000 00000000 00000000 ................ 0x0026fd3c: 00000000 00000000 00000000 00000000 ................ 0x0026fd4c: 00000000 00000000 00000000 00000000 ................ 0x0026fd5c: 00000000 00000000 00000000 00000000 ................ 0x0026fd6c: 00000000 00000000 00000000 00000000 ................ 0x0026fd7c: 00000000 00000000 00000000 00000000 ................ 0x0026fd8c: 00000000 00000000 00000000 00000000 ................ 0x0026fd9c: 00000000 00000000 00000000 00000000 ................ 0x0026fdac: 00000000 00000000 00000000 00000000 ................ 0x0026fdbc: 00000000 00000000 00000000 00000000 ................ 0x0026fdcc: 00000000 00000000 00000000 00000000 ................ 0x0026fddc: 00000000 00000000 00000000 00000000 ................ 0x0026fdec: 00000000 00000000 00000000 00000000 ................ 0x0026fdfc: 00000000 00000000 00000000 00000000 ................ 0x0026fe0c: 00000000 00000000 00000000 00000000 ................ 0x0026fe1c: 00000000 00000000 00000000 00000000 ................ 0x0026fe2c: 00000000 00000000 00000000 00000000 ................ 0x0026fe3c: 00000000 00000000 00000000 00000000 ................ 0x0026fe4c: 00000000 00000000 00000000 00000000 ................ 0x0026fe5c: 00000000 00000000 00000000 00000000 ................ 0x0026fe6c: 00000000 00000000 00000000 00000000 ................ 0x0026fe7c: 00000000 00000000 00000000 00000000 ................ 0x0026fe8c: 00000000 00000000 00000000 00000000 ................ 0x0026fe9c: 00000000 00000000 00000000 00000000 ................ 0x0026feac: 00000000 00000000 00000000 00000000 ................ 0x0026febc: 00000000 00000000 00000000 00000000 ................ 0x0026fecc: 00000000 00000000 00000000 00000000 ................ 0x0026fedc: 00000000 00000000 00000000 00000000 ................ 0x0026feec: 00000000 00000000 00000000 00000000 ................ 0x0026fefc: 00000000 00000000 00000000 00000000 ................ 0x0026ff0c: 00000000 00000000 00000000 00000000 ................ 0x0026ff1c: 00000000 00000000 00000000 00000000 ................ 0x0026ff2c: 00000000 00000000 00000000 00000000 ................ 0x0026ff3c: 00000000 00000000 00000000 00000000 ................ 0x0026ff4c: 00000000 00000000 00000000 00000000 ................ 0x0026ff5c: 00000000 00000000 00000000 00000000 ................ 0x0026ff6c: 00000000 00000000 00000000 00000000 ................ 0x0026ff7c: 00000000 00000000 00000000 00000000 ................ 0x0026ff8c: 00000000 00000000 00000000 00000000 ................ 0x0026ff9c: 00000000 00000000 00000000 00000000 ................ 0x0026ffac: 00000000 00000000 00000000 00000000 ................ 0x0026ffbc: 00000000 00000000 00000000 00000000 ................ 0x0026ffcc: 00000000 00000000 00000000 00000000 ................ 0x0026ffdc: 00000000 00000000 00000000 00000000 ................ 0x0026ffec: 00000000 00000000 00000000 00000000 ................ 0x0026fffc: 00000000 .... Module 1 C:\Program Files (x86)\Steam\SteamApps\common\Kerbal Space Program\KSP.exe Image Base: 0x00300000 Image Size: 0x00a00000 File Size: 9952256 File Time: 2013-05-24_183012 Version: Company: Product: FileDesc: FileVer: 4.1.2.1635 ProdVer: 4.1.2.1635 Module 2 C:\Windows\system32\xinput1_3.dll Image Base: 0x00400000 Image Size: 0x00016000 File Size: 81768 File Time: 2007-04-04_195342 Version: Company: Microsoft Corporation Product: Microsoft® DirectX for Windows® FileDesc: Microsoft Common Controller API FileVer: 9.18.944.0 ProdVer: 9.18.944.0 Module 3 C:\Windows\system32\igdumd32.dll Image Base: 0x10000000 Image Size: 0x005e8000 File Size: 6120960 File Time: 2012-02-14_144452 Version: Company: Intel Corporation Product: Intel Graphics Accelerator Drivers for Windows 7(R) FileDesc: LDDM User Mode Driver for Intel(R) Graphics Technology FileVer: 8.15.10.2653 ProdVer: 8.15.10.2653 Module 4 C:\Windows\system32\BfLLR.dll Image Base: 0x10000000 Image Size: 0x0002f000 File Size: 174592 File Time: 2012-02-24_173602 Version: Company: Bigfoot Networks, Inc. Product: (TM) Killer PCI-E FileDesc: BFLLR Dynamic Library FileVer: 6.0.0.35 ProdVer: 6.0.0.35 Module 5 C:\Program Files (x86)\NVIDIA Corporation\CoProcManager\detoured.dll Image Base: 0x0f000000 Image Size: 0x00006000 File Size: 4096 File Time: 2012-03-04_185200 Version: Company: Product: FileDesc: FileVer: 0.0.0.0 ProdVer: 0.0.0.0 Module 6 C:\Program Files (x86)\Steam\SteamApps\common\Kerbal Space Program\KSP_Data\Mono\mono.dll Image Base: 0x10000000 Image Size: 0x0022b000 File Size: 2094592 File Time: 2013-05-24_183030 Version: Company: Product: FileDesc: FileVer: 0.0.0.0 ProdVer: 0.0.0.0 Module 7 C:\Windows\system32\HID.DLL Image Base: 0x580d0000 Image Size: 0x00009000 File Size: 22016 File Time: 2009-07-13_211526 Version: Company: Microsoft Corporation Product: Système d'exploitation Microsoft® Windows® FileDesc: Bibliothèque d’utilisateur HID FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 8 C:\Windows\system32\nvd3dum.dll Image Base: 0x5e780000 Image Size: 0x00e67000 File Size: 15028544 File Time: 2012-03-04_185200 Version: Company: NVIDIA Corporation Product: NVIDIA Windows WDDM D3D driver FileDesc: NVIDIA WDDM D3D Driver, Version 296.16 FileVer: 8.17.12.9616 ProdVer: 8.17.12.9616 Module 9 C:\Windows\system32\nvapi.dll Image Base: 0x60640000 Image Size: 0x00259000 File Size: 2316608 File Time: 2012-03-04_185200 Version: Company: NVIDIA Corporation Product: NVIDIA Windows drivers FileDesc: NVIDIA NVAPI Library, Version 296.16 FileVer: 8.17.12.9616 ProdVer: 8.17.12.9616 Module 10 C:\Windows\system32\nvumdshim.dll Image Base: 0x608a0000 Image Size: 0x000cb000 File Size: 813376 File Time: 2012-03-04_185200 Version: Company: NVIDIA Corporation Product: NVIDIA D3D shim drivers FileDesc: NVIDIA D3D Shim Driver, Version 296.16 FileVer: 8.17.12.9616 ProdVer: 8.17.12.9616 Module 11 C:\Windows\system32\DDRAW.dll Image Base: 0x63d50000 Image Size: 0x000e7000 File Size: 531968 File Time: 2009-07-13_211512 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: Microsoft DirectDraw FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 12 C:\Windows\system32\dwmapi.dll Image Base: 0x69320000 Image Size: 0x00013000 File Size: 67072 File Time: 2009-07-13_211514 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Microsoft Desktop Window Manager API FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 13 C:\Windows\system32\webio.dll Image Base: 0x69340000 Image Size: 0x0004f000 File Size: 314880 File Time: 2012-07-17_170954 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: API des protocoles de transfert Web FileVer: 6.1.7601.17725 ProdVer: 6.1.7601.17725 Module 14 C:\Windows\system32\WINHTTP.dll Image Base: 0x69390000 Image Size: 0x00058000 File Size: 351232 File Time: 2010-11-20_232410 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: Services HTTP Windows FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 15 C:\Windows\system32\uxtheme.dll Image Base: 0x69770000 Image Size: 0x00080000 File Size: 245760 File Time: 2009-07-13_211126 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: Bibliothèque de thèmes Ux Microsoft FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 16 C:\Windows\system32\credssp.dll Image Base: 0x69f60000 Image Size: 0x00008000 File Size: 17408 File Time: 2010-11-20_232434 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Credential Delegation Security Package FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 17 C:\Program Files (x86)\NVIDIA Corporation\CoProcManager\nvdxgiwrap.dll Image Base: 0x6a6a0000 Image Size: 0x0002f000 File Size: 182080 File Time: 2012-03-04_185200 Version: Company: NVIDIA Corporation Product: NVIDIA D3D shim drivers FileDesc: NVIDIA dxgiwrap dll, Version 296.16 FileVer: 8.17.12.9616 ProdVer: 8.17.12.9616 Module 18 C:\Program Files (x86)\NVIDIA Corporation\CoProcManager\nvd3d9wrap.dll Image Base: 0x6a6d0000 Image Size: 0x0003d000 File Size: 236352 File Time: 2012-03-04_185200 Version: Company: NVIDIA Corporation Product: NVIDIA D3D shim drivers FileDesc: NVIDIA d3d9wrap dll, Version 296.16 FileVer: 8.17.12.9616 ProdVer: 8.17.12.9616 Module 19 C:\Windows\system32\NTDSAPI.dll Image Base: 0x6c1e0000 Image Size: 0x00018000 File Size: 90112 File Time: 2009-07-13_211612 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Active Directory Domain Services API FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 20 C:\Windows\system32\wbem\fastprox.dll Image Base: 0x6c200000 Image Size: 0x00096000 File Size: 606208 File Time: 2010-11-20_232426 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: WMI Custom Marshaller FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 21 C:\Windows\system32\wbem\wbemsvc.dll Image Base: 0x6c2a0000 Image Size: 0x0000f000 File Size: 47616 File Time: 2009-07-13_211618 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: WMI FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 22 C:\Windows\system32\wbemcomn.dll Image Base: 0x6c340000 Image Size: 0x0005c000 File Size: 363008 File Time: 2010-11-20_232410 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: WMI FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 23 C:\Windows\system32\wbem\wbemprox.dll Image Base: 0x6e360000 Image Size: 0x0000a000 File Size: 29184 File Time: 2009-07-13_211618 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: WMI FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 24 C:\Windows\system32\RpcRtRemote.dll Image Base: 0x6e370000 Image Size: 0x0000e000 File Size: 46080 File Time: 2010-11-20_232416 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Remote RPC Extension FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 25 C:\Windows\System32\fwpuclnt.dll Image Base: 0x6e7b0000 Image Size: 0x00038000 File Size: 216576 File Time: 2010-11-20_232410 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: API en mode utilisateur FWP/IPsec FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 26 C:\Windows\system32\rsaenh.dll Image Base: 0x6ee80000 Image Size: 0x0003b000 File Size: 242936 File Time: 2009-07-13_211756 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Microsoft Enhanced Cryptographic Provider FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 27 C:\Program Files (x86)\Bonjour\mdnsNSP.dll Image Base: 0x6eec0000 Image Size: 0x00021000 File Size: 121704 File Time: 2011-08-30_230502 Version: Company: Apple Inc. Product: Bonjour FileDesc: Bonjour Namespace Provider FileVer: 3.0.0.10 ProdVer: 3.0.0.10 Module 28 C:\Windows\system32\DNSAPI.dll Image Base: 0x6eef0000 Image Size: 0x00044000 File Size: 270336 File Time: 2012-07-17_170956 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: DNS DLL de l’API Client FileVer: 6.1.7601.17570 ProdVer: 6.1.7601.17570 Module 29 C:\Windows\system32\rasadhlp.dll Image Base: 0x713a0000 Image Size: 0x00006000 File Size: 11776 File Time: 2009-07-13_211614 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Remote Access AutoDial Helper FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 30 C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live\WLIDNSP.DLL Image Base: 0x713b0000 Image Size: 0x00027000 File Size: 145648 File Time: 2012-07-17_154900 Version: Company: Microsoft Corp. Product: Microsoft® CoReXT FileDesc: Microsoft® Windows Live ID Namespace Provider FileVer: 7.250.4311.0 ProdVer: 7.250.4311.0 Module 31 C:\Windows\system32\CRYPTSP.dll Image Base: 0x713e0000 Image Size: 0x00016000 File Size: 78848 File Time: 2009-07-13_211508 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Cryptographic Service Provider API FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 32 C:\Windows\System32\wship6.dll Image Base: 0x71400000 Image Size: 0x00006000 File Size: 10752 File Time: 2009-07-13_211622 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: DLL d’application d’assistance Winsock2 (TL/IPv6) FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 33 C:\Windows\system32\AUDIOSES.DLL Image Base: 0x71630000 Image Size: 0x00036000 File Size: 195584 File Time: 2010-11-20_232356 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: Session audio FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 34 C:\Windows\system32\PROPSYS.dll Image Base: 0x71670000 Image Size: 0x000f5000 File Size: 988160 File Time: 2010-11-20_232410 Version: Company: Microsoft Corporation Product: Windows® Search FileDesc: Système de propriétés Microsoft FileVer: 7.0.7601.17514 ProdVer: 7.0.7601.17514 Module 35 C:\Windows\system32\MMDevAPI.DLL Image Base: 0x71770000 Image Size: 0x00039000 File Size: 213504 File Time: 2010-11-20_232352 Version: Company: Microsoft Corporation Product: Système d'exploitation Microsoft® Windows® FileDesc: API MMDevice FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 36 C:\Windows\System32\wshtcpip.dll Image Base: 0x72600000 Image Size: 0x00005000 File Size: 9216 File Time: 2009-07-13_211622 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: DLL d’application d’assistance Winsock2 (TL/IPv4) FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 37 C:\Windows\system32\MSWSOCK.dll Image Base: 0x72610000 Image Size: 0x0003c000 File Size: 232448 File Time: 2010-11-20_232410 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: Fournisseur de service Sockets 2.0 de Microsoft Windows FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 38 C:\Windows\system32\dhcpcsvc6.DLL Image Base: 0x72650000 Image Size: 0x0000d000 File Size: 44032 File Time: 2012-10-09_134032 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: Client DHCPv6 FileVer: 6.1.7601.17970 ProdVer: 6.1.7601.17970 Module 39 C:\Windows\system32\dhcpcsvc.DLL Image Base: 0x72660000 Image Size: 0x00012000 File Size: 61952 File Time: 2009-07-13_211512 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: Service client DHCP FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 40 C:\Windows\system32\WINNSI.DLL Image Base: 0x72c90000 Image Size: 0x00007000 File Size: 16896 File Time: 2009-07-13_211620 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Network Store Information RPC interface FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 41 C:\Windows\system32\IPHLPAPI.DLL Image Base: 0x72ca0000 Image Size: 0x0001c000 File Size: 103936 File Time: 2010-11-20_232434 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: API de l’application d’assistance IP FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 42 C:\Windows\system32\AVRT.dll Image Base: 0x73320000 Image Size: 0x00007000 File Size: 14336 File Time: 2009-07-13_211500 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Multimedia Realtime Runtime FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 43 C:\Windows\system32\wdmaud.drv Image Base: 0x733a0000 Image Size: 0x00030000 File Size: 172032 File Time: 2010-11-20_232402 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: Pilote du système audio Winmm FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 44 C:\Windows\system32\MSACM32.dll Image Base: 0x733d0000 Image Size: 0x00014000 File Size: 72192 File Time: 2009-07-13_211544 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: Filtre audio ACM Microsoft FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 45 C:\Windows\system32\OPENGL32.dll Image Base: 0x73ba0000 Image Size: 0x000c8000 File Size: 791552 File Time: 2009-07-13_211614 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: OpenGL Client DLL FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 46 C:\Windows\system32\midimap.dll Image Base: 0x73d60000 Image Size: 0x00007000 File Size: 16896 File Time: 2009-07-13_211542 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Microsoft MIDI Mapper FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 47 C:\Windows\system32\GLU32.dll Image Base: 0x73d70000 Image Size: 0x00022000 File Size: 130048 File Time: 2009-07-13_211524 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: DLL bibliothèque des utilitaires OpenGL FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 48 C:\Windows\system32\d3d8thk.dll Image Base: 0x73de0000 Image Size: 0x00006000 File Size: 11264 File Time: 2009-07-13_211510 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Microsoft Direct3D OS Thunk Layer FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 49 C:\Windows\system32\d3d9.dll Image Base: 0x73df0000 Image Size: 0x001c3000 File Size: 1828352 File Time: 2010-11-20_232424 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Direct3D 9 Runtime FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 50 C:\Windows\system32\msacm32.drv Image Base: 0x74000000 Image Size: 0x00008000 File Size: 20992 File Time: 2009-07-13_211410 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: Mappeur de sons Microsoft FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 51 C:\Windows\system32\ksuser.dll Image Base: 0x74010000 Image Size: 0x00004000 File Size: 4608 File Time: 2009-07-13_211536 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: User CSA Library FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 52 C:\Windows\system32\DCIMAN32.dll Image Base: 0x74020000 Image Size: 0x00006000 File Size: 10240 File Time: 2009-07-13_211510 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: DCI Manager FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 53 C:\Windows\system32\powrprof.dll Image Base: 0x75450000 Image Size: 0x00025000 File Size: 145408 File Time: 2009-07-13_211614 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: DLL d’assistance du profil d’alimentation FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 54 C:\Windows\system32\WINMM.dll Image Base: 0x75480000 Image Size: 0x00032000 File Size: 194048 File Time: 2010-11-20_232418 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: DLL API MCI FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 55 C:\Windows\system32\dsound.dll Image Base: 0x754c0000 Image Size: 0x00072000 File Size: 453632 File Time: 2009-07-13_211514 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: DirectSound FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 56 C:\Windows\SysWOW64\nvinit.dll Image Base: 0x755b0000 Image Size: 0x00038000 File Size: 215360 File Time: 2012-03-04_185200 Version: Company: NVIDIA Corporation Product: NVIDIA D3D shim drivers FileDesc: NVIDIA shim initialization dll, Version 296.16 FileVer: 8.17.12.9616 ProdVer: 8.17.12.9616 Module 57 C:\Windows\system32\VERSION.dll Image Base: 0x75650000 Image Size: 0x00009000 File Size: 21504 File Time: 2009-07-13_211618 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Version Checking and File Installation Libraries FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 58 C:\Windows\syswow64\CRYPTBASE.dll Image Base: 0x75720000 Image Size: 0x0000c000 File Size: 36864 File Time: 2009-07-13_211508 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Base cryptographic API DLL FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 59 C:\Windows\syswow64\SspiCli.dll Image Base: 0x75730000 Image Size: 0x00060000 File Size: 96768 File Time: 2012-06-02_003410 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Security Support Provider Interface FileVer: 6.1.7601.17856 ProdVer: 6.1.7601.17856 Module 60 C:\Windows\syswow64\LPK.dll Image Base: 0x759a0000 Image Size: 0x0000a000 File Size: 25600 File Time: 2009-07-13_211124 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Language Pack FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 61 C:\Windows\syswow64\ole32.dll Image Base: 0x759e0000 Image Size: 0x0015c000 File Size: 1414144 File Time: 2010-11-20_232402 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: Microsoft OLE pour Windows FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 62 C:\Windows\syswow64\DEVOBJ.dll Image Base: 0x75b40000 Image Size: 0x00012000 File Size: 64512 File Time: 2012-07-17_171000 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Device Information Set DLL FileVer: 6.1.7601.17621 ProdVer: 6.1.7601.17621 Module 63 C:\Windows\syswow64\MSASN1.dll Image Base: 0x75b60000 Image Size: 0x0000c000 File Size: 34304 File Time: 2010-11-20_232350 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: ASN.1 Runtime APIs FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 64 C:\Windows\syswow64\KERNELBASE.dll Image Base: 0x75b70000 Image Size: 0x00047000 File Size: 274944 File Time: 2013-08-01_215044 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: DLL du client API BASE Windows NT FileVer: 6.1.7601.18229 ProdVer: 6.1.7601.18229 Module 65 C:\Windows\syswow64\CLBCatQ.DLL Image Base: 0x75bc0000 Image Size: 0x00083000 File Size: 522240 File Time: 2009-07-13_211504 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: COM+ Configuration Catalog FileVer: 2001.12.8530.16385 ProdVer: 6.1.7600.16385 Module 66 C:\Windows\syswow64\GDI32.dll Image Base: 0x75c50000 Image Size: 0x00090000 File Size: 311296 File Time: 2010-11-20_232416 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: GDI Client DLL FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 67 C:\Windows\syswow64\kernel32.dll Image Base: 0x75ce0000 Image Size: 0x00110000 File Size: 1114112 File Time: 2013-08-01_215042 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: DLL du client API BASE Windows NT FileVer: 6.1.7601.18229 ProdVer: 6.1.7601.18229 Module 68 C:\Windows\syswow64\SHLWAPI.dll Image Base: 0x75e20000 Image Size: 0x00057000 File Size: 350208 File Time: 2010-11-20_232350 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: Bibliothèque d’utilitaires légers du Shell FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 69 C:\Windows\syswow64\RPCRT4.dll Image Base: 0x75e80000 Image Size: 0x000f0000 File Size: 663552 File Time: 2013-07-09_005234 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: Runtime d’appel de procédure distante FileVer: 6.1.7601.18205 ProdVer: 6.1.7601.18205 Module 70 C:\Windows\syswow64\SHELL32.dll Image Base: 0x75f70000 Image Size: 0x00c4a000 File Size: 12872704 File Time: 2013-07-25_215600 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: DLL commune du shell Windows FileVer: 6.1.7601.18222 ProdVer: 6.1.7601.18222 Module 71 C:\Windows\syswow64\USP10.dll Image Base: 0x76bc0000 Image Size: 0x0009d000 File Size: 626688 File Time: 2012-11-22_004504 Version: Company: Microsoft Corporation Product: Microsoft(R) Uniscribe Unicode script processor FileDesc: Uniscribe Unicode script processor FileVer: 1.626.7601.18009 ProdVer: 1.626.7601.18009 Module 72 C:\Windows\syswow64\SETUPAPI.dll Image Base: 0x76d90000 Image Size: 0x0019d000 File Size: 1667584 File Time: 2010-11-20_232352 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: Installation de L’API Windows FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 73 C:\Windows\syswow64\ADVAPI32.dll Image Base: 0x76f30000 Image Size: 0x000a0000 File Size: 640512 File Time: 2010-11-20_232430 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: API avancées Windows 32 FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 74 C:\Windows\SysWOW64\sechost.dll Image Base: 0x770c0000 Image Size: 0x00019000 File Size: 92160 File Time: 2009-07-13_211614 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Host for SCM/SDDL/LSA Lookup APIs FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 75 C:\Windows\syswow64\msvcrt.dll Image Base: 0x770e0000 Image Size: 0x000ac000 File Size: 690688 File Time: 2012-07-17_170956 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Windows NT CRT DLL FileVer: 7.0.7601.17744 ProdVer: 6.1.8638.17744 Module 76 C:\Windows\syswow64\NSI.dll Image Base: 0x77190000 Image Size: 0x00006000 File Size: 8704 File Time: 2009-07-13_211612 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: NSI User-mode interface DLL FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 77 C:\Windows\syswow64\OLEAUT32.dll Image Base: 0x771a0000 Image Size: 0x0008f000 File Size: 571904 File Time: 2012-07-17_170958 Version: Company: Microsoft Corporation Product: FileDesc: FileVer: 6.1.7601.17676 ProdVer: 6.1.7601.17676 Module 78 C:\Windows\syswow64\MSCTF.dll Image Base: 0x77230000 Image Size: 0x000cc000 File Size: 828928 File Time: 2009-07-13_211544 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: DLL de MSCTF Server FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 79 C:\Windows\syswow64\CFGMGR32.dll Image Base: 0x77300000 Image Size: 0x00027000 File Size: 145920 File Time: 2012-07-17_171000 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Configuration Manager DLL FileVer: 6.1.7601.17621 ProdVer: 6.1.7601.17621 Module 80 C:\Windows\syswow64\CRYPT32.dll Image Base: 0x77330000 Image Size: 0x00120000 File Size: 1166848 File Time: 2013-07-09_004632 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: Crypto API32 FileVer: 6.1.7601.18205 ProdVer: 6.1.7601.18205 Module 81 C:\Windows\syswow64\IMM32.dll Image Base: 0x774a0000 Image Size: 0x00060000 File Size: 119808 File Time: 2010-11-20_232426 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Multi-User Windows IMM32 API Client DLL FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 82 C:\Windows\syswow64\WS2_32.dll Image Base: 0x77510000 Image Size: 0x00035000 File Size: 206848 File Time: 2010-11-20_232356 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: Windows Socket 2.0 32-Bit DLL FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 83 C:\Windows\syswow64\USER32.dll Image Base: 0x777b0000 Image Size: 0x00100000 File Size: 833024 File Time: 2010-11-20_232422 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: DLL client de l’API uilisateur de Windows multi-utilisateurs FileVer: 6.1.7601.17514 ProdVer: 6.1.7601.17514 Module 84 C:\Windows\syswow64\WINTRUST.dll Image Base: 0x778b0000 Image Size: 0x0002e000 File Size: 175104 File Time: 2013-07-09_005212 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Microsoft Trust Verification APIs FileVer: 6.1.7601.18205 ProdVer: 6.1.7601.18205 Module 85 C:\Windows\syswow64\PSAPI.DLL Image Base: 0x77cb0000 Image Size: 0x00005000 File Size: 6144 File Time: 2009-07-13_211614 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Process Status Helper FileVer: 6.1.7600.16385 ProdVer: 6.1.7600.16385 Module 86 C:\Windows\SysWOW64\ntdll.dll Image Base: 0x77ce0000 Image Size: 0x00180000 File Size: 1292192 File Time: 2013-08-01_215124 Version: Company: Microsoft Corporation Product: Système d’exploitation Microsoft® Windows® FileDesc: DLL Couche NT FileVer: 6.1.7601.18229 ProdVer: 6.1.7601.18229 == [end of error.log] ==
×
×
  • Create New...