Jump to content

[1.1.2] Realism Overhaul v11.0.0 May 8


Felger

Recommended Posts

I have had the same issue with the science lab re-sizing. I don't think that it has anything to do with Engineer. I've seen similiar bugs with re-sizing parts and I'm guessing that the problem is either in the RO .cfgs that edit the part (unlikely, the code looks fine to me), or the problem is in module manager itself (unlikely), or that the problem is a stock KSP, which seems the most likely to me. The Lab is already pretty buggy in stock KSP.

oh sorry i wasnt meaning that the bug is caused by engineer, i was having huge trouble getting it into orbit as when building engineer would say i had 10723 delta v but it was as if a large chunk of it was imaginary and it would not reach orbit, i figured out that engineer was playing up when i saw that MJ was saying i only had 8698 delta v. that wouldve been about correct if engineer was using the stock mass of the science lab (even though it was showing in the list the correct mass it may have been calculating using stock mass)

as much as that mod looks cool i dont particularly wanna add new parts at this stage, but thanks for pointing it out ill prolly use that in one of my other installs

Link to comment
Share on other sites

Is the science lab tweakscale-enabled? This is the stock science lab, right?

I was able to get this bug to appear with the following steps:

I started by unzipping a clean install of 32bit win ksp .90. Then I downloaded the newest Ckan.exe, placed it in the new KSP_Win folder. I selected only Realism overhaul and RPO for ckan to install. I let ckan install all the recommended mods that were pre-selected, and nothing else, then I launched KSP from ckan, and started a sandbox game. I turned off Kerbal Construction time, then I built a the stock science lab with a Science junior on top in the VAB, then I launched it. I extited to the space center from the launch pad, then I loaded up the craft from the space center and when I went back to the science lab, it was too small.

Here's a pic, and here is the output log.

Edit: This also seems to happen in my own personal install that I manually installed and made sure all the mods are up to date.

Edited by Rabada
Link to comment
Share on other sites

Is the science lab tweakscale-enabled? This is the stock science lab, right?

there's no tweakscale bar on it in the VAB, and yea its the stock one. dont know of any non stock labs that are RO compatible.

but if you mean have i got tweakscale enabled then yes i do.

Link to comment
Share on other sites

I think I figured out what was going on with the Science Lab. I think that there was a conflict with Ven's overhaul mod. RO re-sizes the science lab with this code:


@PART[Large_Crewed_Lab]:FOR[RealismOverhaul]
{
%RSSROConfig = True
!MODULE[TweakScale]
{
}
%rescaleFactor = 1.6
@node_stack_top = 0.0, 1.830905, 0.0, 0.0, 1.0, 0.0, 4
@node_stack_bottom = 0.0, -1.830905, 0.0, 0.0, 1.0, 0.0, 4

Ven's Stock Revamp mod uses module manager to delete the Mesh for the Science lab and replace it with Ven's model. I think that the "%rescaleFactor = 1.6" part of the code is buggy with re-skinned parts. When the part is loaded in the VAB, or when the part is launched from the VAB to the launch pad, that portion of the code seems to work. However, when a craft is loaded from the Space Center or the Tracking Center, the rescaleFactor will fail and the part will revert to its stock size.

I was able to figure out a solution. Using "%MODEL {scale = 1.6, 1.6, 1.6}" instead of a rescaleFactor seems to avoid this bug with re-skinned parts. It took me a little while, but I was able to write a Module manager script that fixes this problem and works both with and without Ven's Revamp installed. I'll post my edited version of RO_Squad_Science.cfg below:



@PART[avionicsNoseCone]:FOR[RealismOverhaul]
{
%RSSROConfig = True
@mass = 0.50
@MODULE[TweakScale]
{
@type = RealismOverhaulStackSolid
}
}
@PART[GooExperiment]:FOR[RealismOverhaul]
{
%RSSROConfig = True
@mass = 0.075
!MODULE[TweakScale]
{
}
}

@PART[Large_Crewed_Lab]:FOR[RealismOverhaul]:NEEDS[VenStockRevamp]
{
%MODEL
{
scale = 1.6, 1.6, 1.6
}
@node_stack_top = 0.0, 2.929448, 0.0, 0.0, 1.0, 0.0, 4
@node_stack_bottom = 0.0, -2.929448, 0.0, 0.0, 1.0, 0.0, 4
}
@PART[Large_Crewed_Lab]:FOR[RealismOverhaul]:NEEDS[!VenStockRevamp]
{
%rescaleFactor = 1.6
@node_stack_top = 0.0, 1.830905, 0.0, 0.0, 1.0, 0.0, 4
@node_stack_bottom = 0.0, -1.830905, 0.0, 0.0, 1.0, 0.0, 4
}

@PART[Large_Crewed_Lab]:FOR[RealismOverhaul]
{
%RSSROConfig = True
!MODULE[TweakScale]
{
}
@description = The mobile processing lab was developed to help increase the amount of science we're able to do in the field. Instead of needing to haul samples all the way back to Kerbin, the mobile lab will allow you to process these samples on site! Also has the equipment necessary to clean out and restore functionality to inoperable experiments. Contains O2 supply for it's scientists, however there is no food or water allowed in the science facility. Ships with 1 day supply, able to store 30 days.
@mass = 12.5
@MODULE[ModuleScienceLab]
{
@RESOURCE_PROCESS[ElectricCharge]
{
@amount = 800
}
}
MODULE
{
name = ModuleFuelTanks
volume = 750
basemass = -1
type = ServiceModule
TANK
{
name = ElectricCharge
amount = 43200
maxAmount = 43200
}
TANK
{
name = Oxygen
amount = 2520
maxAmount = 75600
}
TANK
{
name = CarbonDioxide
amount = 0
maxAmount = 1200
}
TANK
{
name = LithiumHydroxide
amount = 3
maxAmount = 90
}
}
MODULE
{
name = TacGenericConverter
converterName = CO2 Scrubber
conversionRate = 4.0 // # of people - Figures based on per/person
inputResources = CarbonDioxide, 0.0062500000, ElectricCharge, 0.010, LithiumHydroxide, 0.0000085683
outputResources = Water, 0.0032924498, true, Waste, 0.0000191062, false
}
}
@PART[science_module]:FOR[RealismOverhaul]
{
%RSSROConfig = True
!MODULE[TweakScale]
{
}
}
@PART[sensorAccelerometer|sensorBarometer|sensorGravimeter|sensorThermometer]:FOR[RealismOverhaul]
{
%rescaleFactor = 0.5
%mass = 0.001
}

Here is a download of the script.

I'm really proud of that fix, but its also the first coding of any type I've done, so I'd like to know what you guys think, Thanks!

Link to comment
Share on other sites

Bug Report - Using RO and RP-0 plus most of recommended mods in Windows:

Issue occurs with the Tiny Tim Booster. I place the Tiny Tim Booster and Aerobee Sustainer to the bottom. When I right click on the Tiny Tim Booster to see what adjustment I can make. I selected the "Show Engi...GUI" button. The engine information is displayed. If you right-click in the Engine window it will disappear. The Launch button, all camera navigation keys (arrows, mouse wheel, etc) stop working. If you exit the VAB you are on the at a ground view angle where you only see a few buildings and not the entire complex. Camera navigation keys still do not work. To fix the problem you have to quit completely out of KSP and relaunch the program.

Edit: I did find a fix: Right-click on the Tiny Tim Booster and click again on the GUI window that you had open (In my case the Engine GUI) and hover over the GUI and then move cursor off the GUI and your the Launch button should once again be visible and the camera navigation keys should once again start working. The key is not to right-click on any GUIs. It looks like the lock when configuring through the GUI is not released when the window closes on a right-click inside the GUI.

Link to comment
Share on other sites

I have a bug. Parts with custom sizes seem to revert to different sizes when the vessel is loaded.

Here is a "Mailman" communication satellite I just launched into medium orbit. Notice the fact that is has a custom diameter, which matches the part above it, as well as visible RCS blocks:

OVc2QQq.jpg?1

This is what it looks like after I load the vessel from the space center.

PBVnlzml.jpg

The tank has "puffed up" covering the RCS. I can still use them, but it looks odd. Also note the capacity of the tank hasn't changed, only the visual volume.

Link to comment
Share on other sites

Rabada that's excellent work, thanks so much! Will use that fix for next RO.

venturaguy101: Welcome to the forums! (And to RO!) :)

That seems to be an issue with RF's locking when GUIs are open; the locking needs to die when the GUI disappears. I'll fix that.

Link to comment
Share on other sites

I have a problem with the NPO Eneromash RD-107/108 engine from Tantares LV.

It seems the engines are not being picked up by Kerbal Engineer and they do not display Delta V.

Also the engines have a Toggle Mode and Automatic Switching option in the context menu which does not seem to do anything.

The engines also look as if they are constantly firing (flames at the nozzle) even before they are staged and after they run out of fuel (they produce thrust normally when running).

When I removed the RO_TantaresLV.cfg config from Realism Overhaul, the engines showed up on Kerbal Engineer and worked normally (though of coarse they were reverted to stock KSP size and fuel)

I tried to edit the RO_TantaresLV.cfg to fix the problem but it seems I overestimated my abilities and KSP failed to load, since I do not know much about coding.

Any Ideas about how to fix the problem?

Link to comment
Share on other sites

Hi, I keep getting a crash after 1 or two launches. Please see log attached.

Any ideas???

[COLOR=#3E3E3E]Unity Player [version: Unity 4.5.5f1_7684ad0c5a44][/COLOR]


[COLOR=#3E3E3E]mono.dll caused an Access Violation (0xc0000005)[/COLOR]
[COLOR=#3E3E3E]in module mono.dll at 0023:10107170.[/COLOR]


[COLOR=#3E3E3E]Error occurred at 2015-04-17_225014.[/COLOR]
[COLOR=#3E3E3E]E:\Steam Kerbal\common\Kerbal Space Program\KSP.exe, run by CENT.[/COLOR]
[COLOR=#3E3E3E]73% memory in use.[/COLOR]
[COLOR=#3E3E3E]0 MB physical memory [2129 MB free].[/COLOR]
[COLOR=#3E3E3E]0 MB paging file [0 MB free].[/COLOR]
[COLOR=#3E3E3E]0 MB user address space [120 MB free].[/COLOR]
[COLOR=#3E3E3E]Write to location 00000000 caused an access violation.[/COLOR]


[COLOR=#3E3E3E]Context:[/COLOR]
[COLOR=#3E3E3E]EDI: 0x00000001 ESI: 0x9fb37a80 EAX: 0x00000000[/COLOR]
[COLOR=#3E3E3E]EBX: 0xfb287098 ECX: 0x00000000 EDX: 0x3d8f6968[/COLOR]
[COLOR=#3E3E3E]EIP: 0x10107170 EBP: 0x0039f7e0 SegCs: 0x00000023[/COLOR]
[COLOR=#3E3E3E]EFlags: 0x00010246 ESP: 0x0039f7dc SegSs: 0x0000002b[/COLOR]


[COLOR=#3E3E3E]Bytes at CS:EIP:[/COLOR]
[COLOR=#3E3E3E]89 14 81 ff 46 04 5e 5d c3 55 8b ec 53 8b 5d 08 [/COLOR]


[COLOR=#3E3E3E]Stack:[/COLOR]
[COLOR=#3E3E3E]0x0039f7dc: 3d8f6968 0039f7f8 101071c9 9fb37a80 hi.=..9..q...z..[/COLOR]
[COLOR=#3E3E3E]0x0039f7ec: 3d8f6968 0039f840 0428ec00 0039f828 [email protected]...(.(.9.[/COLOR]
[COLOR=#3E3E3E]0x0039f7fc: 101076d6 fb287098 0039f840 00000000 .v...p([email protected].....[/COLOR]
[COLOR=#3E3E3E]0x0039f80c: 0039f840 00000800 00000017 3d8f6968 @.9.........hi.=[/COLOR]
[COLOR=#3E3E3E]0x0039f81c: 00000000 00000000 010a4e70 0039f908 ........pN....9.[/COLOR]
[COLOR=#3E3E3E]0x0039f82c: 0130a652 fb287098 00000001 a0f5644c R.0..p(.....Ld..[/COLOR]
[COLOR=#3E3E3E]0x0039f83c: 01b7f3e0 ac582ce4 00000000 aa7c0101 .....,X.......|.[/COLOR]
[COLOR=#3E3E3E]0x0039f84c: fffffffe 00000000 ffffffff 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039f85c: ce3c0034 00020000 0000e690 00006666 4.<.........ff..[/COLOR]
[COLOR=#3E3E3E]0x0039f86c: 00010000 ac582800 00000000 0000004e .....(X.....N...[/COLOR]
[COLOR=#3E3E3E]0x0039f87c: 00000000 00000000 ffc50034 0000004e ........4...N...[/COLOR]
[COLOR=#3E3E3E]0x0039f88c: 00029958 00048924 af370034 0000004e X...$...4.7.N...[/COLOR]
[COLOR=#3E3E3E]0x0039f89c: 0001b24c 00048924 00048924 fb287098 L...$...$....p(.[/COLOR]
[COLOR=#3E3E3E]0x0039f8ac: 00000001 02002000 00000000 0039f8d4 ..... ........9.[/COLOR]
[COLOR=#3E3E3E]0x0039f8bc: 00c00030 00c00034 00c00040 2bf5daec 0...4...@......+[/COLOR]
[COLOR=#3E3E3E]0x0039f8cc: 00000000 00000000 019fca14 0039f840 [email protected].[/COLOR]
[COLOR=#3E3E3E]0x0039f8dc: ce72b504 01b7f3e0 00048924 c1a8d4e1 ..r.....$.......[/COLOR]
[COLOR=#3E3E3E]0x0039f8ec: 00000045 00027973 00000000 0004580f E...sy.......X..[/COLOR]
[COLOR=#3E3E3E]0x0039f8fc: 00000000 c1a20324 00000045 0039f988 ....$...E.....9.[/COLOR]
[COLOR=#3E3E3E]0x0039f90c: 0131cc77 00000001 0130e11b ce72b4c4 w.1.......0...r.[/COLOR]
[COLOR=#3E3E3E]0x0039f91c: ce72b504 034f0974 ce72b488 00000000 ..r.t.O...r.....[/COLOR]
[COLOR=#3E3E3E]0x0039f92c: 01196997 a0f5642c 00000000 76f0982d .i..,d......-..v[/COLOR]
[COLOR=#3E3E3E]0x0039f93c: 0039f9a0 ce90c0ac 0003a129 4c9a7c2f ..9.....).../|.L[/COLOR]
[COLOR=#3E3E3E]0x0039f94c: 04bec1e4 a0f5644c 0003a129 00000024 ....Ld..)...$...[/COLOR]
[COLOR=#3E3E3E]0x0039f95c: 034c0dc4 aa888368 aaef0028 034c0dc4 ..L.h...(.....L.[/COLOR]
[COLOR=#3E3E3E]0x0039f96c: aaef0028 aaef0028 034c0dc4 d21a856c (...(.....L.l...[/COLOR]
[COLOR=#3E3E3E]0x0039f97c: aaef0001 0000f9a6 01b7f3e0 0039f99c ..............9.[/COLOR]
[COLOR=#3E3E3E]0x0039f98c: 0130e279 00000001 ce72b4c4 ce72b504 y.0.......r...r.[/COLOR]
[COLOR=#3E3E3E]0x0039f99c: 0039f9b8 0130e744 00000001 ce72b4c4 ..9.D.0.......r.[/COLOR]
[COLOR=#3E3E3E]0x0039f9ac: ce72b504 03512f50 ce72b488 0039f9d0 ..r.P/Q...r...9.[/COLOR]
[COLOR=#3E3E3E]0x0039f9bc: 0130f8d9 04bec1e4 03512f50 00000000 ..0.....P/Q.....[/COLOR]
[COLOR=#3E3E3E]0x0039f9cc: 03512f50 0039faa0 0130fa84 3d4ccccd P/Q...9...0...L=[/COLOR]
[COLOR=#3E3E3E]0x0039f9dc: 04bec1e4 00000001 00000000 0130c1f5 ..............0.[/COLOR]
[COLOR=#3E3E3E]0x0039f9ec: 00000000 00000000 74ac95a8 0039fa54 ...........tT.9.[/COLOR]
[COLOR=#3E3E3E]0x0039f9fc: 012e4de7 00000001 011aeaa2 00000000 .M..............[/COLOR]
[COLOR=#3E3E3E]0x0039fa0c: 00000001 00000000 00000000 00000001 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fa1c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fa2c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fa3c: 0039fa14 0039fa18 0039fa7c 012e4de7 ..9...9.|.9..M..[/COLOR]
[COLOR=#3E3E3E]0x0039fa4c: 00000001 011aeed2 74ac95a8 00000000 ...........t....[/COLOR]
[COLOR=#3E3E3E]0x0039fa5c: 03530d34 00000000 80000000 00000001 4.S.............[/COLOR]
[COLOR=#3E3E3E]0x0039fa6c: 00000000 00000000 034eccb8 03530d34 ..........N.4.S.[/COLOR]
[COLOR=#3E3E3E]0x0039fa7c: 0039fa9c 011b3d02 00000000 00000000 ..9..=..........[/COLOR]
[COLOR=#3E3E3E]0x0039fa8c: 74ac95a8 00000001 00000000 04bec1e4 ...t............[/COLOR]
[COLOR=#3E3E3E]0x0039fa9c: 0139faac 0039fadc 01382d6b 00000000 ..9...9.k-8.....[/COLOR]
[COLOR=#3E3E3E]0x0039faac: 00000001 00000000 00000010 00000001 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fabc: 000c0434 00000200 00000000 000c0655 4...........U...[/COLOR]
[COLOR=#3E3E3E]0x0039facc: 013f4234 00000655 0000000c 00000508 4B?.U...........[/COLOR]
[COLOR=#3E3E3E]0x0039fadc: 0039fbf4 01384635 00000000 00000000 ..9.5F8.........[/COLOR]
[COLOR=#3E3E3E]0x0039faec: fffde000 034c1a5c 00787f58 007b5080 ....\.L.X.x..P{.[/COLOR]
[COLOR=#3E3E3E]0x0039fafc: 00788300 0000002b 0000002f 0039fc8c ..x.+.../.....9.[/COLOR]
[COLOR=#3E3E3E]0x0039fb0c: 034c2200 010693ad fffffffe 76eead02 ."L............v[/COLOR]
[COLOR=#3E3E3E]0x0039fb1c: 00000000 0000000f 01c48488 6f6e6f00 .............ono[/COLOR]
[COLOR=#3E3E3E]0x0039fb2c: 6374652f 0039fb00 0163a2c9 00000000 /etc..9...c.....[/COLOR]
[COLOR=#3E3E3E]0x0039fb3c: 0000000f 0000000f 034c222c 034c2264 ........,"L.d"L.[/COLOR]
[COLOR=#3E3E3E]0x0039fb4c: 034c2264 01b88e38 034c1a10 00cc07c8 d"L.8.....L.....[/COLOR]
[COLOR=#3E3E3E]0x0039fb5c: 0039fb00 0039fb90 00000034 0000003f ..9...9.4...?...[/COLOR]
[COLOR=#3E3E3E]0x0039fb6c: 01b0a550 00dc38cc 034c1af4 00000004 P....8....L.....[/COLOR]
[COLOR=#3E3E3E]0x0039fb7c: 0039fab4 76f095a2 00000043 0000004f ..9....vC...O...[/COLOR]
[COLOR=#3E3E3E]0x0039fb8c: 49656e69 034c2200 00000000 00000000 ineI."L.........[/COLOR]
[COLOR=#3E3E3E]0x0039fb9c: 019e5e88 00000000 0000000f 0039fbd8 .^............9.[/COLOR]
[COLOR=#3E3E3E]0x0039fbac: 00000000 616e614d 00646567 0162847b ....Managed.{.b.[/COLOR]
[COLOR=#3E3E3E]0x0039fbbc: 00000000 00000007 0000000f 01628488 ..............b.[/COLOR]
[COLOR=#3E3E3E]0x0039fbcc: 00dc38cc 6f6e6f4d 6e6f6d2f 6c642e6f .8..Mono/mono.dl[/COLOR]
[COLOR=#3E3E3E]0x0039fbdc: 0100006c 0000000d 0000000f 00cc1840 l...........@...[/COLOR]
[COLOR=#3E3E3E]0x0039fbec: 00000000 00000000 0039fc0c 015f00e8 ..........9..._.[/COLOR]
[COLOR=#3E3E3E]0x0039fbfc: 01190000 00000000 00781dee 00000001 ..........x.....[/COLOR]
[COLOR=#3E3E3E]0x0039fc0c: 0039fc9c 01624fb0 01190000 00000000 ..9..Ob.........[/COLOR]
[COLOR=#3E3E3E]0x0039fc1c: 00781dee 00000001 4c9a84a0 00000000 ..x........L....[/COLOR]
[COLOR=#3E3E3E]0x0039fc2c: 00000000 fffde000 00000044 00781152 ........D...R.x.[/COLOR]
[COLOR=#3E3E3E]0x0039fc3c: 00781132 007810d8 00000000 00000000 2.x...x.........[/COLOR]
[COLOR=#3E3E3E]0x0039fc4c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fc5c: 00000000 00000801 00000001 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fc6c: 00000000 0039fc98 016362f4 c0000005 ......9..bc.....[/COLOR]
[COLOR=#3E3E3E]0x0039fc7c: 00000000 00000000 0039fc24 0039f3bc ........$.9...9.[/COLOR]
[COLOR=#3E3E3E]0x0039fc8c: 0039fcd8 01626d90 4d14299c 00000000 ..9..mb..).M....[/COLOR]
[COLOR=#3E3E3E]0x0039fc9c: 0039fca8 7505f804 fffde000 0039fce8 ..9....u......9.[/COLOR]
[COLOR=#3E3E3E]0x0039fcac: 76f3d819 fffde000 77d1f6cd 00000000 ...v.......w....[/COLOR]
[COLOR=#3E3E3E]0x0039fcbc: 00000000 fffde000 c0000005 7506d7e3 ...............u[/COLOR]
[COLOR=#3E3E3E]0x0039fccc: 7506d7e3 0039fcb4 0039f3c0 ffffffff ...u..9...9.....[/COLOR]
[COLOR=#3E3E3E]0x0039fcdc: 76f737ce 010686b5 00000000 0039fd00 .7.v..........9.[/COLOR]
[COLOR=#3E3E3E]0x0039fcec: 76f3da2b 01625003 fffde000 00000000 +..v.Pb.........[/COLOR]
[COLOR=#3E3E3E]0x0039fcfc: 00000000 00000000 00000000 01625003 .............Pb.[/COLOR]
[COLOR=#3E3E3E]0x0039fd0c: fffde000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fd1c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fd2c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fd3c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fd4c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fd5c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fd6c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fd7c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fd8c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fd9c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fdac: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fdbc: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fdcc: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fddc: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fdec: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fdfc: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fe0c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fe1c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fe2c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fe3c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fe4c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fe5c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fe6c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fe7c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fe8c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fe9c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039feac: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039febc: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fecc: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fedc: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039feec: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fefc: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039ff0c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039ff1c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039ff2c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039ff3c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039ff4c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039ff5c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039ff6c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039ff7c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039ff8c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039ff9c: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039ffac: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039ffbc: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039ffcc: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039ffdc: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039ffec: 00000000 00000000 00000000 00000000 ................[/COLOR]
[COLOR=#3E3E3E]0x0039fffc: 00000000 ....[/COLOR]


[COLOR=#3E3E3E]Module 1[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\xinput1_3.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x00400000 Image Size: 0x00016000[/COLOR]
[COLOR=#3E3E3E]File Size: 81768 File Time: 2007-04-04_195342[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® DirectX for Windows®[/COLOR]
[COLOR=#3E3E3E]FileDesc: Microsoft Common Controller API[/COLOR]
[COLOR=#3E3E3E]FileVer: 9.18.944.0[/COLOR]
[COLOR=#3E3E3E]ProdVer: 9.18.944.0[/COLOR]


[COLOR=#3E3E3E]Module 2[/COLOR]
[COLOR=#3E3E3E]E:\Steam Kerbal\common\Kerbal Space Program\KSP.exe[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x01190000 Image Size: 0x00ba6000[/COLOR]
[COLOR=#3E3E3E]File Size: 11546112 File Time: 2014-12-18_213512[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: [/COLOR]
[COLOR=#3E3E3E]Product: [/COLOR]
[COLOR=#3E3E3E]FileDesc: [/COLOR]
[COLOR=#3E3E3E]FileVer: 4.5.5.37569[/COLOR]
[COLOR=#3E3E3E]ProdVer: 4.5.5.37569[/COLOR]


[COLOR=#3E3E3E]Module 3[/COLOR]
[COLOR=#3E3E3E]E:\Steam Kerbal\common\Kerbal Space Program\KSP_Data\Mono\mono.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x10000000 Image Size: 0x0022f000[/COLOR]
[COLOR=#3E3E3E]File Size: 2101760 File Time: 2014-12-18_213514[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: [/COLOR]
[COLOR=#3E3E3E]Product: [/COLOR]
[COLOR=#3E3E3E]FileDesc: [/COLOR]
[COLOR=#3E3E3E]FileVer: 0.0.0.0[/COLOR]
[COLOR=#3E3E3E]ProdVer: 0.0.0.0[/COLOR]


[COLOR=#3E3E3E]Module 4[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\nvd3dum.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x68800000 Image Size: 0x01012000[/COLOR]
[COLOR=#3E3E3E]File Size: 16884632 File Time: 2014-11-13_012036[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: NVIDIA Corporation[/COLOR]
[COLOR=#3E3E3E]Product: NVIDIA Windows WDDM D3D driver[/COLOR]
[COLOR=#3E3E3E]FileDesc: NVIDIA WDDM D3D Driver, Version 344.75 [/COLOR]
[COLOR=#3E3E3E]FileVer: 9.18.13.4475[/COLOR]
[COLOR=#3E3E3E]ProdVer: 9.18.13.4475[/COLOR]


[COLOR=#3E3E3E]Module 5[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\d3d9.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x6c500000 Image Size: 0x001ba000[/COLOR]
[COLOR=#3E3E3E]File Size: 1788416 File Time: 2009-04-11_072820[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Microsoft Direct3D[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 6[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\wbem\fastprox.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x6cb90000 Image Size: 0x00099000[/COLOR]
[COLOR=#3E3E3E]File Size: 614912 File Time: 2009-04-11_072820[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: WMI Custom Marshaller[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 7[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\DDRAW.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x6cc30000 Image Size: 0x000e5000[/COLOR]
[COLOR=#3E3E3E]File Size: 522752 File Time: 2008-01-21_035026[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Microsoft DirectDraw[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6001.18000[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6001.18000[/COLOR]


[COLOR=#3E3E3E]Module 8[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\powrprof.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x6fb00000 Image Size: 0x0001a000[/COLOR]
[COLOR=#3E3E3E]File Size: 98816 File Time: 2009-04-11_072824[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Power Profile Helper DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 9[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\wbemcomn.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x70130000 Image Size: 0x0005b000[/COLOR]
[COLOR=#3E3E3E]File Size: 357888 File Time: 2008-01-21_034816[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: WMI[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6001.18000[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6001.18000[/COLOR]


[COLOR=#3E3E3E]Module 10[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\MSACM32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x71e60000 Image Size: 0x00014000[/COLOR]
[COLOR=#3E3E3E]File Size: 71680 File Time: 2008-01-21_035048[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Microsoft ACM Audio Filter[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6001.18000[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6001.18000[/COLOR]


[COLOR=#3E3E3E]Module 11[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\msgsm32.acm[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x71f20000 Image Size: 0x00009000[/COLOR]
[COLOR=#3E3E3E]File Size: 23040 File Time: 2006-11-02_104450[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Microsoft GSM 6.10 Audio CODEC for MSACM[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6000.16386[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6000.16386[/COLOR]


[COLOR=#3E3E3E]Module 12[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\NTDSAPI.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x71f40000 Image Size: 0x00018000[/COLOR]
[COLOR=#3E3E3E]File Size: 88576 File Time: 2008-01-21_035104[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Active Directory Domain Services API[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6001.18000[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6001.18000[/COLOR]


[COLOR=#3E3E3E]Module 13[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\dsound.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x71f60000 Image Size: 0x00070000[/COLOR]
[COLOR=#3E3E3E]File Size: 444416 File Time: 2009-04-11_072820[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: DirectSound[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 14[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\rasadhlp.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x72bd0000 Image Size: 0x00006000[/COLOR]
[COLOR=#3E3E3E]File Size: 10240 File Time: 2006-11-02_104614[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Remote Access AutoDial Helper[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6000.16386[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6000.16386[/COLOR]


[COLOR=#3E3E3E]Module 15[/COLOR]
[COLOR=#3E3E3E]C:\Windows\System32\wship6.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x72bf0000 Image Size: 0x00005000[/COLOR]
[COLOR=#3E3E3E]File Size: 9216 File Time: 2008-01-21_034844[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Winsock2 Helper DLL (TL/IPv6)[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6001.18000[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6001.18000[/COLOR]


[COLOR=#3E3E3E]Module 16[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\MSWSOCK.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x72c00000 Image Size: 0x0003b000[/COLOR]
[COLOR=#3E3E3E]File Size: 223232 File Time: 2009-04-11_072824[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Microsoft Windows Sockets 2.0 Service Provider[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 17[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\dwmapi.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x72c40000 Image Size: 0x0000c000[/COLOR]
[COLOR=#3E3E3E]File Size: 39936 File Time: 2008-01-21_034856[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Microsoft Desktop Window Manager API[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6001.18000[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6001.18000[/COLOR]


[COLOR=#3E3E3E]Module 18[/COLOR]
[COLOR=#3E3E3E]C:\Windows\System32\wshtcpip.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x72c50000 Image Size: 0x00005000[/COLOR]
[COLOR=#3E3E3E]File Size: 9216 File Time: 2008-01-21_034844[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Winsock2 Helper DLL (TL/IPv4)[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6001.18000[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6001.18000[/COLOR]


[COLOR=#3E3E3E]Module 19[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\d3d8thk.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x72c70000 Image Size: 0x00006000[/COLOR]
[COLOR=#3E3E3E]File Size: 11264 File Time: 2006-11-02_104604[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Microsoft Direct3D OS Thunk Layer[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6000.16386[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6000.16386[/COLOR]


[COLOR=#3E3E3E]Module 20[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\pnrpnsp.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x72c80000 Image Size: 0x00012000[/COLOR]
[COLOR=#3E3E3E]File Size: 62464 File Time: 2008-01-21_035204[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: PNRP Name Space Provider[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6001.18000[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6001.18000[/COLOR]


[COLOR=#3E3E3E]Module 21[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\wshbth.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x72ca0000 Image Size: 0x0000c000[/COLOR]
[COLOR=#3E3E3E]File Size: 34304 File Time: 2009-04-11_072828[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Windows Sockets Helper DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 22[/COLOR]
[COLOR=#3E3E3E]C:\Windows\System32\winrnr.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x72cb0000 Image Size: 0x00008000[/COLOR]
[COLOR=#3E3E3E]File Size: 19968 File Time: 2009-04-11_072826[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: LDAP RnR Provider DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 23[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\napinsp.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x72cc0000 Image Size: 0x0000f000[/COLOR]
[COLOR=#3E3E3E]File Size: 50176 File Time: 2008-01-21_034950[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: E-mail Naming Shim Provider[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6001.18000[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6001.18000[/COLOR]


[COLOR=#3E3E3E]Module 24[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\NLAapi.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x72cd0000 Image Size: 0x0000f000[/COLOR]
[COLOR=#3E3E3E]File Size: 48640 File Time: 2014-12-06_041438[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Network Location Awareness 2[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.19250[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.19250[/COLOR]


[COLOR=#3E3E3E]Module 25[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\rsaenh.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x72cf0000 Image Size: 0x0003b000[/COLOR]
[COLOR=#3E3E3E]File Size: 241128 File Time: 2009-04-11_072748[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Microsoft Enhanced Cryptographic Provider[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 26[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\WINHTTP.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x72d30000 Image Size: 0x00060000[/COLOR]
[COLOR=#3E3E3E]File Size: 377344 File Time: 2011-11-16_172346[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Windows HTTP Services[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18541[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18541[/COLOR]


[COLOR=#3E3E3E]Module 27[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\WINTRUST.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x72f00000 Image Size: 0x0002d000[/COLOR]
[COLOR=#3E3E3E]File Size: 172544 File Time: 2013-07-08_052006[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Microsoft Trust Verification APIs[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18881[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18881[/COLOR]


[COLOR=#3E3E3E]Module 28[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\uxtheme.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x72f30000 Image Size: 0x00080000[/COLOR]
[COLOR=#3E3E3E]File Size: 234496 File Time: 2008-01-21_035106[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Microsoft UxTheme Library[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6001.18000[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6001.18000[/COLOR]


[COLOR=#3E3E3E]Module 29[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\MSASN1.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x731f0000 Image Size: 0x00012000[/COLOR]
[COLOR=#3E3E3E]File Size: 60928 File Time: 2009-09-04_124200[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: ASN.1 Runtime APIs[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18106[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18106[/COLOR]


[COLOR=#3E3E3E]Module 30[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\CRYPT32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x73210000 Image Size: 0x000f5000[/COLOR]
[COLOR=#3E3E3E]File Size: 993792 File Time: 2013-10-03_134546[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Crypto API32[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18953[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18953[/COLOR]


[COLOR=#3E3E3E]Module 31[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\USERENV.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x73310000 Image Size: 0x0001e000[/COLOR]
[COLOR=#3E3E3E]File Size: 108544 File Time: 2009-04-11_072826[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Userenv[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 32[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\OLEACC.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x73330000 Image Size: 0x0003e000[/COLOR]
[COLOR=#3E3E3E]File Size: 238080 File Time: 2011-08-25_171402[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Active Accessibility Core Component[/COLOR]
[COLOR=#3E3E3E]FileVer: 7.0.6002.18508[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18508[/COLOR]


[COLOR=#3E3E3E]Module 33[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\WINMM.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x73370000 Image Size: 0x00032000[/COLOR]
[COLOR=#3E3E3E]File Size: 189952 File Time: 2011-10-14_170326[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: MCI API DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18528[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18528[/COLOR]


[COLOR=#3E3E3E]Module 34[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\OPENGL32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x733b0000 Image Size: 0x000cb000[/COLOR]
[COLOR=#3E3E3E]File Size: 707584 File Time: 2006-11-02_104614[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: OpenGL Client DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6000.16386[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6000.16386[/COLOR]


[COLOR=#3E3E3E]Module 35[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\audioeng.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x73480000 Image Size: 0x00066000[/COLOR]
[COLOR=#3E3E3E]File Size: 396800 File Time: 2014-10-03_021718[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Audio Engine[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.19201[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.19201[/COLOR]


[COLOR=#3E3E3E]Module 36[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\AUDIOSES.DLL[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x734f0000 Image Size: 0x00021000[/COLOR]
[COLOR=#3E3E3E]File Size: 115712 File Time: 2014-10-03_021718[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Audio Session[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.19201[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.19201[/COLOR]


[COLOR=#3E3E3E]Module 37[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\MMDevAPI.DLL[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x73520000 Image Size: 0x00028000[/COLOR]
[COLOR=#3E3E3E]File Size: 150528 File Time: 2009-04-11_072822[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: MMDevice API[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 38[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\wbem\wbemsvc.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x73570000 Image Size: 0x00010000[/COLOR]
[COLOR=#3E3E3E]File Size: 49152 File Time: 2009-04-11_072826[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: WMI[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 39[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\wbem\wbemprox.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x73580000 Image Size: 0x0000b000[/COLOR]
[COLOR=#3E3E3E]File Size: 30208 File Time: 2009-04-11_072826[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: WMI[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 40[/COLOR]
[COLOR=#3E3E3E]C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6002.18305_none_5cb7 2f2a088b0ed3\comctl32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x73750000 Image Size: 0x0019e000[/COLOR]
[COLOR=#3E3E3E]File Size: 1686016 File Time: 2010-08-31_164354[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: User Experience Controls Library[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.10.6002.18305[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18305[/COLOR]


[COLOR=#3E3E3E]Module 41[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\VERSION.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x73f60000 Image Size: 0x00008000[/COLOR]
[COLOR=#3E3E3E]File Size: 20480 File Time: 2009-04-11_072826[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Version Checking and File Installation Libraries[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 42[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\midimap.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x73fd0000 Image Size: 0x00007000[/COLOR]
[COLOR=#3E3E3E]File Size: 17408 File Time: 2009-04-11_072822[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Microsoft MIDI Mapper[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 43[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\NETAPI32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x73fe0000 Image Size: 0x00076000[/COLOR]
[COLOR=#3E3E3E]File Size: 467968 File Time: 2012-06-29_170144[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Net Win32 API DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18659[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18659[/COLOR]


[COLOR=#3E3E3E]Module 44[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\dhcpcsvc6.DLL[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74060000 Image Size: 0x00022000[/COLOR]
[COLOR=#3E3E3E]File Size: 130560 File Time: 2009-04-11_072820[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: DHCPv6 Client[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 45[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\DNSAPI.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74090000 Image Size: 0x0002c000[/COLOR]
[COLOR=#3E3E3E]File Size: 168448 File Time: 2011-03-02_164428[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: DNS Client API DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18416[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18416[/COLOR]


[COLOR=#3E3E3E]Module 46[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\dhcpcsvc.DLL[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x740c0000 Image Size: 0x00035000[/COLOR]
[COLOR=#3E3E3E]File Size: 204288 File Time: 2009-04-11_072820[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: DHCP Client Service[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 47[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\msacm32.drv[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74760000 Image Size: 0x00009000[/COLOR]
[COLOR=#3E3E3E]File Size: 21504 File Time: 2009-04-11_072714[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Microsoft Sound Mapper[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 48[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\WINNSI.DLL[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74770000 Image Size: 0x00007000[/COLOR]
[COLOR=#3E3E3E]File Size: 14848 File Time: 2008-01-21_035016[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Network Store Information RPC interface[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6001.18000[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6001.18000[/COLOR]


[COLOR=#3E3E3E]Module 49[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\IPHLPAPI.DLL[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74780000 Image Size: 0x00019000[/COLOR]
[COLOR=#3E3E3E]File Size: 91648 File Time: 2009-04-11_072822[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: IP Helper API[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 50[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\AVRT.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74870000 Image Size: 0x00007000[/COLOR]
[COLOR=#3E3E3E]File Size: 12800 File Time: 2008-01-21_035038[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Multimedia Realtime Runtime[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6001.18000[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6001.18000[/COLOR]


[COLOR=#3E3E3E]Module 51[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\ksuser.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74880000 Image Size: 0x00004000[/COLOR]
[COLOR=#3E3E3E]File Size: 4608 File Time: 2006-11-02_104606[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: User CSA Library[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6000.16386[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6000.16386[/COLOR]


[COLOR=#3E3E3E]Module 52[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\wdmaud.drv[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74890000 Image Size: 0x0002f000[/COLOR]
[COLOR=#3E3E3E]File Size: 167424 File Time: 2009-04-11_072714[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Winmm audio system driver[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 53[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\DCIMAN32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x748c0000 Image Size: 0x00006000[/COLOR]
[COLOR=#3E3E3E]File Size: 10240 File Time: 2009-06-15_155140[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: DCI Manager[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18051[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18051[/COLOR]


[COLOR=#3E3E3E]Module 54[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\GLU32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x748d0000 Image Size: 0x00023000[/COLOR]
[COLOR=#3E3E3E]File Size: 133632 File Time: 2006-11-02_104606[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: OpenGL Utility Library DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6000.16386[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6000.16386[/COLOR]


[COLOR=#3E3E3E]Module 55[/COLOR]
[COLOR=#3E3E3E]C:\Windows\system32\HID.DLL[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74900000 Image Size: 0x00009000[/COLOR]
[COLOR=#3E3E3E]File Size: 22016 File Time: 2006-11-02_104606[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Hid User Library[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6000.16386[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6000.16386[/COLOR]


[COLOR=#3E3E3E]Module 56[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\Secur32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x749c0000 Image Size: 0x00060000[/COLOR]
[COLOR=#3E3E3E]File Size: 77312 File Time: 2015-01-15_075336[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Security Support Provider Interface[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.19284[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.19284[/COLOR]


[COLOR=#3E3E3E]Module 57[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\CLBCatQ.DLL[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74a20000 Image Size: 0x00084000[/COLOR]
[COLOR=#3E3E3E]File Size: 523776 File Time: 2008-01-21_034936[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: COM+ Configuration Catalog[/COLOR]
[COLOR=#3E3E3E]FileVer: 2001.12.6931.18000[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6001.18000[/COLOR]


[COLOR=#3E3E3E]Module 58[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\USER32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74ab0000 Image Size: 0x000d0000[/COLOR]
[COLOR=#3E3E3E]File Size: 648704 File Time: 2009-04-11_072646[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Multi-User Windows USER API Client DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 59[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\NSI.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74b80000 Image Size: 0x00006000[/COLOR]
[COLOR=#3E3E3E]File Size: 8192 File Time: 2008-01-21_035016[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: NSI User-mode interface DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6001.18000[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6001.18000[/COLOR]


[COLOR=#3E3E3E]Module 60[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\ADVAPI32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74b90000 Image Size: 0x000c6000[/COLOR]
[COLOR=#3E3E3E]File Size: 800768 File Time: 2009-04-11_072818[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Advanced Windows 32 Base API[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 61[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\MSCTF.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74cf0000 Image Size: 0x000c8000[/COLOR]
[COLOR=#3E3E3E]File Size: 807936 File Time: 2015-01-21_030216[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: MSCTF Server DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.19296[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.19296[/COLOR]


[COLOR=#3E3E3E]Module 62[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\IMM32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74dc0000 Image Size: 0x00060000[/COLOR]
[COLOR=#3E3E3E]File Size: 116224 File Time: 2009-04-11_072644[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Multi-User Windows IMM32 API Client DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 63[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\WS2_32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74f40000 Image Size: 0x0002d000[/COLOR]
[COLOR=#3E3E3E]File Size: 179200 File Time: 2008-01-21_035036[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Windows Socket 2.0 32-Bit DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6001.18000[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6001.18000[/COLOR]


[COLOR=#3E3E3E]Module 64[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\SHLWAPI.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74f70000 Image Size: 0x00059000[/COLOR]
[COLOR=#3E3E3E]File Size: 353280 File Time: 2012-11-22_045438[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Shell Light-weight Utility Library[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18738[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18738[/COLOR]


[COLOR=#3E3E3E]Module 65[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\kernel32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x74fd0000 Image Size: 0x00110000[/COLOR]
[COLOR=#3E3E3E]File Size: 861696 File Time: 2014-02-06_025744[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Windows NT BASE API Client DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.19034[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.19034[/COLOR]


[COLOR=#3E3E3E]Module 66[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\SHELL32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x750e0000 Image Size: 0x00b11000[/COLOR]
[COLOR=#3E3E3E]File Size: 11587584 File Time: 2015-02-18_030300[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Windows Shell Common Dll[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.19322[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.19322[/COLOR]


[COLOR=#3E3E3E]Module 67[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\GDI32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x75c10000 Image Size: 0x00090000[/COLOR]
[COLOR=#3E3E3E]File Size: 304128 File Time: 2014-08-23_020514[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: GDI Client DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.19171[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.19171[/COLOR]


[COLOR=#3E3E3E]Module 68[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\ole32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x75ca0000 Image Size: 0x00145000[/COLOR]
[COLOR=#3E3E3E]File Size: 1316864 File Time: 2010-06-28_180022[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Microsoft OLE for Windows[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18277[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18277[/COLOR]


[COLOR=#3E3E3E]Module 69[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\USP10.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x75df0000 Image Size: 0x0007d000[/COLOR]
[COLOR=#3E3E3E]File Size: 502784 File Time: 2014-04-26_170124[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft(R) Uniscribe Unicode script processor[/COLOR]
[COLOR=#3E3E3E]FileDesc: Uniscribe Unicode script processor[/COLOR]
[COLOR=#3E3E3E]FileVer: 1.626.6002.19096[/COLOR]
[COLOR=#3E3E3E]ProdVer: 1.626.6002.19096[/COLOR]


[COLOR=#3E3E3E]Module 70[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\WLDAP32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x76030000 Image Size: 0x00049000[/COLOR]
[COLOR=#3E3E3E]File Size: 287744 File Time: 2009-04-11_072826[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Win32 LDAP API DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 71[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\imagehlp.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x761a0000 Image Size: 0x0002a000[/COLOR]
[COLOR=#3E3E3E]File Size: 158208 File Time: 2013-10-22_082000[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Windows NT Image Helper[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18971[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18971[/COLOR]


[COLOR=#3E3E3E]Module 72[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\PSAPI.DLL[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x76250000 Image Size: 0x00007000[/COLOR]
[COLOR=#3E3E3E]File Size: 12288 File Time: 2006-11-02_104614[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Process Status Helper[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6000.16386[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6000.16386[/COLOR]


[COLOR=#3E3E3E]Module 73[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\RPCRT4.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x76260000 Image Size: 0x000f0000[/COLOR]
[COLOR=#3E3E3E]File Size: 677888 File Time: 2013-07-10_104750[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Remote Procedure Call Runtime[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18882[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18882[/COLOR]


[COLOR=#3E3E3E]Module 74[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\SETUPAPI.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x76350000 Image Size: 0x0018a000[/COLOR]
[COLOR=#3E3E3E]File Size: 1591296 File Time: 2009-04-11_072826[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Windows Setup API[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 75[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\OLEAUT32.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x764e0000 Image Size: 0x0008e000[/COLOR]
[COLOR=#3E3E3E]File Size: 564224 File Time: 2014-11-26_030552[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: [/COLOR]
[COLOR=#3E3E3E]FileDesc: [/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.19243[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.19243[/COLOR]


[COLOR=#3E3E3E]Module 76[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\msvcrt.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x76570000 Image Size: 0x000aa000[/COLOR]
[COLOR=#3E3E3E]File Size: 680448 File Time: 2011-12-14_171748[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Windows NT CRT DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 7.0.6002.18551[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.1.8638.18551[/COLOR]


[COLOR=#3E3E3E]Module 77[/COLOR]
[COLOR=#3E3E3E]C:\Windows\syswow64\LPK.DLL[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x76e90000 Image Size: 0x00009000[/COLOR]
[COLOR=#3E3E3E]File Size: 23552 File Time: 2009-04-11_072646[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: Language Pack[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18005[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18005[/COLOR]


[COLOR=#3E3E3E]Module 78[/COLOR]
[COLOR=#3E3E3E]C:\Windows\SysWOW64\ntdll.dll[/COLOR]
[COLOR=#3E3E3E]Image Base: 0x76ec0000 Image Size: 0x00160000[/COLOR]
[COLOR=#3E3E3E]File Size: 1168088 File Time: 2013-07-09_130432[/COLOR]
[COLOR=#3E3E3E]Version:[/COLOR]
[COLOR=#3E3E3E]Company: Microsoft Corporation[/COLOR]
[COLOR=#3E3E3E]Product: Microsoft® Windows® Operating System[/COLOR]
[COLOR=#3E3E3E]FileDesc: NT Layer DLL[/COLOR]
[COLOR=#3E3E3E]FileVer: 6.0.6002.18881[/COLOR]
[COLOR=#3E3E3E]ProdVer: 6.0.6002.18881[/COLOR]




[COLOR=#3E3E3E]== [end of error.log] ==[/COLOR]

Link to comment
Share on other sites

@ C3nturionsparta

you running out of memory

try reduce the mods or texture size to half in option menu or active texture management mod

Edited by Spooks
Link to comment
Share on other sites

What do you guys think will happen to RO when 1.0 gets released? I have no doubt there will be a new version for 1.0, but do you think it will be save game compatible?

Also, is there a way to attack multiple things to a fairing base without using a multi coupler first?

Edited by Oksbad
Link to comment
Share on other sites

...

Also, is there a way to attack multiple things to a fairing base without using a multi coupler first?

You can use surface attach. Easiest way of doing this is by downloading editor extensions.

Link to comment
Share on other sites

Thanks for the answers! I just wanted all of you to know that I really appreciate your efforts into this mod, and you guys' willingness to answer my many questions. :D

Is it intended that some of my rockets burn up on ascent during aggressive turns via deadly rentry? If not, what a good way to configure DE to avoid that? (I suppose the simplest way would be to reduce difficulty setting on ascent and put it back after getting into orbit)

Furthermore, is there a way to remove the "shroud" that covers engines when you put something under them? Like so:

oDQ6FzU.jpg

Edited by Oksbad
Link to comment
Share on other sites

^^^ to your question about the shroud, the only way I know of is to put an interstage or payload fairing base underneath the engine, and then attach lower stages to that

Has anyone had the issue where the load vessel button in the VAB just stops working? Like, you press it, and no window comes up to load a vessel? This is happening to me now, and restarting the game has not fixed it. I can make new vessels, and save them (I think), and all my in-flight vessels are still where they're supposed to be, and all the CRAFT files for them are still in my save folder, I just can't load anything. It's completely maddening. I don't know if this is RO specific.

edit: bonus issue, does anyone know why this would happen with textures?

NuxXzLC.png

kzdZzh8.png

EVE Overhaul issue maybe?

Edited by Phylan
Link to comment
Share on other sites

Thanks for the answers! I just wanted all of you to know that I really appreciate your efforts into this mod, and you guys' willingness to answer my many questions. :D

Is it intended that some of my rockets burn up on ascent during aggressive turns via deadly rentry? If not, what a good way to configure DE to avoid that? (I suppose the simplest way would be to reduce difficulty setting on ascent and put it back after getting into orbit)

Furthermore, is there a way to remove the "shroud" that covers engines when you put something under them? Like so:

Your ships are burning up on ascent because your thrust to weight ratio is much too high. Try using weaker engines or a heavier payload.

About disabling the engine's shroud, you can install TweakableEverything, which provides a button for toggling any engine's built-in shroud..

Link to comment
Share on other sites

Has anyone had the issue where the load vessel button in the VAB just stops working? Like, you press it, and no window comes up to load a vessel? This is happening to me now, and restarting the game has not fixed it. I can make new vessels, and save them (I think), and all my in-flight vessels are still where they're supposed to be, and all the CRAFT files for them are still in my save folder, I just can't load anything. It's completely maddening. I don't know if this is RO specific.

OK I fixed this one, the Auto-Saved Vessel .craft file was corrupted and only had like the first 5 lines in it, which must have happened during the previous crash. I deleted the craft file from my save folder and the load button works again.

Link to comment
Share on other sites

hi all

so ive not posted for a while but ive also not played since .25 , my .25 blew up and hadnt got round to a ok setup again.

so ive been real frustrated for a week now , I cant get enough as i used to on part count to play 32bit , ive got it today just so i can play but I used to have the 8k textures and still play , ive been unable to do this , also Nathan due to realfuels/modulafuelsystem being activly non 64 compatible ive not managed to play a game even with a week of trying.

Im almost at a loss and need to get back playing , its so frustrating as in the idst of all the 64 bit crap I had never once had an issue.

So im doing what I can now with active texture management again ect but jesus the point of getting to orbit is to beat the difficulties and be rewarded with the views - I cant load the game below 3.2GB in 32 bit without seriouslt compromising my experience , and have not found SFA regarding users "getting around the modular fuels refusal to work with 64" -

i dunno what to do next its pretty hard to rebuild an old working version as the versions just arent all on github as far as ive tried , I know this is mainly NON politically correct x64 talk but jesus I just wanna play the game and the DDS loader kicks the sh out of my ram just as I think im good ,

I look back at my imgur and see all my screenshots and cant beleive I cant play like that , ive got to orbit today without real fuels and had to delete a fk load of configs just to get the gamr to see fuel so I need advice

how are you all settling for 32bit and managing to enjoy while it seems now seriously held back , and NathanKell im confused as to the way things have progressed , this is the best thing ever still and x64 freed me at the time it was right as I had progressed through and then found id been restricted by memory - there has to be a 0.90 working solution to RO RSS RF and MFS

or I think im screwed

ps youre still awesome - but i am a php DEV for a living and ATM AFIAK i cant play even play a game that should look good due to a couple of configs that have been built incompatible purposefully for whatever reason since the version change/takeover.complicatedstuff lol

i just wanna play omfg

Link to comment
Share on other sites

I dont see how thats going to improve , I can get the game working fine in 64 with everything installed and lovely , but realism overhaul , dependencies now with RF and modular all confusing it doesnt work . is this not the case??? for 64 bit on linux as my new card will allow the latest drivers on linux

I didnt see a difference when I tried a few weeks ago as far as i can remember , and plagued with a lot of AMD NVIDIA driver issues.

if im wrong , fine , ill try but im unconvinced of a mods ability to see linux windows , , i figured no support for 64 meant no suppport , and modular fuel tanks has gone one way further with no code for evrn allowing me to try

help lol

Link to comment
Share on other sites

There is no support for Windows 64-bit builds, and squad is discontinuing support until it becomes stable. However Linux 64-bit will still be released.

FWIW, 8k textures for the entire RSS isn't going to happen, even says so on the OP that 8K will be too much. Personally I use 2K for everything but Earth/Moon/Mars, maybe I'll get something more later, but otherwise no use loading 8K textures for pluto.

Until there is a viable load on demand that also unloads as no longer needed, it's either decrease textures, decrease mods, or don't play.

Link to comment
Share on other sites

It's pretty simple, windows 64-bit KSP is so unstable that it got to the point where even stock, completely unmodded career mode is a crashfest for most people. No sane organisation is going to deal with a system which makes the majority of incoming support tickets unsolvable within its scope, especially when there is no easy way to tell which ones these are before time is wasted on delving into them. I think as an IT professional you should be able to understand that.

Regarding reduced number of mods that we can get away with running - thank Squad for a ton of mostly useless graphics they've put into their updates to get the stock KSP ever closer to reaching the RAM cap all by itself. With no major improvement to Unity in sight, for the time being if you want things to be pretty, linux's where it's at.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...