[PAID] [STANDALONE] Aquiver Notification

A script by Freamee

No reviews yet.
[PAID] [STANDALONE] Aquiver Notification main image

Full Description

We recommend to use this instead of the GTA default notification system. You can customise it more and you can include letters like. ‘áőűú’

Features

  • Enter / Leave animations.
  • Highly customisable notifications.
  • Create notification presets.
  • Easy to use.
  • Image / Icon support. (Local images or FontAwesome)
  • Fit your resolutions. (Not 22:2 aspect ratio ofcourse😂)

Links
Video
Tebex (4.99€ + tax)
Documentation

Presets meaning
You can customize(sfx, colors, animation, etc.) the whole notification block in your lua config file.
You can create as many notification presets as you need, currently the script includes three types. (error, info, warning, we do not include the default one.)
After you created it you can call them easily with the functions.

Default preset and how to call the notification

createPreset('default', {
    img = 'logo',
    iconBg = 'rgb(40, 6, 63)',
    iconColor = 'rgb(255,255,255)',
    headerStripe = true,
    bgHeader = false,
    headerFontsize = '1',
    msgFontSize = '0.8',
    leftBorder = 'rgb(255, 123, 0)',
    bgLeft = 'rgba(40, 6, 63, 0.45)',
    bgRight = 'rgba(20, 20, 20, 0.5)',
    textColor = 'rgb(255, 255, 255)',
    headerColor = 'rgb(255, 255, 0)',
    pulseAnimation = true,
    -- soundEffect = '',
    -- soundVolume = 0.015
})

function AQUIVER_NOTIFY(type, time, header, msg)

AQUIVER_NOTIFY('default', 3, 'Default', 'Message')
AQUIVER_NOTIFY('error', 7, 'Error', 'Error Message')
AQUIVER_NOTIFY('warning', 7, 'Warning', 'Warning Message')
AQUIVER_NOTIFY('info', 13, 'Info', 'Info Message')