ℹ️Plextoria is in early access but you're free to sign up. It's free to play. Open a ticket if you encounter any bugs or issues

File structure

A Plextoria mod follows the standard Minetest mod format.

Required files

FileRequiredPurpose
mod.confYesMod metadata
init.luaYesEntry point, loaded on server start

Optional files

FilePurpose
depends.txtDeclare dependencies on other mods
description.txtPlain text description
textures/PNG image files used by the mod
sounds/OGG or WAV audio files

Allowed file types

Only the following file types are accepted inside your zip:

  • .lua -- Lua scripts
  • .png -- Textures and images
  • .ogg -- Audio files
  • .wav -- Audio files
  • mod.conf -- Mod metadata
  • depends.txt -- Dependency declarations
  • description.txt -- Mod description

Any other file type will cause the upload to be rejected.

Size limits

LimitValue
Max zip size500 KB
Max total uncompressed per world5 MB

Example structure

my_mod/
  mod.conf
  init.lua
  depends.txt
  textures/
    my_mod_icon.png
  sounds/
    my_mod_alert.ogg