Locales & SQL

Codesign resources contain various editable/unobscured files such as client/server functions etc.

SQL

SQL Guide

CREATE TABLE `cd_dispatch` (
	`identifier` VARCHAR(50) NULL DEFAULT NULL,
	`callsign` VARCHAR(100) NULL DEFAULT NULL
);

CREATE TABLE `cd_dispatch_planner` (
	`id` VARCHAR(50) NULL DEFAULT NULL,
	`plan` LONGTEXT NULL DEFAULT NULL
);

CREATE TABLE `cd_dispatch_heatmap` (
	`heatmap` LONGTEXT NULL DEFAULT NULL
);

Locales

Lua - https://github.com/RampBST/Codesign_Locales/blob/main/cd_dispatch3d/locales.lua

Js - https://github.com/RampBST/Codesign_Locales/blob/main/cd_dispatch/locales._ui.js

Last updated

Was this helpful?