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
17

DU-Industry-HUD

Jericho

Script

No attributes :-(

A simple HUD for monitoring and managing industry in Dual Universe Open source project, all sources available here : https://github.com/Jericho1060/DU-Industry-HUD You can join me on Guilded for help or suggestions or requests by following that link : https://guilded.jericho1060.com Feature list: - display all your industry status from a single programming board with only one link to the core - Add other boards to remote control all your machines (start/stop/batch/maintain) - easy locate your machine with arrows displayed around when selected on the HUD - fully controlled with Keyboard and can type setted value directly with your keyboard

1

Ship Shield Resistance Manager and Monitor

Rifters Utilities

Script

No attributes :-(

The script comes with a functional interface to display your ship core health, shields, and all 4 resistances. The shield manager handles auto venting your shields once they either break completely, or fall below the configured amount There is also a display to display your core health and shields as well. It displays how much you have in each resistance It auto configures your shields based off the incoming attack damage.

Individual: 10 Mħ
9

du-atlas

rohimma

Script

No attributes :-(

free script, get it at: https://github.com/rohimma/du-atlas get all your bookmarks on one easy to manage screen. activate the programming board and click on the location where you want to go

7

Restricted Access Door

Davemane42

Script

No attributes :-(

for the GitHub, go to https://github.com/Davemane42/DU-Scripts#restricted-access-door-script Restric access to certain zones via "locked door" Elements needed: 1x Programming board 1x Detection zone 1x Screen (minimum) Supports multiple screens Instalation: 1. Copy the content of the link below and paste on a programming board lua config https://raw.githubusercontent.com/Davemane42/DU-Scripts/master/RestrictedAccessDoor/RestrictedAccessDoor1.0.json 2. Connect Detection zone -> Programming Board Then (in no particular order) Programming Board -> Door and Screen(s) 3. Finnaly, edit the lua parameters (Right click -> Advanced -> Edit Lua Parameters) Add your username between the quotes "" "Davemane42" For multiple user. add comma , between names and no spaces "Davemane42,User2,User3"

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.

NoxCorp Ship Stat Screen V3

NoxCorp

Script

No attributes :-(

Showroom and BP dispenser on Alioth (near Market 17) ::pos{0,2,36.4289,57.9012,22.7369} Surrogate VR: NoxCorp Showroom NoxCorp Ship Stat Screen V3 is a new script for showing multiple ships on a single screen. A browsable library of products, or anything else really. All text is editable, as are colours, borders and fonts. Use your mouse to hover and click when interacting with the screen. Make sure you don't have any tools equiped. Youget two versions of the script, one with square 1:1 image dimensions and one with HD 16:9 image dimensions. Both have all the same features. Edit variables at the top of the script to customise the screen. All variables have comments with example values. The script runs entirely in LUA using RenderScript, no programming board is required, no HTML. You can get around 18 items on the menu before you hit the render limit of the screen. Script is provided with no DRM for unlimited use. This is reflected in the price. You can pay me via wallet and I will provide the script over discord to save you travelling if you prefer. In-game username is 'nekranox' Need customisations? Contact me.

Individual: 4 Mħ
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

8

Tiny Factory

Squizz

Script

No attributes :-(

Market too far to go buy stuff? Industry line too obnoxious to setup for a few knock off items? Then this is the solution for you! The Tiny Factory will handle the industry lines for you. Just tell it what you want, turn it on, make sure it has ores and schematics, and it'll handle the rest! This Tiny Factory in a box, composed of only 20 industry units, can make any Basic, Uncommon, or Advanced item that can be produced by the XS, S, M, or L Assembly Line. Everything you need to know can be found here: https://github.com/squizzlabs/du-tiny-factory Discord: Still have questions? Ask here! https://discord.com/channels/760240626942869546/1078009204792631437/ If you can't join that you might have to join this Discord server first: https://discord.gg/CM2zWVPFFa Dispenser Location, Haven: ::pos{0,27,-14.3128,30.9315,9.6166} DRM FREE! Play with the code, break it, improve it, have fun!

Individual: 1 Mħ
2

Locura Hub Screens

Credence

Script

No attributes :-(

All my HUB screen are finally in ONE PLACE! https://www.nexusmods.com/dualuniverse/mods/6/

2

Diven's Industry Hub

DivenDerp

Script

No attributes :-(

Screen Interface for Industry that allows you to monitor and issues commands to your industry.

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() ```

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/

5

Factory Monitor Screen

Bartas

Script

No attributes :-(

Facotry monitoring script I made for an Org mate and thought it might be useful for someone. Gives basic info about the state of every industry machine on the Core (except Transfer Units). Fully adaptive and scalable from XS to Super Expanded screen. As added bonus it has built in locator to easily locate any machine. Simply type "help" in Lua Tab to see available commands. Refresh rate can be changed in Lua Settings. Link to Core and Screen in proper order. Multiscreen version is also available. grab it here https://github.com/BartasRS/Factory_monitoring_screen If you like my work or find it useful you can send a tip in game it will be much appreciated. Enjoy

Individual: 1 ħ
Resale: 1 Mħ
3

DU Information Screen (EDITS)

Credence

Script

No attributes :-(

Here we have the default system information screen made by NQ. However.... It can be so much more! Ill be doing different variations of the screen to show examples of what all this screen can do. Ill start off with a simple edit and work my way to something way different. Showing off anything from in game items, Org information, and even exchange sales items. https://github.com/LocuraDU/DU-System-Information-Screen ----- I only offer help/support at https://github.com/LocuraDU https://discord.gg/TB2ecEd5rs I try to get around to helping on other channels but if you want help please use one of the above places.

Individual: 1 ħ
Resale: 1 ħ
7

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 ħ
Search
Filter
  • Sold As

  • Usage
Clear