Jump to content

Logan

Member
  • Posts

    174
  • Joined

  • Last visited

Posts posted by Logan

  1. Sounds like your deployed bikes don't have a characterID.

     

    That makes sense actually, anyway to change that? Using this deploy script if it helps 

     

    Doublecheck if proper name for bike is added in dayz_allowedObjects array in variables. And variables is actually properly compiled from init.sqf

     

    If it is and still deleting objects, then

     

    open your dayz_server.pbo

    find \compile\server_updateObject.sqf

     

    Line 13, update it like this: 

    _parachuteWest = ((typeOf _object == "MMT_Civ") or (typeOf _object == "ParachuteWest") or (typeOf _object == "ParachuteC"));
    

    Repack and upload pbo.

     

    if you don't want to mess with _parachuteWest, then you will find a video tutorial in my sig on how to add custom code here instead, that also lets you whitelist multiple spawned vehicles safely.

     

    Tip: Never ever disable deleteVehicle code part when somebody suggest it, it's bad for server's security. Whitelisting is a safest way to go.

     

    The vehicles are allowed in my allowed vehicles and my variables are called correctly. As for the server_updateObject.sqf I'll try it when I get home.

  2. Hi, I'm having an issue on my servers, sometimes after a minute or two the deploy vehicle gets deleted, or it happens right away. In my RPT I get this 

     

    "Deleting object MMT_Civ with invalid ID at pos [8713.18,15591.1,-0.00219727]"

     

     

    I'd imagine it's something with the cleanup but I'm not entirely sure.

     

    Anyone have any issues similar to this? I'm also running Infistar, so maybe that's causing it?

     

    The vehicles are allowed in my variables.

     

     

     

     

  3. Still can't connect to server database  :angry:

     

    GoDaddy allows RemoteMySQL as well as Vert Hosting, they just won't work, what web host are others using that have this working?

     

    I know it's GoDaddy, because I used 000webhost to test it in the beginning since iPage didn't allow Remote MySQL, seems no matter what I enter in GoDaddy it doesn't work.

  4. This is the query I run:

    INSERT INTO Traders_DATA (`item`, `qty`, `buy`, `sell`, `tid`, `afile`) VALUES ('["CinderBlocks",1]', 15, '[3,"ItemGoldBar",1]', '[1,"ItemGoldBar",1]', 530, 'trade_items');

    Changed what I needed to in it, and it worked perfect, thanks!

  5. Was trying to add things into the hero and bandit traders on my new server by an SQL Query rather than copying and replacing things, and I'm getting this error

    SQL query:
    
    
    INSERT INTO `traders_data` (`item`,`qty`,`buy`,`sell`,`order`,`tid`,`afile`) VALUES
    
    ('["M4A1_HWS_GL",3]',25,'[2,"ItemGoldBar",1]','[1,"ItemGoldBar",1]',0,477,'trade_weapons'),
    ('["M4A1_HWS_GL",3]',25,'[3,"ItemGoldBar",1]','[1,"ItemGoldBar",1]',0,627,'trade_weapons'),
    MySQL said: Documentation
    
    #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 4 
    

    Code I'm using

     

    INSERT INTO `traders_data` (`item`,`qty`,`buy`,`sell`,`order`,`tid`,`afile`) VALUES
     
    ('["M4A1_HWS_GL",3]',25,'[2,"ItemGoldBar",1]','[1,"ItemGoldBar",1]',0,477,'trade_weapons'),
    ('["M4A1_HWS_GL",3]',25,'[3,"ItemGoldBar",1]','[1,"ItemGoldBar",1]',0,627,'trade_weapons'),
     
    Not sure what I'm doing wrong.
  6. On my Napf server I'm having an issue where the Black market trader and Nordic boat trader disappear when someone walks up to them. The only thing I've changed recently is my Infistar Anti-Hack, which I've looked through and I didn't see anything that would be causing it.

     

    Running the latest version of the Anti-Hack - 08/04/2014 (AH0328)

     

    http://i.imgur.com/aR8mLNS.jpg

     

    This shows up my Hacker log "Exceeded Item Limit #1: 26 - (Trader clothing)"

     

    Just emailed Infistar to see if he would know, but also wanted to see if anyone else has come across this issue.

×
×
  • Create New...