~10 minutes

Quick start

The condensed path from an active license to a live, protected server. Prefer the full version? Installation explains every step in detail.

Before you begin
You need an active license, a RedM server running oxmysql and vorp_core, and access to server.cfg with the ability to restart.

#The 6 steps

  1. 1
    Download the resource

    Open Profile and click Download. You'll get twiste_AC.zip.

  2. 2
    Drop it into your server

    Extract it so the folder is resources/[twiste]/twiste_AC. Keep the name twiste_AC exactly - avoid a nested twiste_AC/twiste_AC.

  3. 3
    Create your server in the panel

    Go to Servers → New server. Pick a Server ID (e.g. my-server-01). On creation you get an API Key and an HMAC Secret - copy them now, they're shown only once.

  4. 4
    Wire up server.cfg

    Add your keys and load the resource right after your framework:

    server.cfg
    # Baobab AC credentials (from the panel)
    setr ac_server_id "my-server-01"
    setr ac_api_key "YOUR_API_KEY"
    
    # Start in observe mode first, switch to enforce once calibrated
    setr ac_mode "observe"
    
    # Load order - twiste_AC right after oxmysql + vorp_core
    ensure oxmysql
    ensure vorp_core
    ensure twiste_AC
    
    # ...the rest of your resources
    ensure vorp_inventory
  5. 5
    Restart and check the console

    Restart the server. You should see twiste_AC boot and report online. Then open your dashboard.

  6. 6
    Confirm it's reporting

    On Servers your server should show a green online dot, and Dashboard should start populating as players connect.

#Going live

Once you've watched the alerts for a session and trust the signal, flip enforcement on:

server.cfg
setr ac_mode "enforce"
  • observe - everything is detected and logged, nothing is enforced. Great for calibration.
  • enforce - detections can kick/ban according to your module settings.
That's it
Your server is protected and reporting. Next, learn what every dashboard screen does in the Panel guide, or fine-tune behaviour in Configuration.
Auto-updates are automatic
twiste_AC checks for new versions hourly and downloads them to disk on its own. Updates apply on your next server restart - no extra permissions or setup required.