Setup

Installation

  • Extract file

  • Copy / cut gusti-loadscreen to your server resources folder

  • Open server.cfg

  • Add gusti-loadscreen script with ensure gusti-loadscreen in server.cfg

  • Start server / Restart server

  • Finished

  • gusti-loadscreen installed successfully

Configuration

Open the config.json file located in the gusti-loadscreen/web folder to configure

To change the logo, you can view it or open the Logo.tsx file located at web/src/components

import Logo_ from '../assets/logo.png'

Copy/cut your new logo into web/src/assets and match the file name to the one imported

Example

import Logo_ from '../assets/new_logo.png'

Logo name cannot contain spaces!

Server Name

{
    "name_server": "Your Server Name"
}

Description

{
    "description": "Your Server Description"
}

Backsound

To change the backsound, you can view it or open the Audio.tsx file located on web/src/components

import Sound from '../assets/backsound.mp3'

Copy/cut your new background sound into web/src/assets and adjust the file name to the one imported

Example

import Sound from '../assets/new_backsound.mp3'

Backsound name cannot contain spaces!

Once everything is setup, the script won't work if you haven't built it to production, so you have to negbuild it first before using it!

Last updated