Builder-X
Browse ScriptsDownload RLIB
v2.x
v2.x
  • Introduction
  • Showcase
  • Changelog
    • ◾2.0.1.0
    • ◾2.0.0.0
  • FAQ
    • ◾Addon Won't Show
    • ◾Incompatible Addons
    • ◾Damage Issues
    • ◾Modified Script
    • ◾Refunds
    • ◾Script Errors
    • ◾When Are Updates?
  • ❱ Setup
    • ◾Install
    • ◾Verify
    • ◾Workshop
    • ◾Docs/Web
  • ❱ Configuration
    • ◾Env
    • ◾Fonts
    • ◾Languages
    • ◾Settings
      • ▸sh_cfg_bg
  • ❱ First Use
    • ◾Binds
  • ❱ Developers
    • ◾Functions
      • 🟦GetBuild
      • �� SetBuild
      • 🟦GetDmg
      • 🟦SetDmg
      • 🟦AddDmg
    • ◾Hooks
      • 🔗builderx.mode.onswitch
      • 🔗builderx.pl.ondamage
      • 🔗builderx.pl.onjoin
      • 🔗builderx.pl.onnoclip
Powered by GitBook
On this page
  • ◾ cfg.bg.static.enabled
  • ◾ cfg.bg.static.list
  • ◾ cfg.bg.live.enabled
  • ◾ cfg.bg.live.list
  • ◾ cfg.bg.filter
  1. ❱ Configuration
  2. Settings

▸sh_cfg_bg

Static & live wallpaper management

◾ cfg.bg.static.enabled

if enabled; interface will display a static background behind all other elements of the script.

cfg.bg.static.enabled = false

◾ cfg.bg.static.list

Stores a list of URLs which will be used to display a static wallpaper within the interface.

Requires: cfg.bg.static.enabled = true

cfg.bg.static.list =
{
    'http://cdn.rlib.io/wp/s/1.jpg',
    'http://cdn.rlib.io/wp/s/2.jpg',
    'http://cdn.rlib.io/wp/s/3.jpg',
    'http://cdn.rlib.io/wp/s/4.jpg',
    'http://cdn.rlib.io/wp/s/5.jpg',
    'http://cdn.rlib.io/wp/s/6.jpg',
    'http://cdn.rlib.io/wp/s/7.jpg',
    'http://cdn.rlib.io/wp/s/8.jpg',
    'http://cdn.rlib.io/wp/s/9.jpg',
}

◾ cfg.bg.live.enabled

If enabled; interface will display live wallpapers (animated).

cfg.bg.static.enabled = false

◾ cfg.bg.live.list

Stores a list of URLs which will be used to display an animated wallpaper within the interface.

Requires: cfg.bg.live.enabled = true

cfg.bg.live.list =
{
    'http://cdn.rlib.io/wp/l/index.php?id=default_1',
    'http://cdn.rlib.io/wp/l/index.php?id=default_2',
    'http://cdn.rlib.io/wp/l/index.php?id=default_3',
    'http://cdn.rlib.io/wp/l/index.php?id=default_4',
    'http://cdn.rlib.io/wp/l/index.php?id=default_5',
    'http://cdn.rlib.io/wp/l/index.php?id=default_6',
    'http://cdn.rlib.io/wp/l/index.php?id=default_7',
    'http://cdn.rlib.io/wp/l/index.php?id=default_8',
    'http://cdn.rlib.io/wp/l/index.php?id=default_9',
    'http://cdn.rlib.io/wp/l/index.php?id=default_10',
    'http://cdn.rlib.io/wp/l/index.php?id=default_11',
}

Live wallpapers take priority over static wallpapers. If you have both static and live wallpapers enabled; then live wallpapers will be displayed.

◾ cfg.bg.filter

Series of settings related to the filter for backgrounds.

These will make the background blurred, darker / lighter, etc.

cfg.bg.filter.enabled       = true
cfg.bg.filter.clr           = Color( 0, 0, 0, 25 )
cfg.bg.filter.blur          = false
cfg.bg.filter.blur_power    = 3
PreviousSettingsNextBinds

Last updated 4 years ago

◾