Dual Universe Creators

Welcome Pilots! Click here for info on the site and how to submit your ships.


We're now on Twitter!
Follow the latest designs and DU news at @CreatorsDu


Help us build Utopia II! Join the station discord

Join Discord
Ships
Statics
Voxel Sets
16

DamageReport

Credence

Script

No attributes :-(

Officially taking over DamageReport A multi-screen capable, touch enabled, easy to install ship damage reporting script for Dual Universe. Includes a HUD mode to be mobile while repairing. Highlights damaged/broken elements in 3D space for easier finding. --- Discord --- https://discord.gg/KcafbTSwMp --Link--- https://www.nexusmods.com/dualuniverse/mods/3 https://github.com/LocuraDU/DU-DamageReport --- Buy Locations --- Locura Shipyard @ ( ::pos{0,2,29.8110,107.2521,5.2659} ) Exchange @ Yellow Hall Booth 6 ( ::pos{0,0,-19010.3356,113355.2043,-74225.1859} ) --- VR Locations -- View Units: Locura Shipyard -- Other VR Locations -- Locura Exchange Store

21

Equinox OS: Fuel/Mass/Hub Monitor

PsychoSlaughter

Script

No attributes :-(

** 31/01/22 Support for Space Fuel XS ** The first in a series labeled 'Equinox OS,' PsychoSlaughter of Equinox Consortium brings to you a fuel, hub, and ship mass monitor utilizing the latest in Lua screen tech. This adaptable monitoring solution will adjust to any fuel tank configuration from 1 to 12 tanks, adjusting the display to utilize screen space. In addition to keeping tabs on fuel, this screen will watch your cargo levels ensuring you don't overfill that hauler*. For further stats on your ship, a mass display separates the ship, fuel, and cargo weights for you to review. Bundle this all with easy installation, configurable colors, and custom limits per ship and you have the last monitoring solution you'll ever need! DRM free for you to use on all your ships. Shipbuilders: please leave DRM on when selling your constructs for this OS. ::pos{0,2,34.6366,78.3544,247.2298} EASY INSTALL: 1. Deploy the monitor construct from blueprint 2. Right-click the programming board and select 'Copy Lua configuration to clipboard' 3. Place a new programming board on the target construct you want to add Equinox OS to 4. Right-click the programming board and select 'Paste Lua configuration from clipboard' 5. Right-click the programming board and edit the parameters to your specifications 6. Connect the core, hub, and minimum of one screen to the programming board *Cargo monitor supports one Container Hub only. Additional containers not connected to the single hub, or additional hubs, may throw off the calculations.

Individual: 10 Mħ
Resale: 10 Mħ
7

DuMap.de

Tiramon

Script

No attributes :-(

The site can be used to manage scans. https://www.dumap.de/ Currently providing following Features: * Add scans * Subtract mined ore from scan * overview map * overview list incl. sorting by ore amount or distance * Sharing of scans to other people/groups (with or without content) * copy capability of Discord usable scan data * possibility to add Scans per OCR * precise latitude/longitude coordinates for tiles * and the best automatically adding scans with a little companion tool * automatic update information in companion if new version is released Companion app can be found here -> https://github.com/tiramon/du-map-companion/releases/latest Discord: https://discord.gg/PQeJMUeXb2

8

Poor man's refiner

Cozzmo

Script

No attributes :-(

Simple script making your refiners to automatically cycle through t1 recipes when they are out of resources. Helps if you're just starting and have only one refiner or if you want to make your refiner more efficient. Just copy this into your onStatusChanged(3) filter on your refiner (assuming you named that slot "refiner") ``` --- status 3 -> jammed, no materials -- 198782496, -- hematite -> iron -- 2240749601, -- bauxite -> aluminum -- 159858782, -- coal -> carbon -- 2589986891, -- qurtz -> silicon local currentItem = refiner.getOutputs() -- linked list to cycle possible recipes local refinedOres = {} refinedOres[198782496] = 2240749601; refinedOres[2240749601] = 159858782; refinedOres[159858782] = 2589986891; refinedOres[2589986891] = 198782496; refiner.stop(true) refiner.setOutput(refinedOres[currentItem[1].id]) refiner.startRun() ```

1

10 Lights strobe

Fordie Industries

Script

No attributes :-(

for 10 lights to go from 1 to 10 then 10 to 1 and repeat with a speed setting in lua perams VR: Fordie Industries Location : 11Km from Haven Market 3 DRM Free

Resale: 250 Kħ
8

Orbital HUD

Dimencia

Script

No attributes :-(

The original DU Orbital HUD/ButtonsHUD/DimHUD - A full autopilot and HUD suite. It is on stable version 5.453 at current, and no further updates are planned. For a more fully-featured Autopilot/HUD (but potentially less stable), check out ArchHUD https://github.com/Dimencia/DU-Orbital-Hud Support is provided at the Open Source Initiative Discord, dual.sh/osin, in the #tech-support channel

Individual: 1 ħ
2

IOE Clock

Institute of Errors

Script

No attributes :-(

The Institute of Errors presents a simple, dynamic clock that displays the ingame time depending on your location. One day is 10 hours real time. The sunrise and sunset are at 6 AM and 6 PM. Sold at the Alioth Marina (::pos{0,2,38.3245,62.6634,4.6699})

Resale: 1 Mħ
2

Diven's Hub Hub

DivenDerp

Script

No attributes :-(

Allows you a screen interface to view the contents of a container. Comes as both a screen and board script.

2

DU Lua CLI - Toolkit for Lua development

Wolfe Labs

Script

No attributes :-(

A small Node.js CLI built to ease the development of Lua scripts, from small to large ones. https://github.com/wolfe-labs/DU-LuaC ⭐ Features: • Project files and management, with configurable link types • Multiple source file support, compiled to Lua, JSON, YAML and CONF • Code on your favorite IDE or editor, be it VS Code, IntelliJ IDEA, Atom or even Notepad! • Automatic code completion support when used with EmmyLua on VS Code and IntelliJ IDEA • Multiple build targets, such as development and production, allowing control over minification, etc. • Multiple entry-point support, allowing you to use a single codebase to code multiple components of a build, such as different Programming Boards, seats, etc. • Support for code libraries, both built using the compiler and outside it • Integration with GitHub Actions available • Built-in helpers for linked element detection and event handling, no need to worry about multiple filters anymore! • Copy output JSON/YAML code directly to your clipboard, speed up your workflow! 📋 Requirements: • Node.js 18 or LTS • Tested on both Windows and Linux 🚗 Getting Started: 1. Install our CLI tool via `npm i -g @wolfe-labs/du-luac` 2. Run `du-lua create hello-world` to create a new project folder or just go into an existing one and run `du-lua init` then follow the prompts 3. When ready, run `du-lua script-add main` to create your main Lua file 4. Run `du-lua target-add` to create a new build target 5. Run `du-lua build` to compile your project You should now be ready to build your next big thing! ℹ️ Source and Documentation URL: https://github.com/wolfe-labs/DU-LuaC/

3

Transfer Units Monitor

Bartas

Script

No attributes :-(

An addition to my Factory Monitor scripts. This one Monitors all Transfer Units on a core (up to 408/6 screens) . Simply connet core and screen(s) in any order. The script will tell you how many screens you may need even if it crashes due to lack of screens :) grab it here: https://github.com/BartasRS/Transfer-Units-Monitor As always, tips are greately appreciated but not required ;)

Individual: 1 ħ
Resale: 1 Mħ
8

Waypointer

Fox Syndicate Scripts

Script

No attributes :-(

Essentially, this script provides an AR overlay to your world to view waypoints you have set with Archaegeo's script, in addition to the planets around you. Like all AR scripts made with the AR projection library, there are specific conditions under which this script functions correctly. If you are on a planet, assuming you aren't in a cockpit in another ship, the script should function flawlessly. It will only work in a seat on the construct the programming board was deployed in, and only if you correctly calibrate said seat, assuming you have "freelook" enabled. What freelook enables is a way to track where your camera is looking purely based on your mouse movement. Of course, this comes with one major downside: it won't work in the third person. Nor will it work if you don't calibrate your pitch and heading. Calibration takes place in the form of looking either up or down, pushing your mouse past the limit you can look and then looking either left or right. The accuracy is around 1 degree when looking straight on if the calibration was done properly. (Inaccuracy is purely a result of the mouse capture not being absolutely perfect) In space, as long as you are on the ship the programming board was activated on, it should function for both in a seat, walking around and jetpacking. Note that for walking around, you need to calibrate your pitch. There are a couple more settings to change around if you want to. However, that is about all you need to know. To use the script, copy the JSON file contents found in the link below and select something like "paste Lua script" using a programming board. Connect the programming board to the core, and activate! If you have some saved waypoints using Archaegeo's script, connect the databank to it, and it should load his script's waypoints as well. Link: https://github.com/EasternGamer/AR-Library/blob/experimental/NewWaypointer.json Disclaimer: I coded this, however, Archaegeo provided the idea, hence when starting the script he is credited and used to host the script.

Individual: 1 ħ
Resale: 1 ħ
2

DU Ore Manager

ShadowMage

Script

No attributes :-(

This project leverages the recently released screen LUA APIs to provide an interface with the programming board. With this system, you can set up a public drop off point for ore with requirements for each available ore, and set the system to show all tiers, or single tier at a time. https://github.com/jdelgado-dtlabs/DU-Ore-Manager

20

Shield Screens

Fox Racing

Script

No attributes :-(

MANY THANKS TO RyanPryde FOR UPDATING THE SCRIPTS TO WORK IN 1.4!! (new link under "To install" below) v1.2 - Fixed support for Athena shield rarity, variable shield pools and more precise resistance setting. v1.1 - Added customization via lua parameters - change the look to match your setup. See a video of the interface in action (descriptions are in the subtitles/CC of the video): https://youtu.be/_1-vTFibuoo This is a direct replication of the shield unit's control interface, placed on screens so it can be used from seats, at engineering stations etc. Future Proof (uses the new screen RenderScript technology). Each screen manages it's own energy pool, allowing for multiuser or as pool presets. To install: https://github.com/RyanPryde/DU-ShieldScreens Feedback and requests are welcome.

5

DU Jukebox

Prestige Worldwide

Script

No attributes :-(

Prestige Worldwide proudly presents DU-Jukebox, An in game music player you can customize to play your own music in game. Anyone that activates the board will hear any music that is selected by another player (as long as they also have the same files). A lot fun for streamers and groups with many friends. https://gyazo.com/ae0754b39a29d53308cd9bdfc5046a75 You can also create extra categories if you need more Individual price includes installation of up to 3 units on the same construct/ship so you can change music from one of the 3 music stations. Check out the optional script here: https://du-creators.org/makers/Prestige%20Worldwide/ship/DU%20Random%20Jukebox Contact Lee Fall#2362 for more info/purchasing.

Individual: 5 Mħ
Resale: 1 ħ
10

LUA Touchscreen Examples

Hadron

Script

No attributes :-(

Give your favorite ships a touch of class with our DRM free touch screens (as seen on the Eclipse). Backgrounds are PNG since LUA drawings have no graphical editor. I am no LUA expert but the original code was provided by NQ-Deckard who (in my opinion) is! (DU-Forums) Simple LUA editing knowledge is required. Tinker with the values and you will quickly understand what is going on. It should be noted that "--" uncomments a line. Thanks to Suppe and his instructions in the screen code. Simple to deploy as you can omit the forcefields (the only T3 elements in the blueprint). All code is updated for LUA revamp. 09.2022 Have fun and LUA-fy your ships! VR: Hadron HQ Alioth

Resale: 500 Kħ
Search
Filter
  • Sold As

  • Usage
Clear