Tutorials

I am missing uwucatcafe_stock table in my database, how should I add it in ?

I am not able to deposit or withdraw money from boss menu.

When I order food from npc employee nothing happends but my money gets removed

1.

How to add uwucatcafe_stock table in your database:

CREATE TABLE IF NOT EXISTS uwucatcafe_stock (
    item VARCHAR(255) NOT NULL,
    amount int(11) NOT NULL DEFAULT 0
)

2.

[QB] - How to fix problems with boss menu and npc employee:

  1. Go to the script config: fivecode_uwucatcafejob/config.lua

  2. Find Config.BossMenuSociety (line - 88): Change it from 'auto_detect' to 'qb-banking' or 'qb-management'.

  3. Fixed!

Last updated