Project Zomboid

Project Zomboid

Server Points
 This topic has been pinned, so it's probably important
Browser8  [developer] Jun 19, 2022 @ 3:47am
How to Configure (For Server Owners)
The configuration file is located in the Lua folder found in %USER%/Zomboid/Lua for hosted servers or %INSTALLDIR%/Zomboid/Lua for dedicated servers and is called ServerPointsListings.ini

An example configuration would be:
return { TabName = { { type = "ITEM", target = "Base.Rake", quantity = 1, price = 100 }, { type = "ITEM", target = "Base.Book", quantity = 2, price = 400 } }, AnotherTab = { { type = "DIV", target = {"AAAAAA", "BBBBBBBB"} }, { type = "VEHICLE", target = "Base.VanSpiffo", price = 1000 } } }
The config is a lua table, use a lua linter to check if your config follows the correct syntax!

Explanation
  • You can have however many tabs you want and each tab can have whichever type and amount of listings.

  • Within a tab are the listings, the parameters for a listing are type, target, quantity and price. Vehicles don't use the quantity parameter.

  • The currently supported type parameter options are ITEM, XP and VEHICLE and DIV.

Please don't leave comments here.
Last edited by Browser8; Apr 9, 2023 @ 11:29am