Understanding Our Script System

💡 Understanding Our Script System

Welcome to our documentation! This guide will help you understand the structure of our scripts, designed to be flexible and easy to customize for your server’s specific needs.


📂 Web Folder

The Web folder includes all the files related to the User Interface (UI). This folder is open-source, so you can freely edit and customize the UI to suit your preferences.


📂 Client Folder

This folder contains key client-side scripts:

  • client.lua (encrypted): The core client-side script handling main gameplay functions. It is encrypted and not available for direct modifications.

  • target.lua (open-source): This file allows you to connect your target system

  • functions.lua (open-source): Contains various functions that are triggered during gameplay. This file is designed for customization, allowing you to integrate your custom framework, tweak notifications, and adapt the script to your server’s needs.


📂 Server Folder

This folder includes important server-side scripts:

  • server.lua (encrypted): The main server-side script that handles core game logic. It is encrypted to protect its integrity.

  • functions.lua (open-source): Like the client-side version, this file contains functions for server-side operations. It’s open-source, allowing for customization to fit your backend requirements.


🛠️ Config

The config file is a vital part of our scripts, providing key options for customization:

  • Enable/Disable Features: Toggle features on or off using boolean values (true/false).

  • Set Default Values: Configure default parameters like player limits, Economics, and other gameplay settings.

  • Adjust Timing: Modify time-related settings such as cooldowns and task durations.

⚠️ Reminder: Always back up your config file before making changes. This precaution helps prevent issues and makes it easier to revert if needed.


🏁 Final Thoughts

By understanding our script system, you can easily customize and integrate our products into your server. This flexibility ensures that our scripts will work seamlessly, enhancing the experience for your players.

Last updated