├── Classes ├── ArgumentParser.cs ├── BlueScreenOfDeath.cs ├── MultiScreenSpriteSurface.cs ├── PID.cs ├── RuntimeTracker.cs ├── Scheduler.cs ├── TerminalPropertiesHelper.cs └── VectorMath.cs ├── Methods ├── DrawLine.cs └── DrawStatusBar.cs ├── README.md ├── Released ├── Compressed │ ├── LAMP.cs │ ├── WHAM.cs │ ├── turret_radar.cs │ └── turret_slaver.cs ├── LAMP.cs ├── MART.cs ├── README.md ├── SWCS.cs ├── TCES.cs ├── WHAM.cs ├── auto_door_closer.cs ├── bearing_and_compass.cs ├── drop_pod_script.cs ├── group_renamer.cs ├── missile_status_screens.cs ├── projector_timers.cs ├── remote_timers.cs ├── seat_status_timers.cs ├── ship_status.cs ├── skid_steering.cs ├── speed_matcher.cs ├── sprite_artificial_horizon.cs ├── subgrid_gyro_control.cs ├── subgrid_thruster_manager.cs ├── turret_radar.cs ├── turret_slaver.cs └── weapon_salvo.cs └── Unpolished ├── AI Turret Angle Resetter v1.cs ├── Ackerman Steering v4.cs ├── ApplyGyroOverride.cs ├── CalculateDragForce.cs ├── Camera Tripwire v8.cs ├── Camera Tripwire v9.cs ├── CircularBuffer.cs ├── CompositeBoundingSphere.cs ├── Cruise Missile (ICBM) Code v13.cs ├── Drone steering code v1.cs ├── EstimateInertiaTensor.cs ├── Free-fall Prediction Code v5.cs ├── Free-fall Prediction Code v9.1.cs ├── GASP Missile Systems v1.cs ├── GASP Missile Systems v62-16.cs ├── GetRotationAngles(with roll).cs ├── GetRotationAnglesSimultaneous.cs ├── Gravity Drive Manager v14.cs ├── Gravity Drive Manager v15.cs ├── Gravity Drive Manager v22.cs ├── Gravity Drive Manager v23.cs ├── Gravity Drive Manager v24.cs ├── Hover Script v6.cs ├── Hover Script v7.cs ├── Image Cycler v1.cs ├── Lift Off Manager v9.cs ├── LittleDroneFollower.cs ├── Mouse-Aimed Rotor Turret Script v37-1.cs ├── MyIniHelper.cs ├── PID.cs ├── Piston Elevator Script v1.cs ├── Profiler_Code v2.cs ├── Quartic.cs ├── README.md ├── RampingThrust.cs ├── Raycast Rangefinder v10.cs ├── Raycast Rangefinder v11.cs ├── RealQuarticRoots.cs ├── Retro Braking.cs ├── Retro Thruster Braking Script v4.cs ├── Retro Thruster Braking Script v5.cs ├── Rotor Angle Controller v2.0.cs ├── Rotor Angle Increment Code v10.cs ├── Rotor Angle Increment Code v7.cs ├── Rotor Angle Increment Code v9.cs ├── Rotor Detacher v2 ├── Rotor Displacement Cannon Script v3.cs ├── Rotor Displacement Cannon Script v4-1.cs ├── Rotor Displacement Cannon Script v4.cs ├── Rotor Thruster Manager v39 INVERTED ├── Rotor_aligner_for_grindy ├── RuntimeTracker.cs ├── SWCS.cs ├── SchedulerExample.cs ├── SoundBlockManager.cs ├── Speed Based Lights ├── Stop_Time_and_Distance.cs ├── TerminalPropertiesHelper.cs ├── VectorMath.cs ├── VelocityDisplayThing.cs ├── WelderTurnerOner.cs ├── Whip's Guidance Script v1.cs ├── WhipsDirtyDrillingScript v1.cs ├── WorldPositionToScreenPosition.cs ├── block release sequencer v3.cs ├── class_RunningSymbol.cs ├── connector_status_manager.cs ├── gravity alignment v22-1.cs ├── gravity alignment v25-WASD.cs ├── gravity alignment v25.cs ├── gyro_memory.cs ├── image_converter_helper.cs ├── method_GetShipEdgeDistance.cs ├── method_gyro_orientation_v9.cs ├── piston_controller.cs ├── point_ship_at_gps.cs ├── refill_TLB_v1.cs ├── refill_TLB_v2.cs ├── refill_TLB_v3.cs ├── rotor_angle_duplicator.cs ├── screen_size_tester.cs ├── seat_status_timers.cs ├── ship_speed_timers.cs ├── simple_reactor_status_lights.cs ├── struct_ComplexNumber.cs ├── tank skid steering system v10.cs ├── tank skid steering system v11.cs ├── tank skid steering system v12-fix.cs ├── tank skid steering system v12.cs ├── tank skid steering system v17.cs ├── tank skid steering system v18.cs ├── tank skid steering system v19.cs ├── tank skid steering system v9.cs ├── thrust speed limiter v3.cs ├── velocity_alignment_v1.cs ├── warhead airburst script v1.cs ├── wheel pitching code v1.cs ├── wheel pitching code v2.cs ├── wheel_status.cs └── whips_text_cycler_v1.cs /Classes/ArgumentParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Classes/ArgumentParser.cs -------------------------------------------------------------------------------- /Classes/BlueScreenOfDeath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Classes/BlueScreenOfDeath.cs -------------------------------------------------------------------------------- /Classes/MultiScreenSpriteSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Classes/MultiScreenSpriteSurface.cs -------------------------------------------------------------------------------- /Classes/PID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Classes/PID.cs -------------------------------------------------------------------------------- /Classes/RuntimeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Classes/RuntimeTracker.cs -------------------------------------------------------------------------------- /Classes/Scheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Classes/Scheduler.cs -------------------------------------------------------------------------------- /Classes/TerminalPropertiesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Classes/TerminalPropertiesHelper.cs -------------------------------------------------------------------------------- /Classes/VectorMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Classes/VectorMath.cs -------------------------------------------------------------------------------- /Methods/DrawLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Methods/DrawLine.cs -------------------------------------------------------------------------------- /Methods/DrawStatusBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Methods/DrawStatusBar.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/README.md -------------------------------------------------------------------------------- /Released/Compressed/LAMP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/Compressed/LAMP.cs -------------------------------------------------------------------------------- /Released/Compressed/WHAM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/Compressed/WHAM.cs -------------------------------------------------------------------------------- /Released/Compressed/turret_radar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/Compressed/turret_radar.cs -------------------------------------------------------------------------------- /Released/Compressed/turret_slaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/Compressed/turret_slaver.cs -------------------------------------------------------------------------------- /Released/LAMP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/LAMP.cs -------------------------------------------------------------------------------- /Released/MART.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/MART.cs -------------------------------------------------------------------------------- /Released/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/README.md -------------------------------------------------------------------------------- /Released/SWCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/SWCS.cs -------------------------------------------------------------------------------- /Released/TCES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/TCES.cs -------------------------------------------------------------------------------- /Released/WHAM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/WHAM.cs -------------------------------------------------------------------------------- /Released/auto_door_closer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/auto_door_closer.cs -------------------------------------------------------------------------------- /Released/bearing_and_compass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/bearing_and_compass.cs -------------------------------------------------------------------------------- /Released/drop_pod_script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/drop_pod_script.cs -------------------------------------------------------------------------------- /Released/group_renamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/group_renamer.cs -------------------------------------------------------------------------------- /Released/missile_status_screens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/missile_status_screens.cs -------------------------------------------------------------------------------- /Released/projector_timers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/projector_timers.cs -------------------------------------------------------------------------------- /Released/remote_timers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/remote_timers.cs -------------------------------------------------------------------------------- /Released/seat_status_timers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/seat_status_timers.cs -------------------------------------------------------------------------------- /Released/ship_status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/ship_status.cs -------------------------------------------------------------------------------- /Released/skid_steering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/skid_steering.cs -------------------------------------------------------------------------------- /Released/speed_matcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/speed_matcher.cs -------------------------------------------------------------------------------- /Released/sprite_artificial_horizon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/sprite_artificial_horizon.cs -------------------------------------------------------------------------------- /Released/subgrid_gyro_control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/subgrid_gyro_control.cs -------------------------------------------------------------------------------- /Released/subgrid_thruster_manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/subgrid_thruster_manager.cs -------------------------------------------------------------------------------- /Released/turret_radar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/turret_radar.cs -------------------------------------------------------------------------------- /Released/turret_slaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/turret_slaver.cs -------------------------------------------------------------------------------- /Released/weapon_salvo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Released/weapon_salvo.cs -------------------------------------------------------------------------------- /Unpolished/AI Turret Angle Resetter v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/AI Turret Angle Resetter v1.cs -------------------------------------------------------------------------------- /Unpolished/Ackerman Steering v4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Ackerman Steering v4.cs -------------------------------------------------------------------------------- /Unpolished/ApplyGyroOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/ApplyGyroOverride.cs -------------------------------------------------------------------------------- /Unpolished/CalculateDragForce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/CalculateDragForce.cs -------------------------------------------------------------------------------- /Unpolished/Camera Tripwire v8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Camera Tripwire v8.cs -------------------------------------------------------------------------------- /Unpolished/Camera Tripwire v9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Camera Tripwire v9.cs -------------------------------------------------------------------------------- /Unpolished/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/CircularBuffer.cs -------------------------------------------------------------------------------- /Unpolished/CompositeBoundingSphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/CompositeBoundingSphere.cs -------------------------------------------------------------------------------- /Unpolished/Cruise Missile (ICBM) Code v13.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Cruise Missile (ICBM) Code v13.cs -------------------------------------------------------------------------------- /Unpolished/Drone steering code v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Drone steering code v1.cs -------------------------------------------------------------------------------- /Unpolished/EstimateInertiaTensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/EstimateInertiaTensor.cs -------------------------------------------------------------------------------- /Unpolished/Free-fall Prediction Code v5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Free-fall Prediction Code v5.cs -------------------------------------------------------------------------------- /Unpolished/Free-fall Prediction Code v9.1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Free-fall Prediction Code v9.1.cs -------------------------------------------------------------------------------- /Unpolished/GASP Missile Systems v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/GASP Missile Systems v1.cs -------------------------------------------------------------------------------- /Unpolished/GASP Missile Systems v62-16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/GASP Missile Systems v62-16.cs -------------------------------------------------------------------------------- /Unpolished/GetRotationAngles(with roll).cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/GetRotationAngles(with roll).cs -------------------------------------------------------------------------------- /Unpolished/GetRotationAnglesSimultaneous.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/GetRotationAnglesSimultaneous.cs -------------------------------------------------------------------------------- /Unpolished/Gravity Drive Manager v14.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Gravity Drive Manager v14.cs -------------------------------------------------------------------------------- /Unpolished/Gravity Drive Manager v15.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Gravity Drive Manager v15.cs -------------------------------------------------------------------------------- /Unpolished/Gravity Drive Manager v22.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Gravity Drive Manager v22.cs -------------------------------------------------------------------------------- /Unpolished/Gravity Drive Manager v23.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Gravity Drive Manager v23.cs -------------------------------------------------------------------------------- /Unpolished/Gravity Drive Manager v24.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Gravity Drive Manager v24.cs -------------------------------------------------------------------------------- /Unpolished/Hover Script v6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Hover Script v6.cs -------------------------------------------------------------------------------- /Unpolished/Hover Script v7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Hover Script v7.cs -------------------------------------------------------------------------------- /Unpolished/Image Cycler v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Image Cycler v1.cs -------------------------------------------------------------------------------- /Unpolished/Lift Off Manager v9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Lift Off Manager v9.cs -------------------------------------------------------------------------------- /Unpolished/LittleDroneFollower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/LittleDroneFollower.cs -------------------------------------------------------------------------------- /Unpolished/Mouse-Aimed Rotor Turret Script v37-1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Mouse-Aimed Rotor Turret Script v37-1.cs -------------------------------------------------------------------------------- /Unpolished/MyIniHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/MyIniHelper.cs -------------------------------------------------------------------------------- /Unpolished/PID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/PID.cs -------------------------------------------------------------------------------- /Unpolished/Piston Elevator Script v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Piston Elevator Script v1.cs -------------------------------------------------------------------------------- /Unpolished/Profiler_Code v2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Profiler_Code v2.cs -------------------------------------------------------------------------------- /Unpolished/Quartic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Quartic.cs -------------------------------------------------------------------------------- /Unpolished/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/README.md -------------------------------------------------------------------------------- /Unpolished/RampingThrust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/RampingThrust.cs -------------------------------------------------------------------------------- /Unpolished/Raycast Rangefinder v10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Raycast Rangefinder v10.cs -------------------------------------------------------------------------------- /Unpolished/Raycast Rangefinder v11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Raycast Rangefinder v11.cs -------------------------------------------------------------------------------- /Unpolished/RealQuarticRoots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/RealQuarticRoots.cs -------------------------------------------------------------------------------- /Unpolished/Retro Braking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Retro Braking.cs -------------------------------------------------------------------------------- /Unpolished/Retro Thruster Braking Script v4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Retro Thruster Braking Script v4.cs -------------------------------------------------------------------------------- /Unpolished/Retro Thruster Braking Script v5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Retro Thruster Braking Script v5.cs -------------------------------------------------------------------------------- /Unpolished/Rotor Angle Controller v2.0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Rotor Angle Controller v2.0.cs -------------------------------------------------------------------------------- /Unpolished/Rotor Angle Increment Code v10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Rotor Angle Increment Code v10.cs -------------------------------------------------------------------------------- /Unpolished/Rotor Angle Increment Code v7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Rotor Angle Increment Code v7.cs -------------------------------------------------------------------------------- /Unpolished/Rotor Angle Increment Code v9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Rotor Angle Increment Code v9.cs -------------------------------------------------------------------------------- /Unpolished/Rotor Detacher v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Rotor Detacher v2 -------------------------------------------------------------------------------- /Unpolished/Rotor Displacement Cannon Script v3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Rotor Displacement Cannon Script v3.cs -------------------------------------------------------------------------------- /Unpolished/Rotor Displacement Cannon Script v4-1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Rotor Displacement Cannon Script v4-1.cs -------------------------------------------------------------------------------- /Unpolished/Rotor Displacement Cannon Script v4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Rotor Displacement Cannon Script v4.cs -------------------------------------------------------------------------------- /Unpolished/Rotor Thruster Manager v39 INVERTED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Rotor Thruster Manager v39 INVERTED -------------------------------------------------------------------------------- /Unpolished/Rotor_aligner_for_grindy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Rotor_aligner_for_grindy -------------------------------------------------------------------------------- /Unpolished/RuntimeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/RuntimeTracker.cs -------------------------------------------------------------------------------- /Unpolished/SWCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/SWCS.cs -------------------------------------------------------------------------------- /Unpolished/SchedulerExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/SchedulerExample.cs -------------------------------------------------------------------------------- /Unpolished/SoundBlockManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/SoundBlockManager.cs -------------------------------------------------------------------------------- /Unpolished/Speed Based Lights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Speed Based Lights -------------------------------------------------------------------------------- /Unpolished/Stop_Time_and_Distance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Stop_Time_and_Distance.cs -------------------------------------------------------------------------------- /Unpolished/TerminalPropertiesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/TerminalPropertiesHelper.cs -------------------------------------------------------------------------------- /Unpolished/VectorMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/VectorMath.cs -------------------------------------------------------------------------------- /Unpolished/VelocityDisplayThing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/VelocityDisplayThing.cs -------------------------------------------------------------------------------- /Unpolished/WelderTurnerOner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/WelderTurnerOner.cs -------------------------------------------------------------------------------- /Unpolished/Whip's Guidance Script v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/Whip's Guidance Script v1.cs -------------------------------------------------------------------------------- /Unpolished/WhipsDirtyDrillingScript v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/WhipsDirtyDrillingScript v1.cs -------------------------------------------------------------------------------- /Unpolished/WorldPositionToScreenPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/WorldPositionToScreenPosition.cs -------------------------------------------------------------------------------- /Unpolished/block release sequencer v3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/block release sequencer v3.cs -------------------------------------------------------------------------------- /Unpolished/class_RunningSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/class_RunningSymbol.cs -------------------------------------------------------------------------------- /Unpolished/connector_status_manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/connector_status_manager.cs -------------------------------------------------------------------------------- /Unpolished/gravity alignment v22-1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/gravity alignment v22-1.cs -------------------------------------------------------------------------------- /Unpolished/gravity alignment v25-WASD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/gravity alignment v25-WASD.cs -------------------------------------------------------------------------------- /Unpolished/gravity alignment v25.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/gravity alignment v25.cs -------------------------------------------------------------------------------- /Unpolished/gyro_memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/gyro_memory.cs -------------------------------------------------------------------------------- /Unpolished/image_converter_helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/image_converter_helper.cs -------------------------------------------------------------------------------- /Unpolished/method_GetShipEdgeDistance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/method_GetShipEdgeDistance.cs -------------------------------------------------------------------------------- /Unpolished/method_gyro_orientation_v9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/method_gyro_orientation_v9.cs -------------------------------------------------------------------------------- /Unpolished/piston_controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/piston_controller.cs -------------------------------------------------------------------------------- /Unpolished/point_ship_at_gps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/point_ship_at_gps.cs -------------------------------------------------------------------------------- /Unpolished/refill_TLB_v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/refill_TLB_v1.cs -------------------------------------------------------------------------------- /Unpolished/refill_TLB_v2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/refill_TLB_v2.cs -------------------------------------------------------------------------------- /Unpolished/refill_TLB_v3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/refill_TLB_v3.cs -------------------------------------------------------------------------------- /Unpolished/rotor_angle_duplicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/rotor_angle_duplicator.cs -------------------------------------------------------------------------------- /Unpolished/screen_size_tester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/screen_size_tester.cs -------------------------------------------------------------------------------- /Unpolished/seat_status_timers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/seat_status_timers.cs -------------------------------------------------------------------------------- /Unpolished/ship_speed_timers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/ship_speed_timers.cs -------------------------------------------------------------------------------- /Unpolished/simple_reactor_status_lights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/simple_reactor_status_lights.cs -------------------------------------------------------------------------------- /Unpolished/struct_ComplexNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/struct_ComplexNumber.cs -------------------------------------------------------------------------------- /Unpolished/tank skid steering system v10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/tank skid steering system v10.cs -------------------------------------------------------------------------------- /Unpolished/tank skid steering system v11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/tank skid steering system v11.cs -------------------------------------------------------------------------------- /Unpolished/tank skid steering system v12-fix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/tank skid steering system v12-fix.cs -------------------------------------------------------------------------------- /Unpolished/tank skid steering system v12.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/tank skid steering system v12.cs -------------------------------------------------------------------------------- /Unpolished/tank skid steering system v17.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/tank skid steering system v17.cs -------------------------------------------------------------------------------- /Unpolished/tank skid steering system v18.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/tank skid steering system v18.cs -------------------------------------------------------------------------------- /Unpolished/tank skid steering system v19.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/tank skid steering system v19.cs -------------------------------------------------------------------------------- /Unpolished/tank skid steering system v9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/tank skid steering system v9.cs -------------------------------------------------------------------------------- /Unpolished/thrust speed limiter v3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/thrust speed limiter v3.cs -------------------------------------------------------------------------------- /Unpolished/velocity_alignment_v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/velocity_alignment_v1.cs -------------------------------------------------------------------------------- /Unpolished/warhead airburst script v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/warhead airburst script v1.cs -------------------------------------------------------------------------------- /Unpolished/wheel pitching code v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/wheel pitching code v1.cs -------------------------------------------------------------------------------- /Unpolished/wheel pitching code v2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/wheel pitching code v2.cs -------------------------------------------------------------------------------- /Unpolished/wheel_status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/wheel_status.cs -------------------------------------------------------------------------------- /Unpolished/whips_text_cycler_v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whiplash141/SpaceEngineersScripts/HEAD/Unpolished/whips_text_cycler_v1.cs --------------------------------------------------------------------------------