Jump to content

Vweegit

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by Vweegit

  1. You extracted the files to the wrong location, it would seem. Everything from the mod ZIP belongs in (PATH)\Avorion\ and it appears you have dropped them into (PATH)\Avorion\bin\
  2. I've managed to fix the agoods problem: in \scripts\player\cmd\agoods.lua, the code should be: if onServer() then package.path = package.path .. ";data/scripts/lib/?.lua" require ("goods") end function initialize(name, quantity, ...) local player = Player() name = string.gsub(name, "_", " ") if goods[name] ~= nil then local ship = Entity(player.craftIndex) local good = tableToGood(goods[name]) ship:addCargo(good, quantity) else player:sendChatMessage("Server", 0, string.format("Error:%s is not a good!", name )) end terminate() end
×
×
  • Create New...