Skip to content
ᴏᴠ ━ ᴀɴɪꜱᴀ edited this page Dec 5, 2024 · 29 revisions

📦 Library Setup

  • 🔗 Download Library:

    • Visit Assetify.library's releases.
    • Download the latest build.
  • 📁 Setup Library:

    • Unzip the package.
    • Drag and drop the [Library] folder into YourMTAFolder/server/mods/deathmatch/resources.
  • ⚙️ Configuration Library:

    • assetify_library/settings/server.lua
    • assetify_library/settings/shared.lua
  • 🔧 Boot Library:

    # Refresh library
    refresh
    
    # Grant library permissions
    aclrequest allow assetify_library all
    
    # Start the library
    start assetify_library
  • 🌐 Setup Webserver:

    • Install as directed on its wiki.

🧩 Library Initialization

Importing Assetify in Resource

-- Global initialization (do this only once)
loadstring(exports.assetify_library:import())()

-- Optional: Import all modules and their respective features
loadstring(exports.assetify_library:import("*"))()

📘 Asset Setup Guidelines

Important Recommendations

  • 📖 Prerequisite: Read the FAQs.
  • 🗂️ Navigate to the sidebar's 'Assets' section.
  • 🔍 Select your desired asset-pack for detailed information.

🌟 Pro-Tip: Always ensure the library is started before resources that depend on it!