scerion
Members-
Posts
113 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by scerion
-
[1.10.1+] Contract Configurator [v1.30.5] [2020-10-05]
scerion replied to nightingale's topic in KSP1 Mod Releases
Actually that mod is why I'm asking Kinda asking for Nifty heh. Okay so cool if it can be suppressed then that would likely be the best route. Thanks nightingale, figured you were the best person to come to for this And will def see if Nifty can get an API working for some integration- 5,206 replies
-
[1.10.1+] Contract Configurator [v1.30.5] [2020-10-05]
scerion replied to nightingale's topic in KSP1 Mod Releases
Nightingale! Long time no talk to Had a quick question for ya. Is it possible to suppress stock contracts? Or potentially hook into them? Am wanting to have the rescue contracts pull names from a Twitch user base instead of the random pool KSP has. So thinking options are either replace the name list with a temporary one pulled from Twitch at time of playing, if that can be hooked into. Or creating a new contract pack which will pull those names from Twitch, but suppress the stock rescue contracts so no random names are pulled.- 5,206 replies
-
Hmm would this help for the sub issue? https://github.com/justintv/Twitch-API/blob/master/v3_resources/subscriptions.md Also not sure how thetwitch api shows it, but when viewing users via chatty it has an icon in front of their name. If that shows up in the twitch api like that, then should be kinda easy to determine? just search and limit to that symbol. Ohhh so in career it wouldn't include any random named ones just ones from your channel? What if you don't have enough folks in your channel? still would pull random named kerbals?
-
[1.10.1+] Contract Configurator [v1.30.5] [2020-10-05]
scerion replied to nightingale's topic in KSP1 Mod Releases
ahh I was close on my advice. But I misunderstood the beginning parameter, I should've caught that's how CC was interpreting it. I gotta pay closer attention at reading these- 5,206 replies
-
[1.10.1+] Contract Configurator [v1.30.5] [2020-10-05]
scerion replied to nightingale's topic in KSP1 Mod Releases
zcaalock, Where you have the prelaunch parameter add this and it won't mark the parameter failed after launch: disableOnStateChange = true Like this: PARAMETER { name = ReachState type = ReachState situation = PRELAUNCH [COLOR="#FF0000"]disableOnStateChange = true[/COLOR] } For cleanup I'd remove the minCount=1 on your detectionarray, it should just detect then if it has one or more without the added text. As for the Destination Mun that might be a bug? But I think the workaround is to remove the target=Mun from the main contract parameter and put it in the SCANsatCoverage parameter.- 5,206 replies
-
[1.10.1+] Contract Configurator [v1.30.5] [2020-10-05]
scerion replied to nightingale's topic in KSP1 Mod Releases
Nightingale you're the best- 5,206 replies
-
[1.10.1+] Contract Configurator [v1.30.5] [2020-10-05]
scerion replied to nightingale's topic in KSP1 Mod Releases
heyas Nightingale So been trying out this spawn kerbal stuff So I completed my contract and recovered my kerbal, but afterwards he wasn't available in my save to select as a kerbal for more missions Also I'm not setting an expiration time for my contracts yet they have expiration times in the admin building when showing up- 5,206 replies
-
[1.10.1+] Contract Configurator [v1.30.5] [2020-10-05]
scerion replied to nightingale's topic in KSP1 Mod Releases
EDIT: as a troubleshooting step, I tried using disableonstatechange = true , but it hasn't helped. PARAMETER { name = ReachSituation2 type = ReachSituation situation = ORBITING disableOnStateChange = true } Still uncompletes after de-orbit burn you have disableOnStateChange = true, this needs to be false so that it'll stay checked.- 5,206 replies
-
[1.10.1+] Contract Configurator [v1.30.5] [2020-10-05]
scerion replied to nightingale's topic in KSP1 Mod Releases
nightingale thank you as always The update looks awesome. I'm confused by the documentation on VesselParameterGroups though... could you give a more clarified example? Like would this work or do I need to change things? can parameters be updated to any newer ones (i.e. orbit?) or is this the simplest/most optimized way? Rather it instead of being "Just working" to it being "properly coded" (Still the basic munar landing and planting a flag contract with using a specific craft) CONTRACT_TYPE:NEEDS[!MechJeb2&!HyperEdit] { name = KSABKHW150110 title = KSA BootKamp 2015-01-10 Homework description = Greetings Space Kadets! Here is the first Kerbal Space Academy Homework. Load up the KSA Munar Trainer mkIII in the VAB and go to the Mun! Once at the Mun, land the craft and plant your flag. Be sure to get a screenshot of the plaque with BootKamp 01-10 / YourTwitchUsername / DateComplete synopsis = Complete the Homework Request below completedMessage = You have completed the homework for Jan. 10th! Don't forget to screenshot! agent = Kerbal Space Academy cancellable = false declinable = false prestige = Trivial maxCompletions = 1 maxSimultaneous = 1 advanceFunds = 35000 rewardScience = 25.0 rewardReputation = 100.0 rewardFunds = 100000.0 failureReputation = 10.0 failureFunds = 35000.0 PARAMETER { name = Sequence1 type = Sequence title = Complete following in order & screenshot with plaque and craft. PARAMETER { name = VesselParameterGroup1 type = VesselParameterGroup vessel = KSA Munar Trainer PARAMETER { name = EnterOrbit1 type = EnterOrbit disableOnStateChange = false targetBody = Kerbin } PARAMETER { name = EnterOrbit1 type = EnterOrbit disableOnStateChange = false targetBody = Mun } PARAMETER { name = LandOnBody1 type = LandOnBody disableOnStateChange = false targetBody = Mun } PARAMETER { name = PlantFlag1 type = PlantFlag targetBody = Mun } } } }- 5,206 replies
-
CKAN integration I believe can be done automagically if you're uploading to KerbalStuff
-
Kujuman <3
-
Mod-Oriented Tech Tree (Aug 3, v0.3.3 bug fixes)
scerion replied to cvod's topic in KSP1 Mod Development
Heyas Cvod Loving the update!!! I was helping someone troubleshoot getting this working in their save and noticed some things: 1) Alternate tree id needs to be changed to modOrienTreeAlt as the name conflicts with the other and would require a manual delete of the file, this way there's nothing required on the user end. 2) In both trees: name= Mod-Oriented Tree 0.3.0 (normal) <---needs to be label, not name -
[1.10.1+] Contract Configurator [v1.30.5] [2020-10-05]
scerion replied to nightingale's topic in KSP1 Mod Releases
Is it possible for a Using a Specific Ship parameter?- 5,206 replies
-
[1.10.1+] Contract Configurator [v1.30.5] [2020-10-05]
scerion replied to nightingale's topic in KSP1 Mod Releases
Debug window is alt-F12 actually Alt-F9 is load a specific quicksave. Love the new features! Esp the no need to restart so much easier to test contracts now. Hopefully should have full set of KSA homework soon- 5,206 replies
-
Anyone tested this in .90??
-
Release hype Awesome job ridecar2
-
[1.10.1+] Contract Configurator [v1.30.5] [2020-10-05]
scerion replied to nightingale's topic in KSP1 Mod Releases
Seriously. Quit being so awesome Nightingale. No...not really... but you've done some amazing work Thank you so much.- 5,206 replies
-
[1.10.1+] Contract Configurator [v1.30.5] [2020-10-05]
scerion replied to nightingale's topic in KSP1 Mod Releases
Awesome!! More Awesome Request/Suggestion: is it/would it be possible to block out stock contracts? Would be nice to insert into a career and only have custom contracts enabled.- 5,206 replies
-
[1.2.x] Kerbal Crew Manifest v0.6.4.0 (Dec 30th 2016)
scerion replied to sarbian's topic in KSP1 Mod Releases
<3 CrewManifest fo lyfe! Down with that ShipManifest stuff (though it's an awesome mod too!) -
[1.10.1+] Contract Configurator [v1.30.5] [2020-10-05]
scerion replied to nightingale's topic in KSP1 Mod Releases
you were able to get new agents created? How so? I haven't tested yet trying to make my own cfg file yet. Also thanks for testing my contract Zeta!- 5,206 replies
-
[1.10.1+] Contract Configurator [v1.30.5] [2020-10-05]
scerion replied to nightingale's topic in KSP1 Mod Releases
Hmm weird, I have the custom agency in there And dangit see I knew there was something like that out there. I was thinking it might be a modulemanager edit but I couldn't find anyone that did it before. Hmm so I just need to create my own cfg with details from the squad one minus squad stuff...well that's way easier if so Hmm wonder what's going on in my game causing me problems. Shall wipe and try again.- 5,206 replies