Difference between revisions of "Common YOLOL"
Jump to navigation
Jump to search
m (Forgot to add a goto 1, apologies for the double edit) |
m (Changed note locations. Added note to generator management section about generator spool up.) |
||
Line 1: | Line 1: | ||
==Standard Generator Script (Basic YOLOL Chip)== | ==Standard Generator Script (Basic YOLOL Chip)== | ||
''Note: This script will require enough batteries on the ship to act as a buffer for the generator spool up time.'' | |||
===Default Fields=== | ===Default Fields=== | ||
Line 7: | Line 9: | ||
===Non Default Fields=== | ===Non Default Fields=== | ||
''This version of the script assumes either "'''GeneratorUnitRateLimit'''" or "'''FuelChamberRateLimit'''" (preferably the latter) are renamed to "'''limit'''", and at least one battery exists on the network with it's "'''StoredBatteryPower'''" field renamed to "'''bat'''".'' | ''Note: This version of the script assumes either "'''GeneratorUnitRateLimit'''" or "'''FuelChamberRateLimit'''" (preferably the latter) are renamed to "'''limit'''", and at least one battery exists on the network with it's "'''StoredBatteryPower'''" field renamed to "'''bat'''".'' | ||
:limit=100-:bat/100 goto 1 | :limit=100-:bat/100 goto 1 | ||
Line 13: | Line 15: | ||
===Tutorial Laborer=== | ===Tutorial Laborer=== | ||
''The Laborer has renamed field names by default so this version will work for the tutorial ship.'' | ''Note: The Laborer has renamed field names by default so this version will work for the tutorial ship.'' | ||
:Generator=100-:Battery_1/100 goto 1 | :Generator=100-:Battery_1/100 goto 1 | ||
==Single lever forward/backward script (Basic YOLOL Chip)== | ==Single lever forward/backward script (Basic YOLOL Chip)== | ||
''Note: This script assumes you have a center lever bound to FcuForward'' | |||
===Default device fields=== | ===Default device fields=== | ||
:FcuBackward=-:FcuForward goto 1 | :FcuBackward=-:FcuForward goto 1 | ||
''This page is a WIP. Please contribute to it!'' | ''This page is a WIP. Please contribute to it!'' |
Revision as of 12:58, 5 July 2021
Standard Generator Script (Basic YOLOL Chip)
Note: This script will require enough batteries on the ship to act as a buffer for the generator spool up time.
Default Fields
:FuelChamberUnitRateLimit=100-:StoredBatteryPower/100 goto 1
Non Default Fields
Note: This version of the script assumes either "GeneratorUnitRateLimit" or "FuelChamberRateLimit" (preferably the latter) are renamed to "limit", and at least one battery exists on the network with it's "StoredBatteryPower" field renamed to "bat".
:limit=100-:bat/100 goto 1
Tutorial Laborer
Note: The Laborer has renamed field names by default so this version will work for the tutorial ship.
:Generator=100-:Battery_1/100 goto 1
Single lever forward/backward script (Basic YOLOL Chip)
Note: This script assumes you have a center lever bound to FcuForward
Default device fields
:FcuBackward=-:FcuForward goto 1
This page is a WIP. Please contribute to it!