Rocket launchers & AS50's breaking my server start up, ideas?

zombified

Member
Greetings,

My server is running fine with all the added traders and additional weapons, supplies, etc...

EXCEPT for the rocket launchers and big guns (like M107 and AS50).

I have both DZAI and DZMS installed, which both have rockets and big guns working fine.

Users are NOT getting kicked when using these items from dead AI.

I'm loading items (weapons) same as everything else I've added and not having a problem with:

Example
INSERT INTO `Traders_DATA` (`item`,`qty`,`buy`,`sell`,`order`,`tid`,`afile`) VALUES
('["BAF_AS50_scoped",3]',50,'[2,"ItemGoldBar10oz",1]','[1,"ItemGoldBar10oz",1]',0,477,'trade_weapons'),
('["M107",3]',50,'[2,"ItemGoldBar10oz",1]','[1,"ItemGoldBar10oz",1]',0,477,'trade_weapons'),
('["M136",3]',50,'[4,"ItemGoldBar10oz",1]','[2,"ItemGoldBar10oz",1]',0,698,'trade_weapons'),
('["M136",1]',50,'[1,"ItemGoldBar10oz",1]','[5,"ItemGoldBar",1]',0,699,'trade_items'),
('["RPG18",3]',50,'[4,"ItemGoldBar10oz",1]','[2,"ItemGoldBar10oz",1]',0,698,'trade_weapons'),
('["RPG18",1]',50,'[1,"ItemGoldBar10oz",1]','[5,"ItemGoldBar",1]',0,699,'trade_items'),
('["RPG7V",3]',50,'[4,"ItemGoldBar10oz",1]','[2,"ItemGoldBar10oz",1]',0,698,'trade_weapons'),
('["OG7",1]',50,'[1,"ItemGoldBar10oz",1]','[5,"ItemGoldBar",1]',0,699,'trade_items'),
('["PG7V",1]',50,'[1,"ItemGoldBar10oz",1]','[5,"ItemGoldBar",1]',0,699,'trade_items'),
('["PG7VL",1]',50,'[1,"ItemGoldBar10oz",1]','[5,"ItemGoldBar",1]',0,699,'trade_items'),
('["PG7VR ",1]',50,'[1,"ItemGoldBar10oz",1]','[5,"ItemGoldBar",1]',0,699,'trade_items');

For some reason, this breaks the server.

I've been struggling with this for couple of weeks now searching for answers, ideas, suggestions posted by others... apparently I'm the only one having this issue.

Anyone have suggestions, ideas, solution for this annoying issue?

Thank you
 
I figured it out... kinda.

Apparently a mass entry sql command breaks things. If I add them one at a time it works.

Weird!
 
Maybe due to this?
('["M107",3]','50','[2,"ItemGoldBar10oz",1]','[1,"ItemGoldBar10oz",1]','0','477','trade_weapons'),
 
Back
Top