Mecripp Posted May 30, 2014 Share Posted May 30, 2014 You have VER 16 of the RPM and did you check your install of ASET make sure all is right ? Quote Link to comment Share on other sites More sharing options...
alexustas Posted May 30, 2014 Author Share Posted May 30, 2014 ]Anybody have an idea ?Check your installation paths:\GameData\ASET\ALCOR_LanderCapsule\GameData\ASET\ALCOR_IVA_patch\GameData\ASET\ASET_Props Quote Link to comment Share on other sites More sharing options...
SrFancyMustachio Posted May 30, 2014 Share Posted May 30, 2014 Here is my folder:I think every thing is installed properly like the instructions say in the front page. (Thanks for the reply BTW) Quote Link to comment Share on other sites More sharing options...
Mecripp Posted May 30, 2014 Share Posted May 30, 2014 (edited) Here is my folder:http://i.imgur.com/zOoSrvq.pngI think every thing is installed properly like the instructions say in the front page. (Thanks for the reply BTW)Are you using JSI 16 ? for KSO you could have used a older ver. And ASET as to be JSI 16 ?Edit Glad you got it working Edited May 30, 2014 by Mecripp2 Quote Link to comment Share on other sites More sharing options...
SrFancyMustachio Posted May 30, 2014 Share Posted May 30, 2014 Thanks you for your help, redownloaded and reinstalled JSI and it seems to have done the trick. Hooray ! Quote Link to comment Share on other sites More sharing options...
nohelmet Posted June 6, 2014 Share Posted June 6, 2014 I just discovered this capsule, and it is *amazing*! I could figure out some of the buttons, but not all. Is there a description somewhere of what they all do? I read the original post, but not the 113 pages of the thread... I found something at https://sites.google.com/site/alcormanual/ but unfortunately it's woefully incomplete.So, what do all the buttons do? And what do all the lights indicate? Quote Link to comment Share on other sites More sharing options...
BudgetHedgehog Posted June 6, 2014 Share Posted June 6, 2014 All the buttons and lights... any particular ones, or shall I list the function of every single button and light visible in the capsule? Bear in mind that'll be quite a large list... Quote Link to comment Share on other sites More sharing options...
nohelmet Posted June 6, 2014 Share Posted June 6, 2014 All the buttons and lights... any particular ones, or shall I list the function of every single button and light visible in the capsule? Bear in mind that'll be quite a large list...Well I was hoping someone would point me to already-existing documentation. But since you're offering so kindly, here are the parts I'm most curious about:What do the "Heat", "ASC" and "DES" lights mean? What does the "RESERVES" lock/unlock button do? Quote Link to comment Share on other sites More sharing options...
BudgetHedgehog Posted June 6, 2014 Share Posted June 6, 2014 Heat: I believe this is the same as the engine overheat bar in normal view. Will light up if an engine is overheating.ASC/DES: ASC will light up if you are gaining altitude, DES will light up if you are losing it.RESERVES lock button: Does the same thing as clicking the little arrow on a fuel tanks right click menu. In this case it globally blocks access to all resources on the ship (or possibly just fuel, I'm not sure). Quote Link to comment Share on other sites More sharing options...
alexustas Posted June 6, 2014 Author Share Posted June 6, 2014 Thanks, ObsessedWithKSP"HEAT" light up if the temperature of the pod itself is over 85% of it's maximum temperature"RESERVES" - Turns on all resources that were disabled by the player (for instance, by right-clicking on a monopropellant tank, and clicking on the small icon next to the tank's capacity to prevent it from being used). The button is 'on' when there is at least one resource whose flow was disabled.from 0:25http://youtu.be/N02qEVuJFFA Quote Link to comment Share on other sites More sharing options...
BudgetHedgehog Posted June 6, 2014 Share Posted June 6, 2014 I stand corrected.. Turns out the creator of the pod knows more about the buttons than I do, who'd have thunk it? Quote Link to comment Share on other sites More sharing options...
K3-Chris Posted June 6, 2014 Share Posted June 6, 2014 Btw alex I asked earlier how you trigger animations in IVA using a kerbal in IVA, any tips? I want to make a toggle-able HUD prop, can't find any documentation on how do do IVA buttons. Quote Link to comment Share on other sites More sharing options...
alexustas Posted June 6, 2014 Author Share Posted June 6, 2014 (edited) Btw alex I asked earlier how you trigger animations in IVA using a kerbal in IVA, any tips? I want to make a toggle-able HUD prop, can't find any documentation on how do do IVA buttons.Ok, let’s try explaining.You need to use the “perPodPersistenceName†parameter. It allows you to connect the state of one prop with other props by making them use the same storage variable for their state. (The main RasterPropMonitorComputer module on the pod model takes care of keeping these variables around and making them persist.) If you don’t give this parameter, every button has a uniquely generated parameter name that keeps it’s state, but if you do, multiple animated elements can share state.Let’s take, for example, the mechanism of turning on cockpit panel lights. Everything is turned on with the “CockpitBackLightSwitch†prop, which has a config like this:PROP{ name = CockpitBackLightSwitchMODULE { name = JSIActionGroupSwitch animationName = SwitchLightAnim switchTransform = SwitchPUSHcollider actionName = dummy [B][COLOR="#B22222"]perPodPersistenceName = BackLight[/COLOR][/B] needsElectricCharge = true switchSoundVolume = 0.6 reverse = true switchSound = ASET/ASET_Props/Sounds/buttonbeep. . . }Pressing this button starts the animation of the button press itself (“SwitchLightAnimâ€Â) and changes the state of the “BackLight†variable, without doing anything else. In the graph above, it’s “MASTERâ€Â.Now let’s take a look at the configuration of the “PanelDivider†prop, marked as “Slave†in the same graph:PROP{ name = PanelDivider MODULE { name = JSIActionGroupSwitch animationName = PanelDivider01TurnON [B][COLOR="#B22222"]perPodPersistenceName = BackLight[/COLOR][/B] actionName = dummy switchSound = ASET/ASET_Props/Sounds/beep-21 switchSoundVolume = 0.001 }}In this configuration, “animationName = PanelDivider01TurnON†is the animation of the actual color change, and notice also the “perPodPersistenceName = BackLight†parameter. This is what connects the fact of pressing the “CockpitBackLightSwitch†button with the animation of color change of cockpit panels.ALCOR has 74 parts like this, and they all turn on when you press a single button. The lighting of joysticks and other inner lights are done in the same manner.Opening window shutters on the top porthole is done using the same mechanism, but the animation module configuration is given in internal.cfg rather than prop.cfg, because the shutters themselves are not props -- they’re elements of the internal model itself.Making interior buttons affect the exterior model (opening/closing shutters, turn on lights adding emissive texture).Animation of the exterior model elements is done using the same mechanism as well. This is the button configuration that turns on airlock lights:PROP{ name = AirLockLightSwitch MODULE { name = JSIActionGroupSwitch animationName = SwitchLightAnim switchTransform = SwitchPUSHcollider actionName = dummy [B][COLOR="#0000CD"]perPodPersistenceName = AirLockLights[/COLOR][/B] needsElectricCharge = true switchSound = ASET/ASET_Props/Sounds/buttonbeep } MODULE { name = JSIActionGroupSwitch animationName = AirLockLightsAnim actionName = dummy [B][COLOR="#008000"]animateExterior = true[/COLOR][/B] [B][COLOR="#0000CD"]perPodPersistenceName = AirLockLights[/COLOR][/B] }. . .The first module starts the animation of the button itself and changes the state of “AirLockLights†variable. The second module reacts to the change in the variable and runs “AirLockLightsAnim†on the exterior pod model. JSIActionGroupSwitch module knows that it’s on the exterior pod model because “animateExterior = trueâ€Â.More info HERE Edited June 6, 2014 by alexustas Quote Link to comment Share on other sites More sharing options...
nohelmet Posted June 6, 2014 Share Posted June 6, 2014 Thank you very much! Oh, I also wanted to ask: the "envir control" section - they're just for show, right? I don't think the game actually models kerbal health. What about the "shutters" button? Quote Link to comment Share on other sites More sharing options...
TOPACES Posted June 6, 2014 Share Posted June 6, 2014 What about the "shutters" button?The shutters switch will open the docking window shield, which is the small window above the pilot seat. The shield will also open on the outside. You can get a better view through it by double-clicking right below the window in IVA. Quote Link to comment Share on other sites More sharing options...
alexustas Posted June 6, 2014 Author Share Posted June 6, 2014 Thank you very much! Oh, I also wanted to ask: the "envir control" section - they're just for show, right? I don't think the game actually models kerbal health. What about the "shutters" button?KSP does not provides us data about temperature, humidity and pressure inside the Pod. Almost all on the panel "environment" - are fake. indication of occupied seats and heating the capsule body are only useful . Quote Link to comment Share on other sites More sharing options...
nohelmet Posted June 6, 2014 Share Posted June 6, 2014 Cool, thank you! Quote Link to comment Share on other sites More sharing options...
alexustas Posted June 6, 2014 Author Share Posted June 6, 2014 Finally! I solved the problem with the collider. Quote Link to comment Share on other sites More sharing options...
TOPACES Posted June 8, 2014 Share Posted June 8, 2014 btw absolutely great work on the pod. I love it!I'm not sure if this question's been asked already, but I noticed the button panels for communications and life support-related functions. will there be integrated functionality for TAC life support and/or RemoteTech? I would be really looking forward to that. Quote Link to comment Share on other sites More sharing options...
sumghai Posted June 9, 2014 Share Posted June 9, 2014 I've knocked together a very quick and dirty Module Manager patch to add Connected Living Spaces (CLS) capability to ALCOR:@PART[ALCOR_LanderCapsule]:HAS[!MODULE[ModuleConnectedLivingSpace]]{ MODULE { name = ModuleConnectedLivingSpace passable = true impassablenodes = bottom // Since there isn't a hatch on the deck of the ALCOR internal }} Quote Link to comment Share on other sites More sharing options...
Kitspace Posted June 10, 2014 Share Posted June 10, 2014 Hello!What is the built in docking camera cockpit display that always says no signal for me?How do I make it work? Do I have to attach a specific camera or specific docking port somewhere on the capsule?There is a switch in the cockpit to the right of the main pilot panel that opens and closes something called shutters.What are those shutters and where are they on the capsule? Quote Link to comment Share on other sites More sharing options...
BudgetHedgehog Posted June 10, 2014 Share Posted June 10, 2014 Hello!What is the built in docking camera cockpit display that always says no signal for me?How do I make it work? Do I have to attach a specific camera or specific docking port somewhere on the capsule?You need to select a docking port as reference part from the target management screen.There is a switch in the cockpit to the right of the main pilot panel that opens and closes something called shutters.What are those shutters and where are they on the capsule?Those are the docking shutters located at the top of the capsule. When the shutters are retracted, you can click on the window at the top for another view of docking Quote Link to comment Share on other sites More sharing options...
alexustas Posted June 15, 2014 Author Share Posted June 15, 2014 Thanks to the new features expected to be released in RPM 0.17, ALCOR will also have an emergency electricity generator, and onboard lights will actually consume power. Quote Link to comment Share on other sites More sharing options...
grtwatkins Posted June 15, 2014 Share Posted June 15, 2014 That is extremely awesome! Have you considered putting the EPG switch on a side panel though? Seems like that's where power stuff would be. Quote Link to comment Share on other sites More sharing options...
Trailers Posted June 18, 2014 Share Posted June 18, 2014 One question. Does your capsule only supports the 2.2.1 version of mechjeb, or does it also allow the 2.2.1:260 build version?Edit: And will it also allow scansat 7.0? (or 6.0) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.