Desktop PCs
While the script allows players to use the laptop item anywhere, you can also configure static interaction points to open Desktop PCs with specific, custom features.

Configuration
To configure your Desktop PCs, navigate to av_laptop/config/_pcstations.lua. In this file, you will find a table containing all available static PCs.
Each entry must follow this specific structure:
coords (table/vector3): The
{x, y, z}coordinates where the interaction point will be located in the world.canUse (function): A verification check to determine if the player is authorized to access the PC (e.g., checking for a specific job). It must return
trueorfalse.password (string): The required password to unlock the terminal.
serial (string): A unique identifier for this specific PC. This is crucial for local storage and database management.
name (string): The display username shown on the PC's lock screen and system.
avatar (string): The image URL for the user's profile picture.
wallpaper (string): The image URL for the desktop background.
theme (table, optional): Customizes the UI colors for this specific terminal. It requires an
accent(HEX value) and aglow(RGBA value).apps (table): A list of application identifiers that will be accessible on this PC.
storage (number): The maximum number of files that can be stored locally on this machine.
Available APPs
This is a list of default apps you can use:
documents
files
calculator
browser
The applications listed above are included for free within the core av_laptop system. You can further expand your system's capabilities with a wide variety of premium add-ons—such as Business, Boosting, Darkmarket, and many more—which are available separately.
External Scripts
To open a Desktop PC from another script, use the following export and pass the configuration settings as shown below:
Last updated