Skip to content

Instantly share code, notes, and snippets.

@pjamar
Created January 7, 2016 18:38
Show Gist options
  • Select an option

  • Save pjamar/6812af8354746f9bffd0 to your computer and use it in GitHub Desktop.

Select an option

Save pjamar/6812af8354746f9bffd0 to your computer and use it in GitHub Desktop.
SNI Proxy Tutorial

SNI Proxy for sharing an SSL port 443 with Sandstorm

Make Sandstorm and other web server coexist in the same port while keeping HTTPS encryption.

Introduction

The purpose of this tutorial is to set up SNI Proxy so it’s possible to use Sandstorm verified SSL encryption while coexisting with another web server that also uses SSL.

The main reason is to allow other users to connect with your Sandstorm instance in the standard HTTPS port (443) and keep using that port also for any other web apps.

I assume the server is running Debian Linux or one of its derivatives (e.g. Ubuntu). Note that there will be some down time in this process so you might want to do it when there is less activity on your server.

Install SNI Proxy

If you’re lucky the package sniproxy might be present on your linux distro otherwise you’ll hace to install it yourself. In my case (Ubuntu 10.04 I had to do it manually). Follow the instructions on https://github.com/dlundquist/sniproxy to create the Debian package and install it.

In my case I had to do the following:

# Install required packages
sudo apt-get install autotools-dev cdbs debhelper dh-autoreconf dpkg-dev gettext libev-dev libpcre3-dev libudns-dev pkg-config fakeroot git

# Clone SNI Proxy repo from Github 
git clone https://github.com/dlundquist/sniproxy.git

# Compile and create the package
cd sniproxy
./autogen.sh && dpkg-buildpackage

# Install the package
sudo dpkg -i ../sniproxy_<version>_<arch>.deb

Setting it up

We’ ll be using SNI Proxy to listen for the standard HTTPS port (443) and make it process the domain name. If it’s a Sandstorm domain (ends in .sandcats.io) it will forward the request to Sandstorm on port 9687. In any other case it’ll forward the request to the web server you already had which switched from listening on port 443 to port 9686.

The ports for Sandstorm and the web server are arbitrary, you can set the ones that work for you in case you have a collision with another service you’re running. It should work as long as you’re being consistent in replacing my choices over the web server, Sandstorm and SNI Proxy configurations.

Created with Raphaël 2.1.2TLS requestSNI Proxy (port 443)Sandstorm domain?Forward to SandstormSandstorm daemon (port 9687)Forward to web serverHTTPS daemon (port 9686)yesno

Setting up SNI Proxy

We’ll set sniproxy to forward Sandstorm domains to the Sandstorm instance and to send any other request to the web server. We’ll disable HTTP proxy on sniproxy as there is no need for the HTTP requests to go through it.

Configuration

sudo vi /etc/sniproxy.conf

/etc/sniproxy.conf contents:

# sniproxy.conf
# Setup for sharing port 443 with Sandstorm

user daemon
pidfile /var/run/sniproxy.pid

error_log {
    syslog daemon
    priority notice
}

listen 443 {
    proto tls
    table https_hosts
    fallback 127.0.0.1:9686

    access_log {
        filename /var/log/sniproxy/https_access.log
        priority notice
    }
}

table https_hosts {
    .*\.sandcats\.io 127.0.0.1:9687
}

Startup

We’ll have to ensure SNI Proxy starts when rebooted. For that we’ll need to ensure is enabled in /etc/default/sniproxy (ENABLED=1) and also that will automatically start on boot up using the following command:

sudo update-rc.d sniproxy enable

Setting up Sandstorm

Enabling SSL support on Sandstorm is out of the scope of this tutorial. If you don’t have it setup yet head to the official documentation (https://docs.sandstorm.io/en/latest/administering/ssl/).

The only thing we need to tweak is setting the port to the one the SNI Proxy is forwarding the requests to (9687 in these examples) and keep (or make depending on your current setup) the URLs on port 443 (the standard, so no :443 at the end). We’ll assume you have a alias.sandcats.io as your Sandstorm address in the configuration example.

sudo vi /opt/sandstorm/sandstorm.conf

Relevant contents of /opt/sandstorm/sandstorm.conf:

# Bind localhost to avoid anyone connecting directly to Sandstorm
BIND_IP=127.0.0.1
# No ports here, standard HTTPS (port 443)
BASE_URL=https://alias.sandcats.io
WILDCARD_HOST=*.alias.sandcats.io
# This is the port SNI Proxy will connect to
HTTPS_PORT=9687

Setting up your current web server

This will depend on the server you have. Remember the accesable URLs will still use the standard HTTPS port, this change is only made to allow the SNI Proxy to sit in the middle.

I’m using Nginx and I could change all the configuration files using sed to replace 443 for 9686. What I did is:

sudo sed -ri 's/443/9686/g' /etc/nginx/sites-available/*

Keep in mind this might not work for you if you’re using ‘443’ anywhere in the configurarion files that is not to refer the port.

Final steps, put it to work

Now is the time to see if it worked. Shutdown your web server and Sandstorm and start them again. Start sniproxy as well.

sudo service nginx stop
sudo service sandstorm stop
sudo service sniproxy start
sudo service sandstorm start
sudo service nginx start

Now you can test by trying to get to your Sandstorm instance using https://alias.sandcats.io (put your alias) and also test that any other https service you had before works (something like https://service.yourdomain.com).

Written with StackEdit.

@QtluarOnCord
Copy link
Copy Markdown

================================================================
======== Log Rotated - 5/12/2026, 12:00:00 AM

║ TXADMIN║ txaEvent "serverShuttingDown" "{"delay":5000,"author":"Qt_exe","message":"Server restarting (admin request)."}"
[ script:monitor] [txAdmin] Server shutting down. Kicking all players.

║ TXADMIN║ ================================================================
║ TXADMIN║ ======== [375] FXServer Starting - 5/12/2026, 12:13:07 AM
║ TXADMIN║ ================================================================
[ resources] Scanning resources.
[ resources] Found 112 resources.
[ svadhesive] Authenticating server license key...
[ svadhesive] Server license key authentication succeeded. Welcome!
[ c-scripting-core] Creating script environments for monitor
[ script:monitor] [txAdmin] Resource v8.0.1 threads and commands set up. All Ready.
[ resources] Started resource monitor
[ c-scripting-core] Creating script environments for mapmanager
[ resources] Started resource mapmanager
[ c-scripting-core] Creating script environments for chat
[ resources] Started resource chat
[ resources] Started resource spawnmanager
[ c-scripting-core] Creating script environments for sessionmanager
[ resources] Started resource sessionmanager
[ c-scripting-core] Creating script environments for hardcap
[ resources] Started resource hardcap
[ c-scripting-core] Creating script environments for baseevents
[ resources] Started resource baseevents
[ c-scripting-core] Creating script environments for ox_lib
[ resources] Started resource ox_lib
[ c-scripting-core] Creating script environments for oxmysql
[ resources] Started resource oxmysql
[ c-scripting-core] Creating script environments for qbx_core
[ script:qbx_core] [qbx_core] [INFO] Stopping hardcap...
[ resources] Stopping resource hardcap
[ script:qbx_core] SCRIPT ERROR: @ox_lib/imports/require/server.lua:90: @ox_inventory/data/items.lua:482: '}' expected (to close '{' at line 1) near '['
[ resources] Started resource qbx_core
[ c-scripting-core] Creating script environments for ox_target
[ resources] Started resource ox_target
[ c-scripting-core] Creating script environments for lunar_bridge
[ script:lunar_bridge] SCRIPT ERROR: @lunar_bridge/framework/qb/server.lua:15: No such export GetCoreObject in resource qb-core
[ script:lunar_bridge] No compatible dispatch system found in lunar_bridge/dispatch/server.lua, using default "normal" mode
[ resources] Started resource lunar_bridge
[ c-scripting-core] Creating script environments for lunar_drugscreator
[script:lunar_drugscr] SCRIPT ERROR: @lunar_bridge/framework/qb/server.lua:15: No such export GetCoreObject in resource qb-core
[ resources] Started resource lunar_drugscreator
[ resources] Started resource lunar_drugscreator_props
[ c-scripting-core] Creating script environments for ox_doorlock
[ resources] Started resource ox_doorlock
[ c-scripting-core] Creating script environments for ox_inventory
[ script:ox_inventory] SCRIPT ERROR: @ox_lib/imports/require/server.lua:90: @ox_inventory/data/items.lua:482: '}' expected (to close '{' at line 1) near '['
[ resources] Started resource ox_inventory
[ c-scripting-core] Creating script environments for ox_fuel
[ resources] Started resource ox_fuel
[ c-scripting-core] Creating script environments for qbx_adminmenu
[ resources] Started resource qbx_adminmenu
[ c-scripting-core] Creating script environments for qbx_medical
[ resources] Started resource qbx_medical
[ c-scripting-core] Creating script environments for qbx_ambulancejob
[script:qbx_ambulance] SCRIPT ERROR: @qbx_ambulancejob/server/main.lua:22: No such export RegisterShop in resource ox_inventory
[ resources] Started resource qbx_ambulancejob
[ c-scripting-core] Creating script environments for qbx_bankrobbery
[ resources] Started resource qbx_bankrobbery
[ c-scripting-core] Creating script environments for qbx_binoculars
[ resources] Started resource qbx_binoculars
[ c-scripting-core] Creating script environments for qbx_busjob
[ resources] Started resource qbx_busjob
[ c-scripting-core] Creating script environments for qbx_carwash
[ resources] Started resource qbx_carwash
[ c-scripting-core] Creating script environments for qbx_chat_theme
[ resources] Started resource qbx_chat_theme
[ c-scripting-core] Creating script environments for qbx_cityhall
[ resources] Started resource qbx_cityhall
[ c-scripting-core] Creating script environments for qbx_customs
[ resources] Started resource qbx_customs
[ resources] Started resource qbx_density
[ c-scripting-core] Creating script environments for qbx_divegear
[ resources] Started resource qbx_divegear
[ c-scripting-core] Creating script environments for qbx_diving
[ resources] Started resource qbx_diving
[ c-scripting-core] Creating script environments for qbx_drugs
[ resources] Started resource qbx_drugs
[ c-scripting-core] Creating script environments for qbx_fireworks
[ resources] Started resource qbx_fireworks
[ c-scripting-core] Creating script environments for qbx_garages
[ resources] Started resource qbx_garages
[ c-scripting-core] Creating script environments for qbx_garbagejob
[ resources] Started resource qbx_garbagejob
[ c-scripting-core] Creating script environments for qbx_houserobbery
[ resources] Started resource qbx_houserobbery
[ c-scripting-core] Creating script environments for qbx_hud
[ resources] Started resource qbx_hud
[ resources] Started resource MugShotBase64
[ c-scripting-core] Creating script environments for qbx_idcard
[ resources] Started resource qbx_idcard
[ c-scripting-core] Creating script environments for qbx_jewelery
[ script:qbx_jewelery] SCRIPT ERROR: @qbx_jewelery/server/main.lua:7: No such export Items in resource ox_inventory
[ resources] Started resource qbx_jewelery
[ c-scripting-core] Creating script environments for qbx_lapraces
[ resources] Started resource qbx_lapraces
[ c-scripting-core] Creating script environments for qbx_management
[ resources] Started resource qbx_management
[ c-scripting-core] Creating script environments for qbx_mechanicjob
[script:qbx_mechanicj] SCRIPT ERROR: @qbx_mechanicjob/server/main.lua:14: No such export RegisterStash in resource ox_inventory
[ resources] Started resource qbx_mechanicjob
[ c-scripting-core] Creating script environments for qbx_newsjob
[ resources] Started resource qbx_newsjob
[ c-scripting-core] Creating script environments for qbx_pawnshop
[ resources] Started resource qbx_pawnshop
[ c-scripting-core] Creating script environments for qbx_police
[ script:qbx_police] SCRIPT ERROR: @qbx_police/server/main.lua:146: No such export GetCoreObject in resource qb-core
[ resources] Started resource qbx_police
[ c-scripting-core] Creating script environments for qbx_properties
[ resources] Started resource qbx_properties
[ c-scripting-core] Creating script environments for qbx_radialmenu
[ resources] Started resource qbx_radialmenu
[ c-scripting-core] Creating script environments for qbx_recyclejob
[ resources] Started resource qbx_recyclejob
[ c-scripting-core] Creating script environments for qbx_scoreboard
[ resources] Started resource qbx_scoreboard
[ c-scripting-core] Creating script environments for qbx_scrapyard
[ resources] Started resource qbx_scrapyard
[ c-scripting-core] Creating script environments for qbx_seatbelt
[ resources] Started resource qbx_seatbelt
[ c-scripting-core] Creating script environments for qbx_smallresources
[script:qbx_smallreso] [qbx_smallresources] [WARN] [qbx_entitiesblacklist] You have entity blacklist enabled, this means that any entity that is blacklisted in config.lua will not be able to spawn, you can change this in qbx_smallresource/qbx_entitiesblacklist/config.lua
[ resources] Started resource qbx_smallresources
[ c-scripting-core] Creating script environments for qbx_spawn
[ resources] Started resource qbx_spawn
[ c-scripting-core] Creating script environments for qbx_storerobbery
[ resources] Started resource qbx_storerobbery
[ c-scripting-core] Creating script environments for qbx_streetraces
[ resources] Started resource qbx_streetraces
[ c-scripting-core] Creating script environments for qbx_taxijob
[ script:qbx_taxijob] SCRIPT ERROR: @qbx_taxijob/server/main.lua:2: No such export Items in resource ox_inventory
[ resources] Started resource qbx_taxijob
[ c-scripting-core] Creating script environments for qbx_towjob
[ resources] Started resource qbx_towjob
[ c-scripting-core] Creating script environments for qbx_truckerjob
[ resources] Started resource qbx_truckerjob
[ c-scripting-core] Creating script environments for qbx_truckrobbery
[ resources] Started resource qbx_truckrobbery
[ c-scripting-core] Creating script environments for qbx_vehiclekeys
[ resources] Started resource qbx_vehiclekeys
[ c-scripting-core] Creating script environments for qbx_vehicles
[ resources] Started resource qbx_vehicles
[ c-scripting-core] Creating script environments for qbx_vehiclesales
[ resources] Started resource qbx_vehiclesales
[ c-scripting-core] Creating script environments for qbx_vehicleshop
[ resources] Started resource qbx_vehicleshop
[ c-scripting-core] Creating script environments for qbx_vineyard
[ resources] Started resource qbx_vineyard
[ c-scripting-core] Creating script environments for qbx_weed
[ resources] Started resource qbx_weed
[ c-scripting-core] Creating script environments for Renewed-Banking
[ resources] Started resource Renewed-Banking
[ c-scripting-core] Creating script environments for Renewed-Weathersync
[ resources] Started resource Renewed-Weathersync
[ resources] Started resource bob74_ipl
[ c-scripting-core] Creating script environments for illenium-appearance
[script:illenium-appe] SCRIPT ERROR: @illenium-appearance/server/framework/qb/main.lua:3: No such export GetCoreObject in resource qb-core
[ resources] Started resource illenium-appearance
[ c-scripting-core] Creating script environments for informational
[ resources] Started resource informational
[ c-scripting-core] Creating script environments for loadscreen
[ resources] Started resource loadscreen
[ c-scripting-core] Creating script environments for mana_audio
[ resources] Started resource mana_audio
[ resources] Started resource mhacking
[ resources] Started resource safecracker
[ c-scripting-core] Creating script environments for screencapture
[ resources] Started resource screencapture
[ c-scripting-core] Creating script environments for scully_emotemenu
[ resources] Started resource scully_emotemenu
[ c-scripting-core] Creating script environments for ultra-voltlab
[ resources] Started resource ultra-voltlab
[ c-scripting-core] Creating script environments for vehiclehandler
[ resources] Started resource vehiclehandler
[ c-scripting-core] Creating script environments for xt-prison
[ resources] Started resource xt-prison
[ c-scripting-core] Creating script environments for pma-voice
[ resources] Started resource pma-voice
[ c-scripting-core] Creating script environments for mm_radio
[ resources] Started resource mm_radio
[ resources] Started resource pillbox
[ c-scripting-core] Creating script environments for jg-vehiclemileage
[ resources] Started resource jg-vehiclemileage
[ c-scripting-core] Creating script environments for jg-mechanic
[ resources] Started resource jg-mechanic
[ resources] Started resource jg-mechanic-props
[resources:CaserioTH_] Asset CaserioTH_jotaaa/carerio_interio_hapupi_000.ytd uses 23.0 MiB of physical memory.
[ resources] Started resource CaserioTH_jotaaa (1 warning)
[resources:ResLopezSi] Asset ResLopezSicardo/massive_grass+hidr.ytd uses 32.0 MiB of physical memory.
[resources:ResLopezSi] Asset ResLopezSicardo/molo_hlm_texture.ytd uses 25.2 MiB of physical memory.
[ resources] Started resource ResLopezSicardo (2 warnings)
[ resources] Started resource caserio2
[ resources] Started resource energy_evomotors
[resources:energy_red] Asset energy_redline/energyredlinetxd.ytd uses 45.2 MiB of physical memory.
[ resources] Started resource energy_redline (1 warning)
[ citizen-server-impl] Couldn't find resource category [housing].
[ c-scripting-core] Creating script environments for npwd_qbx_garages
[ resources] Started resource npwd_qbx_garages
[ c-scripting-core] Creating script environments for npwd_qbx_mail
[ resources] Started resource npwd_qbx_mail
[ c-scripting-core] Creating script environments for qbx_npwd
[ resources] Started resource qbx_npwd
[ c-scripting-core] Creating script environments for npwd
[ resources] Started resource npwd
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_1 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_3 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_5 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_7 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_9 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_11 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_13 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_15 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_17 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_19 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_22 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_24 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_26 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_28 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_30 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_32 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_34 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_36 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_38 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_40 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_42 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_44 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_46 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_48 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_50 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_52 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_54 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_56 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_58 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_60 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_62 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_64 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_66 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_68 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_70 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_72 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_74 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_76 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_78 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_80 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_82 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_84 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_86 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_88 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_90 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_92 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_94 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_96 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_98 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_100 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_102 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_104 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3
[ script:npwd] Error: Unhandled promise failure: Error: No such export GetCoreObject in resource qb-core
[ script:npwd] at Object.get (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:593:15)
[ script:npwd] at @npwd/dist/game/server/server.js:51498:48
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:523:30
[ script:npwd] at Number.__cfx_wrap_106 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24:12)
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30:16
[ script:npwd] at /home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:485:3[ script:lunar_bridge] SCRIPT ERROR: ?:-1: attempt to call a nil value (field 'getItems')
[ script:jg-mechanic] SCRIPT ERROR: @jg-mechanic/server/sv-shops-stashes.lua:71: No such export RegisterStash in resource ox_inventory
[ citizen-server-impl] server thread hitch warning: timer interval of 173 milliseconds
[ script:oxmysql] [11.8.6-MariaDB-ubu2404] Database server connection established!
[ citizen-server-impl] fff
[ citizen-server-impl] cccc ff xx xx rr rr eee
[ citizen-server-impl] cc ffff xx rrr r ee e
[ citizen-server-impl] cc ff xx ... rr eeeee
[ citizen-server-impl] ccccc ff xx xx ... rr eeeee
[ citizen-server-impl]
[ citizen-server-impl] Authenticated with cfx.re Nucleus: https://qt-exe-6mydya4.users.cfx.re/
[ script:xt-prison] [xt-prison] [INFO] Initializing Table: xt_prison
[ script:xt-prison] [xt-prison] [INFO] Initializing Table: xt_prison_items
[script:lunar_drugscr] SCRIPT ERROR: lunar_drugscreator was unable to execute a query!
[script:lunar_drugscr] Query: SELECT * FROM lunar_drugscreator_stats WHERE date >= ?
[script:lunar_drugscr] ["2026-04-28"]
[script:lunar_drugscr] Table 'fivem_db.lunar_drugscreator_stats' doesn't exist
[script:lunar_drugscr] > new StackDumpError (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:416)
[script:lunar_drugscr] > (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:436)
[script:lunar_drugscr] > (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:97)
[script:lunar_drugscr] > Number.__cfx_wrap_231 (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:24)
[script:lunar_drugscr] > (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:30)
[script:lunar_drugscr] > (/home/container/alpine/opt/cfx-server/citizen//scripting/v8/main.js:94)
[script:lunar_drugscr] > logError (@oxmysql/dist/build.js:26337)
[script:lunar_drugscr] > rawQuery (@oxmysql/dist/build.js:26520)
[script:lunar_drugscr] > process.processTicksAndRejections (node:internal/process/task_queues:105)
[ script:qbx_core]
[ script:qbx_core] Welcome to Qbox!
[ script:qbx_core] To learn more, please check out the documentation at https://docs.qbox.re/.
[ script:qbx_core] To turn this message off, set the qbx:acknowledge convar to true in your server.cfg file.
[ script:qbx_core]
[script:scully_emotem] [scully_emotemenu] You are currently running the latest version.
[ script:qbx_core] [qbx_core] [INFO] Removed invalid groups from player_groups table
[ script:lunar_bridge] [INFO] lunar_drugscreator is up-to-date.
[ script:lunar_bridge] [INFO] lunar_bridge is up-to-date.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment