Initial commit

This commit is contained in:
2024-12-16 13:13:08 +01:00
commit c8d4f32d5d
3093 changed files with 18304 additions and 0 deletions

6
api/SaveEquipmentSet.lua Normal file
View File

@@ -0,0 +1,6 @@
---@diagnostic disable: missing-return, lowercase-global
---@param name string
---@param icon number
---Saves or creates an equipment set with the player's currently equipped items. If a set with the same name already exists, that set's contents are overwritten. Set names are case sensitive: if a "Fishing" set already exists, saving a "fishing" set will create a new set instead of overwriting the "Fishing" set.
function SaveEquipmentSet(name, icon) end