Hey everyone I am having an issue with one of my Traders. The heli Trader at NEAF will not restock I have a daily restock set up and it is working for all traders but my vehicle traders. I ran the sql code
CREATE EVENT updateStockDaily
ON SCHEDULE EVERY 1 DAY
COMMENT 'Updates out of stock vendors'
DO
UPDATE `traders_data` SET qty=10 WHERE qty=0 AND afile<>'trade_any_vehicle' AND afile<>'trade_any_boat';
CREATE EVENT removeDamagedVehicles
ON SCHEDULE EVERY 1 DAY
COMMENT 'Removes damaged vehicles'
DO
DELETE FROM `object_data` WHERE Damage = 1;
But it is only restocking item traders not vehicle traders. I am getting hounded to get the heli traders restocked does anyone know why it is restocking the item traders but not the vehicle traders?
Question
Crispy
Hey everyone I am having an issue with one of my Traders. The heli Trader at NEAF will not restock I have a daily restock set up and it is working for all traders but my vehicle traders. I ran the sql code
But it is only restocking item traders not vehicle traders. I am getting hounded to get the heli traders restocked does anyone know why it is restocking the item traders but not the vehicle traders?
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now