Asenna Steam
kirjaudu sisään
|
kieli
简体中文 (yksinkertaistettu kiina)
繁體中文 (perinteinen kiina)
日本語 (japani)
한국어 (korea)
ไทย (thai)
български (bulgaria)
Čeština (tšekki)
Dansk (tanska)
Deutsch (saksa)
English (englanti)
Español – España (espanja – Espanja)
Español – Latinoamérica (espanja – Lat. Am.)
Ελληνικά (kreikka)
Français (ranska)
Italiano (italia)
Bahasa Indonesia (indonesia)
Magyar (unkari)
Nederlands (hollanti)
Norsk (norja)
Polski (puola)
Português (portugali – Portugali)
Português – Brasil (portugali – Brasilia)
Română (romania)
Русский (venäjä)
Svenska (ruotsi)
Türkçe (turkki)
Tiếng Việt (vietnam)
Українська (ukraina)
Ilmoita käännösongelmasta
Such as :
@Variables{
MyRotorVelocity = Velocity of MyRotor
}
@Main{
Velocity of MyRotor2 = MyRotorVelocity + 5
}
or use basic trigonometric fuctions as Cos, aCos and such ?
My question is regarding the "Show Properties of" function.
I'm trying to set up an LCD screen to display the "Missing components:" section of the Nanite Control Factory properties. I've tried several permutations of code and I just can't seem to get the hang of it. The LCD will display the T/F values for power, show in terminal, etc., but I can't get it to display the "Missing components:" values that are important. Do you have time to give me a little guidance?
the Nanite Control Factory is a mod and a rather complex one at that. This script will work with all vanilla blocks but when it comes to mods, unless the creator of the mod has considered this script and built the mod to be compatible then it is really just luck if some features do work with the Easy Automation script. I don't know if "Missing components" are even properties of the Nanite Control Factory block (I am not sure why they would be properties as properties are usually reserved for sliders and buttons such). If they are displayed in the Detailed info of the Nanite Control Factory in the proper format then you will be able to store them in variables and display them with the write statements as is explained in the guide under the “LCD Statements”.
@Init{
LowerLimit of Rotor = -85
UpperLimit of Rotor = 0
Velocity of Rotor = 2
}
After executing this section only the LowerLimit will have been changed. Any ideas what I'm doing wrong? :)
EDIT: It works with the old version of the script!
I've been trying to play with you script today et some lamps ( of course !! )
Here is the script i used :
@light on{
OnOff_On lightName
}
@light blue{
Color of lightName = 0:0:255
}
@Toggle light{
if OnOff of lightName = off
{
@light on
@light blue
}
else
{
OnOff of lightName = off
Color of lightName = 255:255:255
}
}
( You've probably seen it before ;) )
Problem in run into is : Light does Turn On if Its Off and will turn Off if Button is pressed again
But wont turn back on after that unless I reset Program Block..
What i'm i missing ? Is there a loop creating or is the script on hold waiting nothing ?
Read about "stop" and "end" but nothing about it in the guide
Thanks :D and Great work !
Edit:
I've been playing around some more and it seems to get stuck when asked to change Color
I can toogle the Light On and Off but if I try to cycle Color then it changes it Once then wont do anything ( and no info on debug screen)
Hope you can help :)