neoburner support sorta, and hex editors for re

This commit is contained in:
venus
2026-04-25 11:53:20 -05:00
parent 3a85cfd58f
commit 3882f7f805
5 changed files with 64 additions and 16 deletions

17
lua/plugins/games.lua Normal file
View File

@@ -0,0 +1,17 @@
return {
"John-Bush14/neoburner",
config = function()
require("neoburner").setup({
-- needed
filesystem = "/home/venus/code/bitburner/", -- where bitburner filesystem will be placed
-- optional
address = "ws://localhost", -- localhost
port = 12525,
servers = {"home"}, -- servers wich will be in filesystem, cannot be set to "*" because of api limitations.
root_server = "home", -- or nil
servers_folder = "servers", -- or nil
})
end
}