Installation & Config

There is the installation guide and config about our Business Annoucement System

πŸ“¦ Installation Guide – b_textui

This script allows you to send a textui when you want to do an action.


πŸ”§ Requirements

  • ESX, QBCore or QBox (or anything else)

πŸ“ Installation Steps

  1. Place the Resource

    • Drop the b_textui folder into your resources directory.

  2. Ensure the Resource Add the following to your server.cfg:

    ensure b_textui
  3. Use our export in you'r script

Export to open text UI :
exports['b_textui']:openTextUI(message, key, style, position) 

Export to close text UI :
exports['b_textui']:closeTextUI() 

Example : 
exports['b_textui']:openTextUI("Press to open the safe", "E", "red", "left")
-- Styles : neonpink, neonblue, red, blue, default
-- Positions : left, right, topleft, topright

By default, the script use the key E, the position left and the style default.

πŸ˜„ Styles

  • We have 5 differents style for the Text UI (you can easily add you'r own in CSS) :

Default
Neon Pink
Neon blue
Blue
Red

πŸ˜„ Positions

You have 4 differents positions avalaible :

  • Left

  • Right

  • Top Left

  • Top Right

Last updated