Skip to content
This repository has been archived by the owner on May 4, 2019. It is now read-only.

Config Options

tyduptyler13 edited this page Apr 10, 2013 · 6 revisions

The config has changed for the new release! We now require all settings to be in json format. Use the following code on your page to override several user settings. Keep in mind these settings will only show up after a refresh of the page so don't expect changes to be instant.

Also note that avatar overrides are not yet ready so they are not listed here.

Options

autoWoot:(true/false) True means allow autowoot(default) and false will disable it.
autoJoin:(true/false) True allows people to use autojoin(default), false disables it.
background:(url) Url to background image of your choice. We suggest keeping the original size of the plug.dj background.

Example Details Config (URL based settings)

  Welcome to our cool page.
  [CONFIG+=http://mysite.net/settings.json]

Example Details Config (Inline settings)

  Welcome to our cool page.
  [CONFIG+={"plugplus":{"autoWoot":true,"autoJoin":true,"background":"http://www.techpin.com/wp-content/uploads/2010/02/cool-desktop-backgrounds-2.jpg"}}]

Example JSON

{
    "plugplus":{
        "autoWoot":true,
        "autoJoin":true,
        "background":"http://www.techpin.com/wp-content/uploads/2010/02/cool-desktop-backgrounds-2.jpg"
    }
}