Notify

{:links-list}

INSTALLATION

  1. Open the downloaded ZIP product file and drop the folder in it somewhere in your resources folder.
  2. Add your product key (get it here) to the settings.ini file
  3. Add start BigDaddy-Notify to your server.cfg.

DO NOT RENAME THE FOLDER.

If you change the name of the folder it will not function correctly so leave the name as it is.

{:is-danger}

CONFIGURATION

SETTING DEFAULT DESCRIPTION
[licensing]
key1 none This is where you put your product key

EXPORTS

exports['BigDaddy-Notify']:bdnotify(options) returns void
OPTIONS VALID VALUES
type string: success, error, warning, info
positionClass string: top-right, bottom-right, bottom-left, top-left, top-full-width, bottom-full-width, top-center, bottom-center
message string: any string
timeOut int: in milliseconds
progressBar bool: true or false
showEasing string: swing, linear
hideEasing string: swing, linear
showMethod string: fadeIn, slideUp
hideMethod string: fadeIn, slideUp

EXAMPLE

LUA

exports['BigDaddy-Notify']:bdNotify(
    {
        message = "my message", 
    type = "success", 
    timeOut = 5000,
    progressBar = true
    }
)

C#

Exports["BigDaddy-Notify"].bdNotify(new
    {
        message = "my message",
        type = "success",
        timeOut = 5000,
        progressBar = true
    }
);