Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Your problem now sounds like a block ownership issue. Try owning everything.
the general idea is your LCD must be in the Aligner group, and include the chart name or short name in the light's Title property iirc. You'd pretty much need to scan the script for Chart names for a complete list, but many are listed above. Try text mode, debug font, though it should set that up for you automatically..
how about the other axis?
I made a working platform that needs to hover in place when i exit the cockpit. Reduces speed to zero in all directions and then hovers.
Just to be clear, with deactivated i ment a mod complettly removed the functionality of interial dampeners on my current server. no way to reactivate them, instead i was looking for scripts that could do that on their own.
The problem like I said is when it decides to shut the thrust off ('free' mode) so the solution would be to keep it from going into free mode, by eliminating that clause in the script, I mentioned it below. iirc when I tried this what you get instead is a very bouncy switch back and forth between wanting to thrust up and wanting to thrust down, that never quite settles down, but can be tuned to be very small, sort of like the problem you're wanting to solve, only ... different.
Solving both those problems would probably require both more engineering skill than I possess, and some fixes to the game itself, how it handles overrides.
But if one PB or two, I have that weird issue that sometimes propels the craft upward, like it's not the PID, but it overshoots the thrust when descending, duno how to explain this. I think it's because I changed amt = 0f; to -1, but not sure about that. (like there are many values in Custom Data that can have an effect)
what I did was
amt= 0 to amt= -2
________________________
else if (fraction <= .01) { // off. Tiny overrides cannot be achieved. Prevent builtin inertial dampening after game clips them to zero.
thrust.Enabled = true;
set from false to true
_________________________
thrustvelslop=0.1
thrustposslop=0.1
https://youtu.be/InrwXz-2dyw?si=gtEokkMAabSgtMl0
So I made the change at Line 1177 and set amt = 0f; to amt = -1f;
I am not quite sure yet if it helps, but it does something ...I suppose
also I am not so sure what
thrustvelslop=
thrustposslop=
do. It seems they have also some effect onto the stability, but couldn't figure out what it exactly does.
I have literary no idea of what I am doing. Sorry for being such a pain...