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
Put a Lua block into the microcontroller for the Wavelenth set of the Seeker with this code:
function onTick()
Code = input.getNumber(4)
CurrentCode = input.getNumber(6)
if (Code ~= 0) and (Code ~= CurrentCode) then
output.setBool(1, true)
else
output.setBool(1, false)
end
end
Then connect the Hardpoint / Target Data node to the script, and connect number channel 6 with the current memory number output, also via Composite, to the Lua block.
The output of the script is true or false, which you can use for the "Set Memory" input.
Here is a picture [imgur.com] of the microcontroller.
PS: makes it also smaller XD