Jump to content

BigEgg

Member
  • Posts

    362
  • Joined

  • Last visited

  • Days Won

    28

Posts posted by BigEgg

  1. Just now, A Man said:

    Ive wrote it that way:

    
    	_nearPlayers = _objective nearEntities ["CAManBase", 30];
    	_player = _nearPlayers select 0;
    	if ( isPlayer _player) then {
    		_humanity = _player getVariable["humanity", 0];
    		_player setVariable["humanity", _humanity + 50, true];
    	};

    Your version works as well. Thank you @BigEgg

    Be sure to use mine, as it checks each nearby unit. Yours only checks the first nearby unit, which could fail should it be an AI. Mine will keep going to the next unit if it is an AI, if you get what I am saying.

  2. 28 minutes ago, A Man said:

    Yes but if we use count we get a number back. Or did I read it wrong?

    Thats the error message I got:

    
    23:36:27 Error in expression <n", 30]);
    
    _humanity = (_nearestPlayers select 0) getVariable["humanity", 0];
    (_>
    23:36:27   Error position: <select 0) getVariable["humanity", 0];
    (_>
    23:36:27   Error select: Type Number, expected Array,Config entry

     

     

    Ahhhhh yes - a mistake on my part, nice catch! We are going to need to break this into a couple more lines.

     

    We need to use nearEntities however in order to get the nearest possible player (the one that set it off).

     

    Please try this:

    {if (isPlayer _x) exitWith {_player = _x};} count (_objective nearEntities["Man", 30]);
    	
    _currentHumanity = _player getVariable["humanity", 0];
    _player setVariable["humanity", _currentHumanity + 50, true];

     

  3. I just whipped this together, could probably do it better but idk why this wouldn't work:

     

    Find this line in your DZMSFunctions.sqf:

    call compile format["waitUntil{sleep 1; ({isPlayer _x && _x distance _objective <= 30} count playableUnits > 0) && ({alive _x} count %1 <= (_numSpawned - _numKillReq));};",_unitArrayName];

     

    Below it add:

    _nearestPlayers = {isPlayer _x} count (_objective nearEntities["Man", 30]);
    	
    _currentHumanity = (_nearestPlayers select 0) getVariable["humanity", 0];
    (_nearestPlayers select 0) setVariable["humanity", _humanity + 50, true];

     

    Be sure to add the variables to the private array.

     

    Let me know if it works man :)

     

  4. 3 hours ago, JakeQue said:

    With the default epoch 1061 you have the kill messages on the top left, but I thought it would be nice if we could display the same type of coloured messages in the top middle when a WAI mission is loaded, probably fairly easy to do... if anyone has the code it would be much appreciated

    Implying that you didn't just see this on other servers and now you want it yourself...

     

    Regardless, you need to add a publicVariableEventHandler client side to be able to broadcast the message to everyone. Then, call the event handler with the messages in the mission system.

  5. I would highly recommend (depending on your budget) hosting yourself. Here are a couple cheap recommendations for starting off:

     

    NFO Servers offers some really nice virtual machines which would do quite well for a start off. I would recommend the 4 or 6 core and would also recommend getting a 10 GB SSD added to it for your database.

    https://www.nfoservers.com/order-virtual-dedicated-server.php

     

    Or, if you can afford a little more, start off with a server from soyoustart. They offer a really nice cheap selection of servers. Here is my recommendation (that is in stock at this time):

    https://www.soyoustart.com/us/offers/143sys10.xml

     

    Comes with a nice amount of SSDs and OVH DDOS protection. Total with the rented windows license would come to around $75 a month.

  6. 1 minute ago, salival said:

    You can't use the base class which is why I'm doing this check: https://github.com/oiad/remoteVehicle/blob/master/dayz_code/compile/ui_selectSlot.sqf#L69

    That could be broken by other items with "itemkey" in the name but the only one I know of is itemkey (but I check this on that same line)

    But yeah, I try and focus my work on clean and tidy so that anyone can read it, almost to the point of unreasonable OCD tidy

    Ahhhhhh that is still much more efficient than what I am doing now. I like clean though, smaller the file size and the simpler the code the better it runs. Eitherway, nice job :)

  7. 2 minutes ago, juandayz said:

    this is the way that works for me with xamp.. (the bat from above dsnt works for me).

    START MY SERVER WITH:

    LAUNCHER.BAT

      Hide contents
    
    
    
    @echo off
    
    ::CONFIG SETTINGS
    set becPath="D:\epoch16"
    set serverPath="D:\epoch16"
    set DB_USERNAME="your user"
    set DB_PASSWORD="your pass"
    set DB_NAME="your db"
    
    ::END SETTINGS
    :arma2oaserver
    echo  MONITOR STARTING...
    FOR /F "tokens=1-4 DELIMS=/ " %%F IN ('date /T') DO (set v_date=%%F%%G%%H)
    FOR /F "tokens=1-4 DELIMS=: " %%F IN ('time /T') DO (set v_time=%%F%%G%%H)
    set fname=database_%v_date%_%v_time%.sql
    
    ping 127.0.0.1 -n 5 >NUL
    
    title SERVER NAME 
    cd %becPath%
    echo (%time%) LOADING BEC.
    start "BEC_CONTROL" "BEC_CONTROL.bat"
    cd %serverPath%
    echo (%time%)  SERVER STARTING.
    start /wait "arma2" /min "D:\epoch16\arma2oaserver.exe" -port=2302 -autoInit -noSound -noPause "-config=instance_2_utes\config.cfg" "-cfg=instance_2_utes\basic.cfg" "-profiles=instance_2_utes" -name=instance_2_utes "-mod=@DayZ_Epoch;@DayZ_Epoch_Server;" 
    echo (%time%) WARNING: AUTORESTART IS ACTIVE NOW
    goto arma2oaserver

     

     

    BEC_CONTROL.bat

      Reveal hidden contents
    
    
    
    TIMEOUT /T 25 /NOBREAK
    cd\
    cd "D:\epoch16\instance_2_utes\BattlEye\Bec"
    Bec.exe -f Config.cfg --dsc

     

     

     

    in my scheduler.xml

      Reveal hidden contents
    
    
    <?xml version="1.0"?>
    <Scheduler>
    
    <!-- 12:00 AM restart -->
    <job id="0">
    	<time>23:59:00</time>
    	<delay>000000</delay>
    	<day>1,2,3,4,5,6,7</day>
    	<loop>0</loop>
    	<cmd>say -1 This server will restart in 1 minute, Log out now!</cmd>
    	<cmdtype>0</cmdtype>
    </job>
    
    <job id="1">
    	<time>00:00:00</time>
    	<delay>000000</delay>
    	<day>1,2,3,4,5,6,7</day>
    	<loop>0</loop>
    	<cmd>#shutdown</cmd>
    	<cmdtype>0</cmdtype>
    </job>
    
    <job id="2">
    	<time>00:00:01</time>
    	<delay>000000</delay>
    	<day>1,2,3,4,5,6,7</day>
    	<loop>0</loop>	
    	<cmd>D:\epoch16\SHUTDOWN.bat</cmd>
    	<cmdtype>1</cmdtype>
    </job>
    
      //THE REST OF THE JOBS BELOW

     

    SHUTDOWN.BAT

      Reveal hidden contents
    
    
    @echo off
    echo SHUTDOWN ARMA2OA SERVER
    TIMEOUT /T 2 /NOBREAK
    taskkill /F /IM arma2oaserver.exe
    TIMEOUT /T 4 /NOBREAK
    echo SHUTDOWN DEAD BEC
    taskkill /f /im cmd.exe /fi "windowtitle eq BEC_CONTROL
    echo LOADING CLEAN UP FUNCTIONS
    
    set cleanupfunction="D:\epoch16"
    cd /d %cleanupfunction%
    start "" "CLEANUP.bat"
    echo SUCCESS
    timeout 3
    exit

     

     

    CLEANUP.BAT

      Hide contents
    
    
    @echo off
    
    set MYSQLHOST=127.0.0.1
    :: Database Table Name 
    set mysqlschema= your db
    
    :: Username to access the database
    set mysqlpassword= your pass
    
    :: Password to access the database
    set mysqluser= your user
    
    :: Path to mysql.exe file (default)
    set mysqlpath=C:\xampp\mysql\bin\
    
    :: Path to cleanup script file (the file with all of the cleanup code in it)
    set mysqlcleanup="D:\Epoch16\SERVER_MAINTAIN.sql"
    
    "%mysqlpath%\mysql.exe" -h %MYSQLHOST% --user=%mysqluser% --password=%mysqlpassword% --database=%mysqlschema%  < %mysqlcleanup%
    ::add PAUSE below if u wanna see what happend
                                                                                                                                   
    exit

     

    SERVER_MAINTAIN.sql  (i use a lil modify of the one by  bigegg  and i think @BigEgg yours need add the function to find vehicles without key.. otherway drops an error with this line (AND FindVehicleKeysCount(Object_DATA.CharacterID) = 0;)

      Reveal hidden contents
    
    
    -- ----------------------------
    -- Unlock vehicle's with no key.
    -- ----------------------------
    UPDATE `Object_DATA`
    SET `Object_DATA`.`CharacterID` = 0,`LastUpdated` = `LastUpdated`
    WHERE `Object_DATA`.`CharacterID` <> 0
    AND`Object_DATA`.`CharacterID` <= 12500
    AND`Object_DATA`.`Classname` NOT LIKE 'Tent%'
    AND`Object_DATA`.`Classname` NOT LIKE '%Locked'
    AND`Object_DATA`.`Classname` NOT LIKE 'Land%'
    AND`Object_DATA`.`Classname` NOT LIKE 'Cinder%'
    AND`Object_DATA`.`Classname` NOT LIKE 'Wood%'
    AND`Object_DATA`.`Classname` NOT LIKE 'Metal%'
    AND`Object_DATA`.`Classname` NOT LIKE '%Storage%'
    AND`Object_DATA`.`Classname` NOT IN ('OutHouse_DZ', 'GunRack_DZ', 'WorkBench_DZ', 'Sandbag1_DZ', 'FireBarrel_DZ', 'DesertCamoNet_DZ', 'StickFence_DZ', 'LightPole_DZ', 'DeerStand_DZ', 'ForestLargeCamoNet_DZ', 'Plastic_Pole_EP1_DZ', 'Hedgehog_DZ', 'FuelPump_DZ', 'Fort_RazorWire', 'SandNest_DZ', 'ForestCamoNet_DZ', 'Fence_corrugated_DZ', 'CanvasHut_DZ', 'Generator_DZ')
    AND FindVehicleKeysCount(Object_DATA.CharacterID) = 0;

     

     

    Ahhhhh yes - I keep that function in the database table itself.

  8. 11 minutes ago, Hooty said:

    Can someone test the Tunguska to make sure its just not my stupid self lol. I have noticed it will not blow up in 1061. I have gbu the crap out of it, shot I dont know how many hell fires at it, and I even drove around under the ocean to see if it would blow up. This is the only vehicle that does this.  @BigEgg thinks it may be the dayz patch. Does anyone know?

    I don't think the Epoch Devs mess with the vehicles, I think if it were made to have God Mode, it likely would have been the DayZ Devs.

  9. 11 minutes ago, DieTanx said:

    i kept the default mysql server info-  but getting this error

    Thoughts?

    :: Path to mysql.exe file (default)
    set mysqlpath="C:\Program Files\MySQL\MySQL Server 5.7\bin"

    OrXq3lz.png

    Apologies, I forgot the executable part lol - typing too fast

     

    Try this instead of that path:

    "C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql.exe"

     

  10. 1 hour ago, DieTanx said:

    https://pastebin.com/PwAZAmNW
     

    Here is my batch- Where am i going wrong?

    Create a batch file somewhere on your server with this code in it:

     

    @echo off
    
    :: Database Table Name (default is dayz_epoch)
    set mysqlschema=dayz_epoch
    
    :: Username to access the database
    set mysqlpassword=root
    
    :: Password to access the database
    set mysqluser=password
    
    :: Path to mysql.exe file (default)
    set mysqlpath="C:\Program Files\MySQL\MySQL Server 5.7\bin"
    
    :: Path to cleanup script file (the file with all of the cleanup code in it)
    set mysqlcleanup="C:\PATH HERE\PATH.sql"
    
    %mysqlpath% -u %mysqluser% -p%mysqlpassword% %mysqlschema%  < %mysqlcleanup%
    
    exit

     

    Then, on your server, create an sql file and add the following to it:

    -- --------------------------------------------------------------------------------
    -- --------------------------------Base Maintenance--------------------------------
    -- --------------------------------------------------------------------------------
    
    -- ----------------------------
    -- Fix inventory on maintainable objects.
    -- ----------------------------
    UPDATE `object_data`
    SET `inventory` = '[]',`LastUpdated` = `LastUpdated`
    WHERE `inventory` = '[[[],[]],[[],[]],[[],[]]]'
    AND
    `Classname` IN ('BagFenceRound_DZ','CinderWall_DZ','CinderWallDoorLocked_DZ','CinderWallDoorSmall_DZ','CinderWallDoorSmallLocked_DZ','CinderWallHalf_DZ','FireBarrel_DZ','GunRack_DZ','LightPole_DZ','MetalFloor_DZ','MetalPanel_DZ','OutHouse_DZ','TentStorage','TentStorageDomed','TentStorageDomed2','Sandbag1_DZ','Scaffolding_DZ','StickFence_DZ','StorageShed_DZ','WorkBench_DZ','WoodCrate_DZ','WoodFloor_DZ','WoodFloorQuarter_DZ','WoodLargeWall_DZ','WoodLargeWallWin_DZ','WoodShack_DZ','WoodSmallWall_DZ','WoodSmallWallThird_DZ','WoodSmallWallWin_DZ','Land_DZE_GarageWoodDoor','WoodFloorHalf_DZ','Fort_RazorWire','Land_DZE_LargeWoodDoorLocked','WoodStairsRails_DZ','WoodLadder_DZ','WoodStairsSans_DZ','M240Nest_DZ','Land_DZE_WoodDoor');
    
    -- ----------------------------
    -- Set 0.1 damage to objects daily.
    -- ----------------------------
    UPDATE `object_data`
    SET `Damage` = IF( `Damage` = 0.0, 0.1, `Damage` + 0.1 )
    WHERE `LastUpdated` <= DATE_SUB(NOW(), INTERVAL 1 DAY)
    AND `ObjectUID` <> 0
    AND `CharacterID` <> 0
    AND ( (`Inventory` IS NULL) OR (`Inventory` = '[]') );
    
    -- ----------------------------
    -- Set 0.1 damage doors/plots daily.
    -- ----------------------------
    UPDATE `object_data`
    SET `Damage` = IF( `Damage` = 0.0, 0.1, `Damage` + 0.1 )
    WHERE `Classname` IN ('Plastic_Pole_EP1_DZ','CinderWallDoorSmallLocked_DZ','CinderWallDoorLocked_DZ','CinderWallSmallDoorway_DZ','CinderWallDoorway_DZ','Land_DZE_WoodDoorLocked','CinderWallDoor_DZ','CinderWallDoorSmall_DZ','Land_DZE_WoodDoor','Land_DZE_GarageWoodDoor','Land_DZE_GarageWoodDoorLocked','Land_DZE_LargeWoodDoorLocked','Land_DZE_LargeWoodDoor','WoodLargeWallDoor_DZ')
    AND `LastUpdated` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 1 DAY)
    AND `Inventory` != '[]';
    
    -- ----------------------------
    -- Set safe combinations to 0000 after 10 days of inactivity.
    -- ----------------------------
    UPDATE `object_data`
    SET `CharacterID` = 0
    WHERE `LastUpdated` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 10 DAY)
    AND `CharacterID` > 0
    AND `Classname` = "VaultStorageLocked"
    AND `Inventory` <> '[]'
    AND `Inventory` IS NOT NULL;
    
    -- ----------------------------
    -- Set lockbox combinations to RED00 after 10 days of inactivity.
    -- ----------------------------
    UPDATE `object_data`
    SET `CharacterID` = 10000
    WHERE `LastUpdated` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 10 DAY)
    AND `CharacterID` > 0
    AND `Classname` = "LockboxStorageLocked"
    AND `Inventory` <> '[]'
    AND `Inventory` IS NOT NULL;
    
    -- ----------------------------
    -- Delete empty storage objects.
    -- ----------------------------
    DELETE FROM `object_data`
    WHERE `LastUpdated` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 3 DAY)
    AND ( (`Inventory` IS NULL) OR (`Inventory` = '[]') OR (`Inventory` = '[[[],[]],[[],[]],[[],[]]]') )
    AND `Classname` IN ('Wooden_shed_DZ','WoodShack_DZ', 'TentStorage', 'TentStorageDomed', 'TentStorageDomed2', 'WoodCrate_DZ', 'GunRack_DZ', 'OutHouse_DZ', 'StorageShed_DZ');
    
    -- ----------------------------
    -- Delete inactive storage objects.
    -- ----------------------------
    DELETE FROM `object_data`
    WHERE `LastUpdated` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 10 DAY)
    AND `Classname` IN ('Wooden_shed_DZ','WoodShack_DZ', 'TentStorage', 'TentStorageDomed', 'TentStorageDomed2', 'WoodCrate_DZ', 'GunRack_DZ', 'OutHouse_DZ', 'StorageShed_DZ');
    
    -- ----------------------------
    -- Delete objects that have 1 damage.
    -- ----------------------------
    DELETE FROM `object_data`
    WHERE Damage = 1;
    
    -- ----------------------------
    -- Delete plot poles and doors not being deleted.
    -- ----------------------------
    DELETE FROM `object_data`
    WHERE `LastUpdated` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 11 DAY)
    AND `Classname` IN ('Plastic_Pole_EP1_DZ','CinderWallDoorSmallLocked_DZ','CinderWallDoorLocked_DZ','CinderWallSmallDoorway_DZ','CinderWallDoorway_DZ','Land_DZE_WoodDoorLocked','CinderWallDoor_DZ','CinderWallDoorSmall_DZ','Land_DZE_WoodDoor','Land_DZE_GarageWoodDoor','Land_DZE_GarageWoodDoorLocked','Land_DZE_LargeWoodDoorLocked','Land_DZE_LargeWoodDoor','WoodLargeWallDoor_DZ');
    
    -- ----------------------------
    -- Delete old stuff.
    -- ----------------------------
    DELETE FROM `object_data`
    WHERE `LastUpdated` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 21 DAY);
    
    -- --------------------------------------------------------------------------------
    -- ------------------------------Vehicle Maintenance-------------------------------
    -- --------------------------------------------------------------------------------
    
    -- ----------------------------
    -- Delete Bikes, ATV's, Mozzie's, 350z's, and Busses.
    -- ----------------------------
    DELETE FROM `object_data`
    WHERE `Classname` IN ('MMT_Civ','Old_bike_TK_INS_EP1','TT650_Civ','TT650_Ins','Old_moto_TK_Civ_EP1','M1030_US_DES_EP1','TT650_TK_CIV_EP1','ATV_CZ_EP1','ATV_US_EP1','CSJ_GyroC','350z','350z_red','350z_kiwi','350z_black','350z_silver','350z_green','350z_blue','350z_gold','350z_white','350z_pink','350z_mod','350z_ruben','350z_v','350z_city','350z_yellow','Ikarus','Ikarus_TK_CIV_EP1');
    
    -- ----------------------------
    -- Delete useless vehicles with no keys.
    -- ----------------------------
    DELETE FROM `object_data`
    WHERE `LastUpdated` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 4 HOUR)
    AND `CharacterID` = '0'
    AND `Classname` IN ('AN2_DZ','GNT_C185U','GNT_C185','GNT_C185R','GNT_C185C','RHIB','Smallboat_1','Smallboat_2','Zodiac','Fishing_Boat','PBX','JetSkiYanahui_Case_Red','JetSkiYanahui_Case_Yellow','JetSkiYanahui_Case_Green','JetSkiYanahui_Case_Blue','CSJ_GyroP','CSJ_GyroCover','LandRover_CZ_EP1','LandRover_TK_CIV_EP1','HMMWV_M1035_DES_EP1','HMMWV_Ambulance','HMMWV_Ambulance_CZ_DES_EP1','HMMWV_DZ','HMMWV_DES_EP1','Civcar','Civcarbu','civcarbl','Civcarre','Civcarge','Civcarwh','Civcarsl','hilux1_civil_3_open_EP1','datsun1_civil_3_open_DZE','hilux1_civil_1_open_DZE','datsun1_civil_2_covered_DZE','datsun1_civil_1_open_DZE','hilux1_civil_2_covered_DZE','Skoda','SkodaBlue','SkodaGreen','SkodaRed','VolhaLimo_TK_CIV_EP1','Volha_1_TK_CIV_EP1','Volha_2_TK_CIV_EP1','VWGolf','car_hatchback','car_sedan','GLT_M300_LT','GLT_M300_ST','Lada1','Lada1_TK_CIV_EP1','Lada2','Lada2_TK_CIV_EP1','LadaLM','SUV_TK_CIV_EP1','SUV_Blue','SUV_Charcoal','SUV_Green','SUV_Orange','SUV_Pink','SUV_Red','SUV_Silver','SUV_White','SUV_Yellow','SUV_Camo','UAZ_CDF','UAZ_INS','UAZ_RU','UAZ_Unarmed_TK_CIV_EP1','UAZ_Unarmed_TK_EP1','UAZ_Unarmed_UN_EP1');
    
    -- ----------------------------
    -- Delete useless vehicles with keys.
    -- ----------------------------
    DELETE FROM `object_data`
    WHERE `LastUpdated` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 3 DAY)
    AND `CharacterID` > 0
    AND `Classname` IN ('AN2_DZ','GNT_C185U','GNT_C185','GNT_C185R','GNT_C185C','RHIB','Smallboat_1','Smallboat_2','Zodiac','Fishing_Boat','PBX','JetSkiYanahui_Case_Red','JetSkiYanahui_Case_Yellow','JetSkiYanahui_Case_Green','JetSkiYanahui_Case_Blue','CSJ_GyroP','CSJ_GyroCover','LandRover_CZ_EP1','LandRover_TK_CIV_EP1','HMMWV_M1035_DES_EP1','HMMWV_Ambulance','HMMWV_Ambulance_CZ_DES_EP1','HMMWV_DZ','HMMWV_DES_EP1','Civcar','Civcarbu','civcarbl','Civcarre','Civcarge','Civcarwh','Civcarsl','hilux1_civil_3_open_EP1','datsun1_civil_3_open_DZE','hilux1_civil_1_open_DZE','datsun1_civil_2_covered_DZE','datsun1_civil_1_open_DZE','hilux1_civil_2_covered_DZE','Skoda','SkodaBlue','SkodaGreen','SkodaRed','VolhaLimo_TK_CIV_EP1','Volha_1_TK_CIV_EP1','Volha_2_TK_CIV_EP1','VWGolf','car_hatchback','car_sedan','GLT_M300_LT','GLT_M300_ST','Lada1','Lada1_TK_CIV_EP1','Lada2','Lada2_TK_CIV_EP1','LadaLM','SUV_TK_CIV_EP1','SUV_Blue','SUV_Charcoal','SUV_Green','SUV_Orange','SUV_Pink','SUV_Red','SUV_Silver','SUV_White','SUV_Yellow','SUV_Camo','UAZ_CDF','UAZ_INS','UAZ_RU','UAZ_Unarmed_TK_CIV_EP1','UAZ_Unarmed_TK_EP1','UAZ_Unarmed_UN_EP1');
    
    -- ----------------------------
    -- Delete server spawned vehicles.
    -- ----------------------------
    DELETE FROM `object_data`
    WHERE `LastUpdated` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 3 DAY)
    AND `CharacterID` = '0'
    AND `Classname`
    NOT REGEXP 'barrier|storage|shed|bench|wall|floor|fence|pump|wood|hrescue|stick|pole|generator|panel|house|rack|bag|stand|barrel|canvas|wire|hedgehog|net|trap|ramp|fort|sand|scaffold|nest|killhouse|villa|castle|pub|shelter|stodola|garage|MBG|warehouse|sara';
    
    -- ----------------------------
    -- Delete all vehicles not touched in 10 days.
    -- ----------------------------
    DELETE FROM `object_data`
    WHERE `LastUpdated` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 10 DAY)
    AND `Classname`
    NOT REGEXP 'barrier|storage|shed|bench|wall|floor|fence|pump|wood|hrescue|stick|pole|generator|panel|house|rack|bag|stand|barrel|canvas|wire|hedgehog|net|trap|ramp|fort|sand|scaffold|nest|killhouse|villa|castle|pub|shelter|stodola|garage|MBG|warehouse|sara';
    
    -- ----------------------------
    -- Unlock purchased, inactive vehicles.
    -- ----------------------------
    UPDATE `object_data`
    SET `CharacterID` = 0,`LastUpdated` = `LastUpdated`
    WHERE `LastUpdated` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 7 DAY)
    AND `CharacterID` > 0
    AND `Classname`
    NOT REGEXP 'barrier|storage|shed|bench|wall|floor|fence|pump|wood|hrescue|stick|pole|generator|panel|house|rack|bag|stand|barrel|canvas|wire|hedgehog|net|trap|ramp|fort|sand|scaffold|nest|killhouse|villa|castle|pub|shelter|stodola|garage|MBG|warehouse|sara';
    
    -- ----------------------------
    -- Unlock vehicle's with no key.
    -- ----------------------------
    UPDATE `Object_DATA`
    SET `Object_DATA`.`CharacterID` = 0,`LastUpdated` = `LastUpdated`
    WHERE `Object_DATA`.`CharacterID` <> 0
    AND`Object_DATA`.`CharacterID` <= 12500
    AND`Object_DATA`.`Classname` NOT LIKE 'Tent%'
    AND`Object_DATA`.`Classname` NOT LIKE '%Locked'
    AND`Object_DATA`.`Classname` NOT LIKE 'Land%'
    AND`Object_DATA`.`Classname` NOT LIKE 'Cinder%'
    AND`Object_DATA`.`Classname` NOT LIKE 'Wood%'
    AND`Object_DATA`.`Classname` NOT LIKE 'Metal%'
    AND`Object_DATA`.`Classname` NOT LIKE '%Storage%'
    AND`Object_DATA`.`Classname` NOT IN ('OutHouse_DZ', 'GunRack_DZ', 'WorkBench_DZ', 'Sandbag1_DZ', 'FireBarrel_DZ', 'DesertCamoNet_DZ', 'StickFence_DZ', 'LightPole_DZ', 'DeerStand_DZ', 'ForestLargeCamoNet_DZ', 'Plastic_Pole_EP1_DZ', 'Hedgehog_DZ', 'FuelPump_DZ', 'Fort_RazorWire', 'SandNest_DZ', 'ForestCamoNet_DZ', 'Fence_corrugated_DZ', 'CanvasHut_DZ', 'Generator_DZ')
    AND FindVehicleKeysCount(Object_DATA.CharacterID) = 0;
    
    -- --------------------------------------------------------------------------------
    -- -------------------------------Player Maintenance-------------------------------
    -- --------------------------------------------------------------------------------
    
    -- ----------------------------
    -- Delete player login data.
    -- ----------------------------
    DELETE FROM `player_login`;
    
    -- ----------------------------
    -- Delete dead characters.
    -- ----------------------------
    DELETE from Character_data
    USING Character_data, Character_data as tempchartable
    WHERE (Character_data.PlayerUID = tempchartable.PlayerUID)
    AND (NOT Character_data.alive = tempchartable.alive)
    AND (Character_data.alive = 0);
    
    -- ----------------------------
    -- Delete characters inactive for 30 days.
    -- ----------------------------
    DELETE FROM Character_DATA 
    WHERE LastLogin < NOW() - INTERVAL 30 DAY;

     

    Then, add this line above where the server is started in your restart batch file (obviously adjust the path):

    start /wait "C:\FIle Path\SQLBATCHFILE.bat"

     

    Once you have done that, adjust the information in the batch file to match your server. The mysqlcleanup path is the path to the sql file that you created. Example: C:\Users\root\Desktop\SQLFILE.sql

  11. 16 minutes ago, DieTanx said:

    Does anybody else have a list of badfiles to add to the file scan  'basewipe.sqf' is one that recently has been an issue

    '!Scripts\de_cba.sqf', '001.sqf', '0100100110\start.sqf', '0100100110\Starts.sqf', '1.sqf', '1Brief.sqf', '2.pbo', '2dmap.sqf', '50Brief.sqf', '@Dayz_Namalsk\HP.sqf', '@Dayz_Namalsk\menu.sqf', '@Hak_script\1.GLAVNOYE\000.sqf', '@Hak_script\1.Teleport.sqf', '@mHlopchik\Menu_Scripts\menu\keybind\funmenu', '@mymod\Scripts\ajmenu.sqf', '@SPX\3b.sqf', '@SPX\SpawnWeapon.sqf', 'A2MenuV2\ExecME.sqf', 'A2MenuV2\MainFile.sqf', 'activator_NR.exe', 'addweapon.sqf', 'AimJunkies.exe', 'ajmenu.sqf', 'allover.dll', 'allover_[www.unknowncheats.me]_.dll', 'ammo2.sqf', 'anti-hackloaded!Errors', 'Arma2OABattleyeBypass.exe', 'ArmA2OAHackUCReleasebyCriibyy.dll', 'ArmA2OAHackUCReleasebyCriibyy_[www.unknowncheats.me]_.dll', 'ArmA2OA_Extars\BB_menu_BB.sqf', 'ArmA2OA_Extras\ben_ex.sqf', 'ArtyomV1\AtomicMenu.sqf', 'ASM\startup.sqf', 'ASM\_for_keybinds\mystuff.sqf', 'AspireMenuv.0.5\ALLTEHSCRIPTS!\esp.sqf', 'AspireMenuv.0.5\ALLTEHSCRIPTS!\heal.sqf', 'battleHIGH_Menu\startup.sqf', 'bb\start.sqf', 'BESecureJect.exe', 'BE\update.sqf', 'blah.sqf', 'boooooooobies.sqf', 'bowenisthebest.sqf', 'briefcases.sqf', 'BuildingSupply.sqf', 'bypass.dll', 'C+N.sqf', 'C1\compile\re.sqf', 'CE_Engine-v5.exe', 'CFF-Hook.dll', 'CFF-Hook.sqf', 'cheat.sqf', 'CheatDayZUniversal.exe', 'cheater.sqf', 'ChernoNuke.sqf', 'CheyTac.sqf', 'crawdaunt\crawdaunt.sqf', 'crinkly\keymenu.sqf', 'cset.sqf', 'custom.sqf', 'customizethis.sqf', 'Custom_folder\scrollmenu\ClicktoTp.sqf', 'D-DayZ.dll', 'd3d199.dll', 'dahR_E.sqf', 'DarkLight\rrr333.sqf', 'DarkLight\Stt3rtt.sqf', 'DayZ-Injector.dll', 'dayz-injector.sqf', 'DayZ-Injectorcrackedbyvovanre.exe', 'DayZ-Injectorv.0.2.2.exe', 'DayZ-Injectorv0.4.exe', 'DayzAIMESPShield.exe', 'DayZAimJunkies.exe', 'dayzcheat\lcc.exe', 'DayzHackv1.0.exe', 'Dayzinjector-byvovan.exe', 'DayZItemspawner.exe', 'DayZLegendZScripts\mah.sqf', 'DayZLegendZScripts\startMenu.sqf', 'DayZNavigator.exe', 'DayZPrivateAIM,MAP,WHv1.2.exe', 'DayZZ.exe', 'Dayz_Namalsk\HP.sqf', 'Dayz_Namalsk\menu.sqf', 'DayZ_Settings.txt', 'DCv3\dc.sqf', 'debug_console', 'decrypt.sqf', 'Deluxe.sqf', 'Deluxe_97\Deluxe.sqf', 'DemonicMenu\scr\startMenu.sqf', 'DemonicMenu\TM\STARTMENU.sqf', 'DevCon.pbo', 'dgasadsg_dasgadsg\hint.sqf', 'dll\0100100110\start.sqf', 'dll\0100100110\Starts.sqf', 'dll\activator_NR.exe', 'dll\BEBypass.dll', 'dll\bypass.dll', 'dll\D-DayZ.dll', 'dll\DayZZ.exe', 'dll\epochMain.sqf', 'dll\epoch\epochMain.sqf', 'dll\GiveItTheDLL.exe', 'dll\Hack-Dayz.exe', 'dll\HVMRuntm.dll', 'dll\infiSTAR.dll', 'dll\infiSTAR_[www.unknowncheats.me]_.dll', 'dll\inject.bat', 'dll\MedMen.exe', 'dll\MyHack.dll', 'dll\NR.exe', 'dll\Project1_[www.unknowncheats.me]_.exe', 'dll\runme.dll', 'dll\spawner.dll', 'dll\SpawnTool.exe', 'dll\ss3.dll', 'dll\VGLoader.exe', 'dll\vgupdater.exe', 'DMR.sqf', 'Douggem_Beats_Infistar.dll', 'Douggem_beats_infistar_2.1.dll', 'Douggem_beats_infistar_2.1_[www.www.unknowncheats.me]_.dll', 'Douggem_Beats_Infistar_2.2.dll', 'Douggem_Beats_Infistar_2.2_[www.www.unknowncheats.me]_.dll', 'Douggem_Beats_Infistar_[www.www.unknowncheats.me]_.dll', 'drhack.dll', 'drhack.exe', 'Dta\nom.sqf', 'DZ\functions\initFunctions.sqf', 'EASYTM\start.sqf', 'ElektroNuke.sqf', 'EmptyDll.dll', 'epoch.sqf', 'epoch2.sqf', 'epoch\epochMain.sqf', 'epoch\targetall\fuckserver.sqf', 'esp.sqf', 'ESP\esp_TEST.sqf', 'esp_TEST.sqf', 'exec.sqf', 'execl33t.sqf', 'ExecMe.sqf', 'executev4.sqf', 'Expansion\0100100110\start.sqf', 'Expansion\0100100110\Starts.sqf', 'Expansion\activator_NR.exe', 'Expansion\Addons\ui_addons.pbo', 'Expansion\beta\dll\RayHook.dll', 'Expansion\D-DayZ.dll', 'Expansion\DayZZ.exe', 'Expansion\epochMain.sqf', 'Expansion\epoch\epochMain.sqf', 'Expansion\GiveItTheDLL.exe', 'Expansion\Hack-Dayz.exe', 'Expansion\HVMRuntm.dll', 'Expansion\infiSTAR.dll', 'Expansion\infiSTAR_[www.unknowncheats.me]_.dll', 'Expansion\inject.bat', 'Expansion\MedMen.exe', 'Expansion\NR.exe', 'Expansion\Project1_[www.unknowncheats.me]_.exe', 'Expansion\Project1_[www.unknowncheats.me]_.exel', 'Expansion\runme.dll', 'Expansion\spawner.dll', 'Expansion\SpawnTool.exe', 'Expansion\ss3.dll', 'Expansion\VGLoader.exe', 'Expansion\vgupdater.exe', 'explode.sqf', 'explode_all.sqf', 'Exta_files\scrollMain.sqf', 'FABISDayZLauncher.exe', 'FinisTxTMenu\cumpile\dahR_E.sqf', 'FinisTxTMenu\MainFile.sqf', 'fixed.exe', 'freddiesexternalmenuv8\freddies_active.sqf', 'freddiesexternalmenu\freddies_active.sqf', 'gc_menu\starten.sqf', 'gc_menu\uitvoeren.sqf', 'getfile.sqf', 'gible.sqf', 'gible\gible.sqf', 'gible\tp.sqf', 'giveesp.sqf', 'GiveItTheDLL.exe', 'gluemenu.sqf', 'GM_Start.sqf', 'God.sqf', 'GodMode.sqf', 'Godmode1.sqf', 'gp.sqf', 'Gr8iSgAy\Grt333.sqf', 'Grt333.sqf', 'Hack-Dayz.exe', 'hack.sqf', 'HackMenu.exe', 'hangender\start.sqf', 'Heal.sqf', 'hello.sqf', 'help.sqf', 'hidden.exe', 'HideFromAdmins.sqf', 'hoen\compile\re.sqf', 'hoen\sttart.sqf', 'HVMRuntm.dll', 'IAmmo.sqf', 'IC_Script.sqf', 'infiSTAR.dll', 'infiSTAR.sqf', 'infiSTAR_BLACK\Startup.sqf', 'infiSTAR_chewSTAR_Menu\all_misc\nukes\nuke.sqf', 'infiSTAR_chewSTAR_Menu\infiSTAR_chewSTAR.sqf', 'infiSTAR_chewSTAR_Menu\scrollmenu\addweapon.sqf', 'infiSTAR_Confin3d_edit\infiSTAR.sqf', 'infiSTAR_Confin3d_edit\startup.sqf', 'infiSTAR_EIGHT\startup.sqf', 'infiSTAR_GOLD\Startup.sqf', 'infiSTAR_Menu\setup\startup.sqf', 'infiSTAR_NEW\Startup.sqf', 'infiSTAR_SEVEN\startup.sqf', 'infiSTAR_SSH\setup\startup.sqf', 'infiSTAR_SSH\startup.sqf', 'infiSTAR_[www.unknowncheats.me]_.dll', 'initFunctions.sqf', 'inject.bat', 'Injector.exe', 'invisible.sqf', 'iRap3.sqf', 'iRape\iRap3.sqf', 'iRaPe\iRaP321.sqf', 'i_n_f_i_S_T_A_R.sqf', 'i_n_f_i_S_T_A_R___Menu\list.sqf', 'i_n_f_i_S_T_A_R___Menu\setup\scrollmenu.sqf', 'jestersMENU\[email protected]', 'JHAction.sqf', 'jh\Action.sqf', 'JM3.png', 'JM3.sqf', 'JME.sqf', 'JxMxE.sqf', 'kenhack\alltome.sqf', 'kenhack\SM\AH6X_DZ.sqf', 'kenhack\veshi.sqf', 'KillDestroy.sqf', 'l33tH4o0r\Run.sqf', 'l33tH4x0or\execl33t.sqf', 'l33tH4x0or\l33tKey.sqf', 'l33tH4x0or\L33TMenu.sqf', 'l33tH4x0or\Run.sqf', 'l33tKey.sqf', 'l33tMoney.sqf', 'lando3sp.sqf', 'lcc.exe', 'ldr.cnf', 'localBox.sqf', '[email protected]', 'LoganNZL\[email protected]', 'LoganNZL\[email protected]', 'lol.sqf', 'lystoarma3\start.sqf', 'LY\start.sqf', 'M107.sqf', 'mah.sqf', 'MahMenuV2\compile\ESP.sqf', 'mahmenuv2\compile\n00k3.sqf', 'MahMenuV3\run.sqf', 'MahMenuV4\run.sqf', 'MAIN.sqf', 'MainFile.sqf', 'ManN00k3ByD4M4st3rFini.sqf', 'ManN0Cl1pFini.sqf', 'mapesp.sqf', 'MapHack.sqf', 'MarvTriple\MarvTripleFRAME.sqf', 'marv\MarvFRAME.sqf', 'marv\MARVremotet\MARVFrameScript.sqf', 'MedMen.exe', 'meme.sqf', 'menu.sqf', 'Menus\battleHIGH_Menu\startup.sqf', 'Menus\infiSTAR_SEVEN\startup.sqf', 'menu\initmenu.sqf', 'Menu\start.sqf', 'Menu\startup.sqf', 'Menu_Scripts\ChernoNuke.sqf', 'Menu_Scripts\menu\menu_generate.sqf', 'Missions\0100100110\start.sqf', 'Missions\0100100110\Starts.sqf', 'Missions\activator_NR.exe', 'Missions\D-DayZ.dll', 'Missions\DayZZ.exe', 'Missions\epochMain.sqf', 'Missions\epoch\epochMain.sqf', 'Missions\GiveItTheDLL.exe', 'Missions\Hack-Dayz.exe', 'Missions\HVMRuntm.dll', 'Missions\infiSTAR.dll', 'Missions\infiSTAR_SEVEN\startup.sqf', 'Missions\infiSTAR_SSH\startup.sqf', 'Missions\infiSTAR_[www.unknowncheats.me]_.dll', 'Missions\inject.bat', 'Missions\MedMen.exe', 'Missions\Menus\battleHIGH_Menu\startup.sqf', 'Missions\NR.exe', 'Missions\Project1_[www.unknowncheats.me]_.exe', 'Missions\runme.dll', 'Missions\spawner.dll', 'Missions\SpawnTool.exe', 'Missions\ss3.dll', 'Missions\VGLoader.exe', 'Missions\vgupdater.exe', 'Mizzle\exec.sqf', 'Mizzle\startup.sqf', 'MK\Scripts\startup.sqf', 'monky\start.sqf', 'Movinggun_GunMenu2\GM_Start.sqf', 'Movinggun_Origin_Pornhub\PornHub.sqf', 'Movinggun_Public\MP_Start.sqf', 'Moving_Gun_Menu\start.sqf', 'MPGH\INITMENU.sqf', 'MP_Start.sqf', 'MSSM\main.sqf', 'MSSM\seinahax.sqf', 'myscript.sqf', 'MyScripts\cargo.sqf', 'Mystic.sqf', 'new.sqf', 'NewDayZ.dll', 'News.sqf', 'newsbanner.sqf', 'Newscroll.sqf', 'new\spawnme\items\1oz.sqf', 'nightsuck.sqf', 'NovaHack.sqf', 'NR.exe', 'NUG.sqf', 'Nuke.sqf', 'NWAFNuke.sqf', 'ObamaDrone0.5.2.1.exe', 'oefexec.dll', 'Optix_DayZ_Auto.txt', 'OTHER\scripts\fly.sqf', 'PEWPEWPEWPEW.dll', 'ph4nt03ssp.sqf', 'ph4nt03xpl0de.sqf', 'ph4nt04mm0.sqf', 'ph4nt0911.sqf', 'ph4nt0b0mb.sqf', 'ph4nt0g0d.sqf', 'ph4nt0m3ss4g3.sqf', 'ph4nt0m4p.sqf', 'ph4nt0n00k3.sqf', 'ph4nt0sh13ld.sqf', 'ph4nt0t3p3.sqf', 'ph4nt0teleall.sqf', 'ph4nt0v3hg0d.sqf', 'Ph4nt0\ph4nt03ssp.sqf', 'Ph4nt0\ph4nt03xpl0de.sqf', 'Ph4nt0\ph4nt04mm0.sqf', 'Ph4nt0\ph4nt0911.sqf', 'Ph4nt0\ph4nt0b0mb.sqf', 'Ph4nt0\ph4nt0g0d.sqf', 'Ph4nt0\ph4nt0m3ss4g3.sqf', 'Ph4nt0\ph4nt0m4p.sqf', 'Ph4nt0\ph4nt0n00k3.sqf', 'Ph4nt0\ph4nt0sh131d.sqf', 'Ph4nt0\ph4nt0sh13ld.sqf', 'Ph4nt0\ph4nt0t3p3.sqf', 'Ph4nt0\ph4nt0teleall.sqf', 'Ph4nt0\ph4nt0v3hg0d.sqf', 'Ph4nt0\rrr333.sqf', 'Ph4nt0\St3rt.sqf', 'PickledMenu3.0\Scripts\ajmenu.sqf', 'players\egeg.sqf', 'playerTools.sqf', 'PRaZ\start.sqf', 'prep1308.sqf', 'Project1.exe', 'Project1_[www.unknowncheats.me]_.exe', 'public.sqf', 'Radar_NewR.exe', 'RayHook.dll', 'RDMTP.sqf', 'renamethis.sqf', 'RommelV1\Rexecv1.sqf', 'Ronnie\Startup.sqf', 'RooslahVeeSevan.sqf', 'round2\runthis.sqf', 'rr33.sqf', 'rr333.sqf', 'rrr333.sqf', 'RSTMU\scr\startMenu.sqf', 'run.sqf', 'runme.dll', 'Rusterl.exe', 'RustleSTAR_Menu\menu\initmenu.sqf', 'RustleSTAR_Menu\setup\startup.sqf', 'rus\mission_settings\create.sqf', 'safescripts\gm.sqf', 'Scintilla.dll', 'screen.sqf', 'scrFuckOffInfistar1\start.sqf', 'ScriptBasic.sqf', 'scriptloaderWarrock.exe', 'ScriptName.sqf', 'scripts\2dmap.sqf', 'Scripts\@Hak_script\1.GLAVNOYE\000.sqf', 'Scripts\activator_NR.exe', 'scripts\addweapon.sqf', 'Scripts\ajmenu.sqf', 'scripts\ammo2.sqf', 'Scripts\D-DayZ.dll', 'Scripts\darky.sqf', 'Scripts\different_AK\AKS-74Kobra.sqf', 'Scripts\ESP\esp_TEST.sqf', 'Scripts\exec.sqf', 'Scripts\explo.sqf', 'Scripts\explode.sqf', 'Scripts\explode_all.sqf', 'Scripts\GiveItTheDLL.exe', 'Scripts\GodMode.sqf', 'Scripts\Godmode1.sqf', 'Scripts\HVMRuntm.dll', 'Scripts\inject.bat', 'Scripts\list.sqf', 'Scripts\mah.sqf', 'Scripts\MedMen.exe', 'Scripts\menu.sqf', 'Scripts\Menu_Scripts\ChernoNuke.sqf', 'Scripts\Menu_Scripts\ElektroNuke.sqf', 'Scripts\Menu_Scripts\empty.sqf', 'Scripts\Menu_Scripts\newsbanner.sqf', 'Scripts\Menu_Scripts\NWAFNuke.sqf', 'Scripts\mpghmenu.sqf', 'scripts\new.sqf', 'Scripts\NR.exe', 'Scripts\Nuke.sqf', 'Scripts\Project1_[www.unknowncheats.me]_.exe', 'Scripts\runme.dll', 'Scripts\screen.sqf', 'Scripts\spawner.dll', 'Scripts\SpawnTool.exe', 'Scripts\ss3.dll', 'Scripts\start.sqf', 'Scripts\startmenu.sqf', 'Scripts\YoloMenuUpdatedv6.sqf', 'ScriptTelePlayer.sqf', 'scrollz\tp.sqf', 'scroll\startmain.sqf', 'scr\ahbypass.sqf', 'scr\Custommenu.sqf', 'scr\exec.sqf', 'scr\loadfile.sqf', 'scr\Run.sqf', 'scr\RunAH.sqf', 'scr\scr\keybinds.sqf', 'scr\startMenu.sqf', 'scr\Startup.sqf', 'scr\STrial.sqf', 'scr_wasteland\menu\initmenu.sqf', 'settings26\go.sqf', 'settings26\init.sqf', 'settings26\load.sqf', 'settings26\start.sqf', 'ShadowyFaze\exec.sqf', 'sigdumper.dll', 'sigdumper.exe', 'skriptexecuter2.exe', 'skriptexecuter2.ini', 'SlothCheats.sqf', 'SpackV2\NAVStart.sqf', 'spawner.dll', 'Spawner.exe', 'spawner\dll\GiveItTheDLL.exe', 'spawner\dll\inject.bat', 'spawner\dll\spawner.dll', 'spawner\Expansion\GiveItTheDLL.exe', 'spawner\Expansion\inject.bat', 'spawner\Expansion\spawner.dll', 'spawner\GiveItTheDLL.exe', 'spawner\inject.bat', 'spawner\Missions\GiveItTheDLL.exe', 'spawner\Missions\inject.bat', 'spawner\Missions\spawner.dll', 'spawner\Scripts\GiveItTheDLL.exe', 'spawner\Scripts\inject.bat', 'spawner\Scripts\spawner.dll', 'spawner\spawner.dll', 'SpawnTool.exe', 'ss3.dll', 'ssl3.dll', 'sstart.sqf', 'St3rt.sqf', 'start.sqf', 'startMenu.sqf', 'startup.sqf', 'startupMenu.sqf', 'stdafx.h', 'Supplys\BBstart.sqf', 'Supplys\giveloadout.sqf', 'tbb4malloc_bi.dll', 'TBM\compile\re.sqf', 'TBM\Run.sqf', 'Teleport.sqf', 'Templates_Settings.ini', 'testest.sqf', 'testestt.sqf', 'teststartup.sqf', 'Text3d.sqf', 'TheBatmanHackv2.6.exe', 'TimeDay.sqf', 'TM\666.sqf', 'TM\clearvar.sqf', 'TM\DemonicMenu.sqf', 'TM\keybind.sqf', 'TM\keymenu.sqf', 'TM\menu.sqf', 'TM\screen.sqf', 'TM\scripts\giveesp.sqf', 'TM\start.sqf', 'tm\starthack.sqf', 'TM\startmenu.sqf', 'TotalInjector.exe', 'TPH\menu.sqf', 'TPH\start.sqf', 'Ubu5Ukg3.sqf', 'uhx_menu_first_ed\menu\logoblue.paa', 'ui_addons\decrypt.sqf', 'UnlockCarDoor.sqf', 'V3\B1ND.sqf', 'V4Run.sqf', 'VehDelivery.sqf', 'vet@folder\[email protected]', 'VGLoader.exe', 'vgupdater.exe', 'vg\Custommenu.sqf', 'vg\exec.sqf', 'vg\Run.sqf', 'vg\RunAH.sqf', 'vg\Startup.sqf', 'vscripts\Startup.sqf', 'VXDAYZ.exe', 'Wedor.sqf', 'Whippymenu\activate.sqf', 'whippymenu\execute.sqf', 'Whippymenu\keybindfz.sqf', 'WhippyMenu\SqfFiles\destroyb.sqf', 'WhippyMenu\SqfFiles\esp.sqf', 'WhippyMenu\SqfFiles\night.sqf', 'WhippyMenu\SqfFiles\setviewdistance500m.sqf', 'WhippyMenu\SqfFiles\unlock.sqf', 'whippyv4\executev4.sqf', 'WhippyV4\execv4.sqf', 'WhippyV4\Keybindiezz.sqf', 'WhippyV4\WHRSupplies.sqf', 'whippy\execute.sqf', 'Whippy\playerTools.sqf', 'WiglegHacks\mainmenu.sqf', 'WipeS.sqf', 'wookie.sqf', 'wookiev5.sqf', 'wookie_wuat\start.sqf', 'wookie_wuat\startup.sqf', 'worm\sttart.sqf', 'WRMoney.sqf', 'wtfff.sqf', 'wuat.sqf', 'wuat\RUN.sqf', 'wuat\screen.sqf', 'wuat\screen2.sqf', 'wuat\Scripts.txt', 'wuat\scripts\runMagicaly.sqf', 'wuat\standalonemenu.sqf', 'wuat\start.sqf', 'wuat\start1.sqf', 'wuat\start3.sqf', 'wuat\[email protected]', 'X-ray.exe', 'Xenos.exe', 'Xenos64.exe', 'xoia24rfadfhw2\alishcahc.sqf', 'xTwisteDx\menu.sqf', 'YoloHack.dll', 'YoloMenu.sqf', 'YoloMenuUpdatedv6.sqf', 'yolo\startup.sqf', 'yolo\w4ssupYoloMenuv2.sqf', 'yolo\YoloMenuUpdatedv6.sqf', 'youtube.dll', 'Z1\Run.sqf', 'Z__i_n_f_i_S_T_A_R__Z\Run.sqf', '\dz\modulesDayZ\scripts\player_queued.sqf', '\hangender\start.sqf', '\LoganNZL\[email protected]', '\x_f\x_perframe.sqf', '\z\addons\ui_addons\decrypt.sqf', '001.sqf', '0100100110\start.sqf', '0100100110\Starts.sqf', '2dmap.sqf', '@Dayz_Namalsk\HP.sqf', '@Dayz_Namalsk\menu.sqf', '@Hak_script\1.GLAVNOYE\000.sqf', '@Hak_script\1.Teleport.sqf', '@mHlopchik\Menu_Scripts\menu\keybind\funmenu', '@mymod\Scripts\ajmenu.sqf', '@SPX\3b.sqf', '@SPX\SpawnWeapon.sqf', 'A2MenuV2\ExecME.sqf', 'A2MenuV2\MainFile.sqf', 'activator_NR.exe', 'addweapon.sqf', 'AimJunkies.exe', 'allover.dll', 'allover_[www.unknowncheats.me]_.dll', 'ammo2.sqf', 'Arma2OABattleyeBypass.exe', 'ArmA2OAHackUCReleasebyCriibyy.dll', 'ArmA2OAHackUCReleasebyCriibyy_[www.unknowncheats.me]_.dll', 'ArmA2OA_Extars\BB_menu_BB.sqf', 'ArmA2OA_Extras\ben_ex.sqf', 'ASM\startup.sqf', 'ASM\_for_keybinds\mystuff.sqf', 'AspireMenuv.0.5\ALLTEHSCRIPTS!\esp.sqf', 'AspireMenuv.0.5\ALLTEHSCRIPTS!\heal.sqf', 'battleHIGH_Menu\startup.sqf', 'BESecureJect.exe', 'BE\update.sqf', 'boooooooobies.sqf', 'bowenisthebest.sqf', 'CE_Engine-v5.exe', 'CFF-Hook.dll', 'CFF-Hook.sqf', 'CheatDayZUniversal.exe', 'cheater.sqf', 'ChernoNuke.sqf', 'crawdaunt\crawdaunt.sqf', 'crinkly\keymenu.sqf', 'cset.sqf', 'custom.sqf', 'customizethis.sqf', 'Custom_folder\scrollmenu\ClicktoTp.sqf', 'D-DayZ.dll', 'd3d199.dll', 'DayZ-Injector.dll', 'dayz-injector.sqf', 'DayZ-Injectorcrackedbyvovanre.exe', 'DayZ-Injectorv.0.2.2.exe', 'DayZ-Injectorv0.4.exe', 'DayzAIMESPShield.exe', 'DayZAimJunkies.exe', 'dayzcheat\lcc.exe', 'DayzHackv1.0.exe', 'Dayzinjector-byvovan.exe', 'DayZItemspawner.exe', 'DayZLegendZScripts\mah.sqf', 'DayZLegendZScripts\startMenu.sqf', 'DayZNavigator.exe', 'DayZPrivateAIM,MAP,WHv1.2.exe', 'DayZZ.exe', 'Dayz_Namalsk\HP.sqf', 'Dayz_Namalsk\menu.sqf', 'DayZ_Settings.txt', 'DCv3\dc.sqf', 'debug_console', 'decrypt.sqf', 'Deluxe.sqf', 'Deluxe_97\Deluxe.sqf', 'DemonicMenu\scr\startMenu.sqf', 'DemonicMenu\TM\STARTMENU.sqf', 'DevCon.pbo', 'dll\0100100110\start.sqf', 'dll\0100100110\Starts.sqf', 'dll\activator_NR.exe', 'dll\D-DayZ.dll', 'dll\DayZZ.exe', 'dll\epoch\epochMain.sqf', 'dll\GiveItTheDLL.exe', 'dll\Hack-Dayz.exe', 'dll\HVMRuntm.dll', 'dll\infiSTAR.dll', 'dll\infiSTAR_[www.unknowncheats.me]_.dll', 'dll\inject.bat', 'dll\MedMen.exe', 'dll\MyHack.dll', 'dll\NR.exe', 'dll\Project1_[www.unknowncheats.me]_.exe', 'dll\runme.dll', 'dll\spawner.dll', 'dll\SpawnTool.exe', 'dll\ss3.dll', 'dll\VGLoader.exe', 'dll\vgupdater.exe', 'drhack.dll', 'drhack.exe', 'EASYTM\start.sqf', 'ElektroNuke.sqf', 'EmptyDll.dll', 'epoch.sqf', 'epoch2.sqf', 'epoch\epochMain.sqf', 'epoch\targetall\fuckserver.sqf', 'esp.sqf', 'ESP\esp_TEST.sqf', 'esp_TEST.sqf', 'exec.sqf', 'Expansion\0100100110\start.sqf', 'Expansion\0100100110\Starts.sqf', 'Expansion\activator_NR.exe', 'Expansion\Addons\ui_addons.pbo', 'Expansion\beta\dll\RayHook.dll', 'Expansion\D-DayZ.dll', 'Expansion\DayZZ.exe', 'Expansion\epoch\epochMain.sqf', 'Expansion\GiveItTheDLL.exe', 'Expansion\Hack-Dayz.exe', 'Expansion\HVMRuntm.dll', 'Expansion\infiSTAR.dll', 'Expansion\infiSTAR_[www.unknowncheats.me]_.dll', 'Expansion\inject.bat', 'Expansion\MedMen.exe', 'Expansion\NR.exe', 'Expansion\Project1_[www.unknowncheats.me]_.exe', 'Expansion\runme.dll', 'Expansion\spawner.dll', 'Expansion\SpawnTool.exe', 'Expansion\ss3.dll', 'Expansion\VGLoader.exe', 'Expansion\vgupdater.exe', 'explode.sqf', 'explode_all.sqf', 'Exta_files\scrollMain.sqf', 'FABISDayZLauncher.exe', 'FinisTxTMenu\cumpile\dahR_E.sqf', 'FinisTxTMenu\MainFile.sqf', 'FinizMenuzV4\run.sqf', 'fixed.exe', 'freddiesexternalmenuv8\freddies_active.sqf', 'freddiesexternalmenu\freddies_active.sqf', 'gc_menu\starten.sqf', 'gc_menu\uitvoeren.sqf', 'GiveItTheDLL.exe', 'gluemenu.sqf', 'GodMode.sqf', 'Godmode1.sqf', 'Hack-Dayz.exe', 'HackMenu.exe', 'hangender\start.sqf', 'hidden.exe', 'hoen\compile\re.sqf', 'hoen\sttart.sqf', 'HVMRuntm.dll', 'infiSTAR.dll', 'infiSTAR.sqf', 'infiSTAR_BLACK\Startup.sqf', 'infiSTAR_chewSTAR_Menu\all_misc\nukes\nuke.sqf', 'infiSTAR_chewSTAR_Menu\infiSTAR_chewSTAR.sqf', 'infiSTAR_chewSTAR_Menu\scrollmenu\addweapon.sqf', 'infiSTAR_Confin3d_edit\infiSTAR.sqf', 'infiSTAR_Confin3d_edit\startup.sqf', 'infiSTAR_EIGHT\startup.sqf', 'infiSTAR_GOLD\Startup.sqf', 'infiSTAR_Menu\setup\startup.sqf', 'infiSTAR_NEW\Startup.sqf', 'infiSTAR_SEVEN\startup.sqf', 'infiSTAR_SSH\setup\startup.sqf', 'infiSTAR_SSH\startup.sqf', 'infiSTAR_[www.unknowncheats.me]_.dll', 'initFunctions.sqf', 'inject.bat', 'Injector.exe', 'invisible.sqf', 'i_n_f_i_S_T_A_R.sqf', 'i_n_f_i_S_T_A_R___Menu\list.sqf', 'i_n_f_i_S_T_A_R___Menu\setup\scrollmenu.sqf', 'JHAction.sqf', 'jh\Action.sqf', 'kenhack\alltome.sqf', 'kenhack\SM\AH6X_DZ.sqf', 'kenhack\veshi.sqf', 'l33tH4x0or\L33TMenu.sqf', 'lcc.exe', 'ldr.cnf', 'localBox.sqf', '[email protected]', 'LoganNZL\[email protected]', 'LoganNZL\[email protected]', 'lol.sqf', 'MapHack.sqf', 'MedMen.exe', 'Menus\battleHIGH_Menu\startup.sqf', 'Menus\infiSTAR_SEVEN\startup.sqf', 'Menu\start.sqf', 'Menu\startup.sqf', 'Menu_Scripts\ChernoNuke.sqf', 'Menu_Scripts\menu\menu_generate.sqf', 'Missions\0100100110\start.sqf', 'Missions\0100100110\Starts.sqf', 'Missions\activator_NR.exe', 'Missions\D-DayZ.dll', 'Missions\DayZZ.exe', 'Missions\epoch\epochMain.sqf', 'Missions\GiveItTheDLL.exe', 'Missions\Hack-Dayz.exe', 'Missions\HVMRuntm.dll', 'Missions\infiSTAR.dll', 'Missions\infiSTAR_SEVEN\startup.sqf', 'Missions\infiSTAR_SSH\startup.sqf', 'Missions\infiSTAR_[www.unknowncheats.me]_.dll', 'Missions\inject.bat', 'Missions\MedMen.exe', 'Missions\Menus\battleHIGH_Menu\startup.sqf', 'Missions\NR.exe', 'Missions\Project1_[www.unknowncheats.me]_.exe', 'Missions\runme.dll', 'Missions\spawner.dll', 'Missions\SpawnTool.exe', 'Missions\ss3.dll', 'Missions\VGLoader.exe', 'Missions\vgupdater.exe', 'MK\Scripts\startup.sqf', 'Moving_Gun_Menu\start.sqf', 'MSSM\main.sqf', 'MyScripts\cargo.sqf', 'Mystic.sqf', 'new.sqf', 'NewDayZ.dll', 'News.sqf', 'newsbanner.sqf', 'nightsuck.sqf', 'NovaHack.sqf', 'NR.exe', 'Nuke.sqf', 'NWAFNuke.sqf', 'ObamaDrone0.5.2.1.exe', 'oefexec.dll', 'Optix_DayZ_Auto.txt', 'OTHER\scripts\fly.sqf', 'PEWPEWPEWPEW.dll', 'PickledMenu3.0\Scripts\ajmenu.sqf', 'players\egeg.sqf', 'PRaZ\start.sqf', 'Project1.exe', 'Project1_[www.unknowncheats.me]_.exe', 'Radar_NewR.exe', 'RayHook.dll', 'renamethis.sqf', 'RommelV1\Rexecv1.sqf', 'Ronnie\Startup.sqf', 'RooslahVeeSevan.sqf', 'round2\runthis.sqf', 'RSTMU\scr\startMenu.sqf', 'run.sqf', 'runme.dll', 'Rusterl.exe', 'RustleSTAR_Menu\menu\initmenu.sqf', 'RustleSTAR_Menu\setup\startup.sqf', 'rus\mission_settings\create.sqf', 'safescripts\gm.sqf', 'Scintilla.dll', 'scrFuckOffInfistar1\start.sqf', 'ScriptBasic.sqf', 'scriptloaderWarrock.exe', 'ScriptName.sqf', 'scripts\2dmap.sqf', 'Scripts\@Hak_script\1.GLAVNOYE\000.sqf', 'Scripts\activator_NR.exe', 'scripts\addweapon.sqf', 'Scripts\ajmenu.sqf', 'scripts\ammo2.sqf', 'Scripts\D-DayZ.dll', 'Scripts\darky.sqf', 'Scripts\different_AK\AKS-74Kobra.sqf', 'Scripts\ESP\esp_TEST.sqf', 'Scripts\exec.sqf', 'Scripts\explo.sqf', 'Scripts\explode.sqf', 'Scripts\explode_all.sqf', 'Scripts\GiveItTheDLL.exe', 'Scripts\GodMode.sqf', 'Scripts\Godmode1.sqf', 'Scripts\HVMRuntm.dll', 'Scripts\inject.bat', 'Scripts\list.sqf', 'Scripts\mah.sqf', 'Scripts\MedMen.exe', 'Scripts\menu.sqf', 'Scripts\Menu_Scripts\ChernoNuke.sqf', 'Scripts\Menu_Scripts\ElektroNuke.sqf', 'Scripts\Menu_Scripts\empty.sqf', 'Scripts\Menu_Scripts\newsbanner.sqf', 'Scripts\Menu_Scripts\NWAFNuke.sqf', 'Scripts\mpghmenu.sqf', 'scripts\new.sqf', 'Scripts\NR.exe', 'Scripts\Nuke.sqf', 'Scripts\Project1_[www.unknowncheats.me]_.exe', 'Scripts\runme.dll', 'Scripts\screen.sqf', 'Scripts\spawner.dll', 'Scripts\SpawnTool.exe', 'Scripts\ss3.dll', 'Scripts\start.sqf', 'Scripts\startmenu.sqf', 'Scripts\YoloMenuUpdatedv6.sqf', 'ScriptTelePlayer.sqf', 'scrollz\tp.sqf', 'scroll\startmain.sqf', 'scr\ahbypass.sqf', 'scr\Custommenu.sqf', 'scr\exec.sqf', 'scr\Run.sqf', 'scr\RunAH.sqf', 'scr\scr\keybinds.sqf', 'scr\startMenu.sqf', 'scr\Startup.sqf', 'scr\STrial.sqf', 'scr_wasteland\menu\initmenu.sqf', 'settings26\go.sqf', 'settings26\init.sqf', 'settings26\load.sqf', 'settings26\start.sqf', 'ShadowyFaze\exec.sqf', 'sigdumper.dll', 'sigdumper.exe', 'skriptexecuter2.exe', 'skriptexecuter2.ini', 'spawner.dll', 'Spawner.exe', 'spawner\dll\GiveItTheDLL.exe', 'spawner\dll\inject.bat', 'spawner\dll\spawner.dll', 'spawner\Expansion\GiveItTheDLL.exe', 'spawner\Expansion\inject.bat', 'spawner\Expansion\spawner.dll', 'spawner\GiveItTheDLL.exe', 'spawner\inject.bat', 'spawner\Missions\GiveItTheDLL.exe', 'spawner\Missions\inject.bat', 'spawner\Missions\spawner.dll', 'spawner\Scripts\GiveItTheDLL.exe', 'spawner\Scripts\inject.bat', 'spawner\Scripts\spawner.dll', 'spawner\spawner.dll', 'SpawnTool.exe', 'ss3.dll', 'ssl3.dll', 'start.sqf', 'startMenu.sqf', 'startup.sqf', 'startupMenu.sqf', 'stdafx.h', 'Supplys\BBstart.sqf', 'Supplys\giveloadout.sqf', 'tbb4malloc_bi.dll', 'testest.sqf', 'testestt.sqf', 'teststartup.sqf', 'TheBatmanHackv2.6.exe', 'TM\666.sqf', 'TM\clearvar.sqf', 'TM\DemonicMenu.sqf', 'TM\keybind.sqf', 'TM\keymenu.sqf', 'TM\menu.sqf', 'TM\screen.sqf', 'TM\start.sqf', 'tm\starthack.sqf', 'TM\startmenu.sqf', 'TotalInjector.exe', 'Ubu5Ukg3.sqf', 'uhx_menu_first_ed\menu\logoblue.paa', 'ui_addons\decrypt.sqf', 'V3\B1ND.sqf', 'V4Run.sqf', 'VirusXD\virusxdmain.sqf', 'VGLoader.exe', 'vgupdater.exe', 'vg\Custommenu.sqf', 'vg\exec.sqf', 'vg\Run.sqf', 'vg\RunAH.sqf', 'vg\Startup.sqf', 'vscripts\Startup.sqf', 'VXDAYZ.exe', 'Whippymenu\activate.sqf', 'whippymenu\execute.sqf', 'Whippymenu\keybindfz.sqf', 'WhippyMenu\SqfFiles\destroyb.sqf', 'WhippyMenu\SqfFiles\esp.sqf', 'WhippyMenu\SqfFiles\night.sqf', 'WhippyMenu\SqfFiles\setviewdistance500m.sqf', 'WhippyMenu\SqfFiles\unlock.sqf', 'whippyv4\executev4.sqf', 'WhippyV4\execv4.sqf', 'WhippyV4\Keybindiezz.sqf', 'WhippyV4\WHRSupplies.sqf', 'whippy\execute.sqf', 'Whippy\playerTools.sqf', 'WiglegHacks\mainmenu.sqf', 'wookie_wuat\startup.sqf', 'WRMoney.sqf', 'wuat\RUN.sqf', 'wuat\screen.sqf', 'wuat\screen2.sqf', 'wuat\Scripts.txt', 'wuat\scripts\runMagicaly.sqf', 'wuat\standalonemenu.sqf', 'wuat\start.sqf', 'wuat\start1.sqf', 'wuat\start3.sqf', 'wuat\[email protected]', 'X-ray.exe', 'Xenos.exe', 'Xenos64.exe', 'xoia24rfadfhw2\alishcahc.sqf', 'xTwisteDx\menu.sqf', 'YoloHack.dll', 'YoloMenu.sqf', 'YoloMenuUpdatedv6.sqf', 'yolo\startup.sqf', 'yolo\w4ssupYoloMenuv2.sqf', 'yolo\YoloMenuUpdatedv6.sqf', 'youtube.dll', 'Z__i_n_f_i_S_T_A_R__Z\Run.sqf', '\z\addons\ui_addons\decrypt.sqf'

    ^^ My list of files from 1.0.5.1 infistar.

     

    Here is my list of variables as well:

    'A11', 'abcd', 'abcdefGEH', 'absol', 'actid1', 'activeITEMlist', 'activeITEMlistanzahl', 'actualunit', 'actualunit_vec', 'ad44234efdzsf', 'adadadad23444', 'adadawer24_1337', 'adadgvdthw54y64', 'adasdawer4w3r', 'adawdawe21', 'adawedr3q4r3w2qr4', 'adawredzfdsf', 'adddaaaaaaaaa', 'addedPlayers', 'addgun', 'AddPlayersToMap', 'adgnafgnasfnadfgnafgn', 'adminadd', 'adminAntiAggro', 'admincrate', 'AdminDialogList', 'adminESPicons', 'admingod', 'adminicons', 'adminKeybinds', 'adminlite', 'adminlitez', 'AdminLoadOK', 'AdminLoadOKAY', 'AdminLst', 'AdminPlayer', 'adminZedshld', 'admin_animate1', 'admin_d0', 'admin_dbclick_ori', 'admin_debug', 'Admin_Layout', 'Admin_Lite_Menu', 'admin_low_terrain', 'admin_toggled', 'admin_vehicleboost', 'adr4w5trsdef', 'ads2542345esfds', 'advertising_banner_infiSTAR', 'advert_SSH', 'aesp', 'aggron', 'AH_OFF_LOL', 'AimAssistUC', 'aimbott', 'aintNoAntiHackCatchMyVars', 'airborne_spawn_vehicle_infiSTAR', 'aiUnit', 'ALexc', 'allMrk', 'ALL_MAGS_TO_SEARCH', 'ALL_WEPS_TO_SEARCH', 'ALREADYRAN', 'alsonotakeybind', 'altstate', 'amm0', 'anti', 'antiAggro_zeds', 'antiantiantiantih4x', 'AntiAntiAntiAntiHax', 'ANTIHACKKICK', 'antihacklite', 'AntihackScrollwheel', 'antihax2', 'antiloop', 'ANTI_ANTI_HAX', 'ARGT_JUMP', 'ARGT_JUMP_a', 'ARGT_JUMP_d', 'ARGT_JUMP_s', 'ARGT_JUMP_w', 'ARGT_KEYDOWN', 'Armor1', 'arr1', 'asd34r253453453', 'asdasdasd', 'asdddddddddddad', 'Asdf', 'asdr432r5edfsad', 'asdsgxfvzv5345', 'asdw435r325efdsd', 'ASSPLUNGE', 'atext', 'atext_star_xa', 'Att4chm3nt', 'aw235resfzdfcs', 'aW5maVNUQVI_re_1', 'awdadr3q42', 'awde3q4erasd', 'awdet3465taddd', 'awer234rrsdfcsd', 'awrdw4355345sfs', 'Awwwinvisibilty', 'AzersMultiScript_Scripts', 'b', 'B1g_B3n_target', 'B3_Menu', 'B3_RapidFire_Toggle', 'B3_Ultima', 'B4ckp4cks', 'backpackitem_spawn', 'backpack_spawn', 'battleHIGH_vehpub', 'BBProEsp', 'BB_Menu_Fnc', 'BB_nofatigue', 'BB_Pr0_Esp', 'BCast', 'BensWalker', 'BigBenBackpack', 'BigFuckinBullets', 'biggies_menu_open', 'BIGM', 'BIS_fnc_3dCredits_n', 'BIS_MPF_remoteExecutionServer4', 'BIS_MPF_ServerPersistentCallsArray', 'bl4ck1ist', 'black1ist', 'blackhawk_sex', 'bleh', 'blfor', 'blfor2', 'blfor3', 'Blue_I_Color_LP', 'BlurExec', 'Bobsp', 'bombs', 'boolean_1', 'boomgoats', 'boost', 'bowen', 'Bowen_RANDSTR', 'bowonky', 'bowonkys', 'box', 'bp', 'bpmenu', 'BP_OnPlayerLogin', 'BTC_liftHudId', 'BTC_SganciaActionId', 'bulletcamon', 'byebyezombies', 'Bypass', 'b_loop', 'c0lorthem', 'Called', 'CALLRE', 'CALLRESVR', 'carepkg', 'carg0d', 'cargod', 'cargodv3', 'cargodz', 'ceozxignhazju', 'changebackpack', 'changeBITCHinstantly', 'changestats', 'ChangingBullets_xx', 'charmeleon', 'cheatlist', 'cherno', 'cherno_resident', 'cherno_resident_2', 'chute', 'cip', 'civ', 'Cl0th1ng', 'cockasdashdioh', 'colorme', 'color_black', 'cooldown', 'cpbLoops', 'cpLoopsDelay', 'cTargetPos', 'ctrl_onKeyDown', 'curPos', 'cursoresp', 'custom_clothing', 'cus_SPEED_DOWN', 'd121435rdsczcawddawdsf', 'd3245resfrsd', 'd45y6w45ytrdfragsrega', 'd4t365tearfsafgrg', 'da124q3easds', 'da342szvcxzcvx', 'dadsasdsada', 'damihakeplz', 'damikeyz_veryhawt', 'dance', 'DarkwrathBackpack', 'dark_speed', 'dasd324r245rdsfs', 'dawerdsczcdsf', 'dawr5wdfsf23', 'day', 'dayzforce_save', 'dayzforce_savex', 'dayzlogin3', 'dayzlogin4', 'DAYZ_CA1_Lollipops', 'DAYZ_CREATEVEHICLE', 'dayz_godmode', 'dbClicked', 'ddsfsdfv', 'DeadCell_AHBLACK', 'DeadCell_AH_fillRE', 'debugConsoleIndex', 'debug_star_colorful', 'delaymenu', 'DelaySelected', 'DELETE_THIS', 'derp123', 'DEV_ConsoleOpen', 'dfgjafafsafccccasd', 'dfgrgdrfgretg345t345', 'dfhfgkjjhkhjkdgfg', 'dgbfzhg5ey456w6s', 'distanceFromGround', 'diz_is_real__i_n_f_i_S_T_A_R', 'dklilawedve', 'DonorSkins', 'dontAddToTheArray', 'drawic', 'dropnear', 'dsagfgbdfhgsd', 'dsfsgfsfsdfsdf', 'dubky', 'Dwarden', 'D_AMEZ_COA', 'E3p', 'ealxogmniaxhj', 'ebay_har', 'eeeeeeewwwwwwwww', 'eExec_commmand', 'efr4243234', 'enamearr', 'entupautowalk', 'envi', 'epchDeleted', 'epochBackpack', 'epochExec', 'epochMapMP', 'epochRemoteNukeAll', 'epochTp', 'equalESP', 'equalGOD', 'eroticTxt', 'ESP', 'esp2ez', 'ESPEnabled', 'espfnc', 'espOn', 'espOn3', 'ESP_Count', 'ewrfdfcsf', 'executeglobal', 'executer', 'exstr', 'exstr1', 'Extasy', 'eyghrdfyh', 'E_X_T_A_S_Y_Atm', 'E_X_T_A_S_Y_Cash_1k_t', 'E_X_T_A_S_Y_Cash_a', 'E_X_T_A_S_Y_FuckUp_GunStore_a', 'E_X_T_A_S_Y_Init_Menu', 'E_X_T_A_S_Y_Keybinds', 'E_X_T_A_S_Y_LicenseDrive', 'E_X_T_A_S_Y_Menu_LOOOOOOOOOL', 'E_X_T_A_S_Y_M_E_N_U_funcs_inited', 'E_X_T_A_S_Y_Recoil', 'F0od_Dr1nk', 'f313131FukDaPolice1324e', 'Fanatic_InfiPass', 'fapcar', 'fapEsp', 'fapEspGroup', 'fapg0d', 'fapgod', 'fapLayer', 'fastwalk', 'fatguybeingchasedbyalion', 'fazelist', 'faze_fill', 'faze_funcs_inited', 'faze_getControl', 'faze_initMenu', 'fcukupstar', 'fddsjfakioiweurlkjs', 'fdsgdr42424', 'fdsgdr42424ZombieColor', 'feastge4rt636te5', 'fefq34tqtrafg', 'fesf4535teaf', 'fetg5e4ytdrg', 'few3t5364etsfg', 'ffafsafafsfsgol', 'fffffffffff', 'firstrun', 'First_PAGE', 'fixMenu', 'Flare', 'Flare1', 'Flare2', 'Flare3', 'Flare4', 'Flare5', 'Flare6', 'Flare7', 'Flare8', 'fnc_allunits', 'fnc_MapIcons_infiSTAR', 'fnc_temp', 'FND_fnc_select', 'FND_fnc_spawn_veh', 'FND_fnc_subs', 'fnx3', 'fn_esp', 'fn_filter', 'fn_genStrFront', 'fn_ProcessDiaryLink', 'font', 'footSpeedIndex', 'footSpeedKeys', 'forwardAndBackward', 'FOXBYPASS', 'fredtargetkill', 'friendlies', 'fryt5tytfshyfkj', 'fsdandposanpsdaon', 'fsdddInfectLOL', 'fsfgdggdzgfd', 'fT', 'fuckmegrandma', 'FUCKTONIC', 'FUK_da_target', 'func_execOnServer', 'fzhgdhhbzfhzfghz', 'g0d', 'g0dmode', 'Gashhey_ESP', 'gdzhzthtdhxthh6757', 'GearAdd', 'GearRemove', 'GetinPassenger', 'getrekt', 'getX', 'Get_in_D', 'gffffffffffffffh', 'gfYJV', 'ggggg', 'GGhakeplz', 'GGkeyz_veryhawt', 'GLASS911_Run', 'globalplaya', 'GlobalSleep', 'glueallnigga', 'gluemenu', 'gmadmin', 'gmdadmin', 'GMod', 'god', 'godall', 'godlol', 'GodLolPenis', 'GodMode', 'godmode_off', 'godmode_on', 'go_invisible_infiSTAR', 'gyjjgcjcj', 'gzgdghragfzdgvdz', 'G_A_N_G_S_T_A', 'Hack', 'hacks', 'Hack_Pos_Orig', 'haHaFuckAntiHakcsManIbypasDatShit', 'hangender', 'HaxSmokeOn', 'haxx0rlek', 'hax_toggled', 'HDIR', 'hdtrhyztyh', 'heal', 'heel', 'helpmenu', 'hfghfg', 'hgjghjfrdfeewrferrt43', 'HMDIR', 'hoenUSABLE', 'hostage', 'hotkeymenu', 'hovering', 'hoverPos', 'howMuchToGive', 'hthxhzhgcbcxvb', 'htjhytu6waqe3q45', 'htmlz', 'htmlzV4', 'htrukilojhkukvh', 'hub', 'HumanityVal', 'i', 'iaimon', 'iammox', 'iBeFlying', 'idonteven', 'igodokxtt', 'ihatelife', 'iluio9pilkgvuk', 'img', 'imhornyaf', 'inf3MMO', 'infammo', 'infAmmoIndex', 'infammook', 'infammoON', 'infiniteammo', 'infiSTARBLACK', 'infiSTARBOTxxx', 'infiSTAR_chewSTAR_dayz_1', 'infiSTAR_fillHax', 'infiSTAR_FILLPLAYER', 'infiSTAR_fillRE', 'infiSTAR_fill_Weapons', 'infi_STAR_code_stored', 'infi_STAR_exec', 'infi_STAR_output', 'inflan', 'infoe', 'inf_ammo_loop_infiSTAR', 'initarr', 'initarr2', 'initarr3', 'initre337', 'init_Fncvwr_menu_star', 'init_main', 'input_text', 'inSub', 'Intro', 'inv', 'invall', 'iRaPeclick', 'iRapeKiduKnow', 'iRaPezClick', 'iRape_iRap3u', 'IRCModule', 'isAdmin', 'isExecuted', 'isInSub', 'Isogay', 'isori', 'isRottatin', 'It3m5', 'itemmenu', 'items1', 'I_love_rustler_and_jet', 'i_t_s__m_e_o', 'j', 'jayRE', 'JayT3L3Click', 'JayT3L3Eclick', 'Jay_g0d_M0de', 'jizz', 'JJJJ_MMMM___EEEEEEE_INIT_MENU', 'JJMMEE_Swagger', 'jkh', 'JME_ANAL_PLOW', 'JME_deleteC', 'JME_has_yet_to_fuck_this_shit', 'JME_Keybinds', 'JME_KillCursor', 'JME_MENU_Sub', 'JME_menu_title', 'JME_M_E_N_U_hax_toggled', 'JME_M_E_N_U_initMenu', 'JME_OPTIONS', 'JME_Red', 'JME_Sub', 'JME_Tele', 'jopamenu', 'JxMxEsp', 'JxMxE_EBRP', 'JxMxE_Exec', 'JxMxE_GOD', 'JxMxE_Heal', 'JxMxE_hide', 'JxMxE_Infect', 'JxMxE_LifeCash500k', 'JxMxE_secret', 'JxMxE_TP', 'JxMxE_Veh_M', 'k', 'kanghaskhan', 'keybindings', 'keybindings_exec', 'keybindings_xxx', 'keybindloop', 'keybinds', 'keybindz', 'keyForward', 'keymenu', 'keyp', 'keypress', 'keypress_exec', 'keypress_xxx', 'keyspressed', 'key_combos_ftw', 'kickable', 'killme', 'kill_all_star', 'kk', 'kkk', 'kosmicisgod', 'kW_O_O_K_I_E_Go_Fast', 'l0l', 'l33tAllP', 'l33tBoxes', 'l33tCoin', 'l33tdistance', 'l33tDN', 'l33thtmlv1', 'l33thumanity', 'l33tJumenu', 'l33tMain', 'l33tMapESPLunsear', 'l33tSecurity', 'l33tv4html', 'lalf', 'lapras', 'lazy_ILHA_is_lazy', 'leftAndRight', 'lel', 'letmeknow', 'Lexstr', 'Lhacks', 'life_no_injection', 'Listw', 'list_wrecked', 'ljkluilufgdsgzgzdrf324', 'lkjhgfuyhgfd', 'Lmenu1', 'lmzsjgnas', 'loadmain', 'loadMenu', 'locdb', 'LOKI_GUI_Key_Color', 'lol', 'loldami', 'lolGG', 'loopfredtpyoutome', 'Lpic', 'LtToTheRacker', 'LuL1ee7FF1', 'LVMmenu_stored', 'ly5t1c', 'LYST1C_UB3R_L33T_Item', 'lystobindkeys', 'LystoDone', 'lystoKeypress', 'Lysto_Lyst', 'LY_GetObject', 'LY_Run', 'LY_Swagger', 'm0nky', 'M3d1c4l', 'magazines_spawn', 'magnet', 'magnetmenu', 'magnetomortal', 'mahcaq', 'main', 'MainMenu', 'MainScripts', 'MajorHageAssFuckinfBulletsDude', 'MakeRandomSpace', 'Malcars', 'malfly', 'Malvsm', 'manatee_craft_menu', 'mapclick', 'MapClicked', 'MapClickedPosX', 'mapEnabled', 'maphalf', 'mapm', 'mapopt', 'mapscanrad', 'mark', 'marker', 'markerCount', 'markeresp', 'markers', 'markerThread', 'markPos', 'mark_player', 'material', 'MathItem', 'MCheats_Clip_F', 'mehatingjews', 'melee_startAttack', 'menu', 'Menue_Vehicle', 'MenuInitLol', 'Menulocations', 'MENUTITLE', 'Menu_Init_Lol', 'Menu_I_Off_Color_LP', 'Menu_I_On_Color_LP', 'Menu_I_Run_Color_LP', 'menu_run', 'menu_toggle_on', 'Metallica_infiSTAR_hax_toggled', 'Metallica_vehicleg0dv3_infiSTAR', 'miltank', 'MiZ_Run', 'MiZ_Scripts', 'mk2', 'MMYmenu_stored', 'MM_150', 'MOD_EPOCH', 'mod_select', 'monkaiin', 'monkaiinsalt', 'monkey', 'monky', 'monkyintmenu', 'monkytp', 'Monky_funcs_inited', 'Monky_hax_dbclick', 'Monky_hax_toggled', 'Monky_initMenu', 'moptions', 'morph', 'morphm3', 'morphme', 'morphtoanimals', 'MouseUpEvent', 'move_forward', 'MoviNametmr2', 'MP_ESP_Var1esp', 'MP_ESP_Var1HudSize', 'MP_ESP_Var2HudCp', 'MP_ESP_Var2HudCv', 'MP_ESP_Var2HudDist', 'muk', 'murkrow', 'musekeys', 'MV', 'Mystic_ESP', 'my_anus_hurtz', 'MY_KEYDOWN_FNC', 'M_e_n_u_2', 'n0clip', 'name', 'namePlayer', 'nametagThread', 'Namey', 'napa', 'nb', 'nd', 'nec2', 'neo_throwing', 'newMessage', 'NienUntoten', 'night', 'nlist', 'nocollide', 'noctowl', 'norekoil', 'nukeDONEstar', 'nvg', 'nwaf', 'oaks', 'objMYPlayer', 'ohhpz', 'oighijkfcjloypysh', 'omgwtfbbq', 'onisinfiniteammobra', 'onKeyPress', 'Orange_I_Color_LP', 'ozpswhyx', 'p', 'P4nt0n4t0r_Ph4nt0', 'palkia', 'part88', 'passcheck', 'patharray', 'pathtoscrdir', 'pathtoscrdir3', 'pbx', 'PermDialogSelected', 'peter_so_fly_CUS', 'pfEpochTele', 'pfKeygen', 'pfnlist', 'pfPickPlayer', 'pfPlayerMonitor', 'pfPlayerMonitorMutex', 'pfPlayersToMonitor', 'pfScanUnits', 'pfselecteditem', 'pfshnext', 'pfshnmenu', 'pfShowPlayerMonitor', 'ph4nt0b0mb', 'ph4nt0Dayz', 'ph4nt0Epoch', 'Ph4nt0mz', 'Ph4nt0mzBomb', 'Ph4nt0mzBtbuildings', 'Ph4nt0mzBtmsg', 'Ph4nt0mzBtunits', 'ph4nt0mzClick', 'ph4nt0mzEclick', 'ph4nt0mzMsg', 'ph4nt0mzMsgHandle', 'ph4nt0mzParae', 'ph4nt0mzParau', 'ph4nt0mzWait', 'Ph4nt0n4t0r_Ph4nt0', 'Ph4nt0n4t0r_Ph4nt0mz', 'Ph4nt0n4t0r_ph4_t3hm4n', 'ph4nt0_j3susm0d3', 'ph4nt0_j3susm0d3D', 'Ph4nt0_jessus', 'pic', 'pidgeotto', 'pidgey', 'piloswine', 'pilot', 'planeGroup', 'playerDistanceScreen', 'playeresp', 'playericons', 'players', 'playershield', 'PlayerShowDistance', 'pList', 'pList_star_peter_cus', 'plrshldblckls', 'plrshldblcklst', 'pm', 'pnc', 'poalmgoasmzxuhnotx', 'poiuytfczsvtg', 'POLICE_IN_HELICOPTA', 'pos', 'possible', 'Proceed_3B', 'Proceed_BB', 'ProDayz', 'prore', 'Pro_RE', 'PSwap', 'ptags', 'pu', 'PVAH_AdminRequest', 'PVAH_AdminRequestVariable', 'PVAH_admin_rq', 'PVAH_AHTEMPBAN', 'PVAH_WriteLogRequest', 'PVAH_writelog_rq', 'PVDZ_AdminMenuCode', 'PVDZ_hackerLog', 'PVDZ_Hangender', 'PVDZ_SUPER_AdminList', 'PV_AdminMainCode', 'PV_AdminMenuCode', 'PV_AdminMenuCodee', 'PV_CHECK', 'PV_DevUlDs', 'PV_IAdminMenuCode', 'PV_TMPBAN', 'q', 'q25t3qttsdfaf', 'qodmotmizngoasdommy', 'qofjqpofq', 'qopfkqpofqk', 'quake', 'qwak', 'R3m0te_RATSifni', 'raichu', 'rainbowbitch', 'RAINBOWREMEXECVEH', 'rainbowTarget', 'rainbowTarget1', 'rainbowTarget2', 'rainbowTarget3', 'rainbow_var', 'RandomEx', 'rangelol', 'ratingloop_star', 'rdfor', 'rdfor2', 'rdfor3', 'rdgfdzgzrfgr', 'recon', 'REdasfsfwef', 'refreshPlayers', 'reinit', 'rekted', 'rem', 'Remexec_Bitch', 'removegrass', 'Repair', 'RepairIT', 'returnString_z', 're_loop', 'RGB', 'rgyehgdrfhg', 'rspwn', 'runHack', 'runonce', 'rustlinginit', 'r_menu', 'saddaaaaaaaadd23', 'sandshrew', 'sandslash', 'sbp', 'sbpc', 'sceptile15', 'sceptile27', 'sceptile279', 'sCode', 'Script', 'scrollAim', 'scrollinit', 'scrollmenu', 'scrollPlayerlist', 'scroll_m_init_star', 'sdfwesrfwesf233', 'sdfxdcfs3', 'sdgff4535hfgvcxghn', 'sdsf45t3rsgfd', 'SelectDelay', 'selecteditem', 'selectedPlayer', 'sendMessage', 'sendmsg12', 'serverObjectMonitor', 'sexymenu_adds_Star', 'sfewsrw', 'sfg4w3t5esfsdf', 'sfsdfsdf4333', 'sfsefse', 'sgdfgzgdzfrgfdg', 'sgstgr4stwe4t', 'ShadowyFaz3VehZ', 'shazbot', 'shazbot1', 'shiftMenu', 'shnext', 'shnmenu', 'shrekt', 'shth654436tj', 'SimpleMapHackCount', 'skinmenu', 'skype_img', 'skype_option', 'slag', 'smissles', 'sosjfosjdfojsdfijojx', 'spawnitems1', 'spawnmenu', 'spawnvehicles_star', 'spawnweapons1', 'spawn_explosion_target_ebay', 'Speed_Hack_cus', 'spwnwpn', 'SpyglassFakeTrigger', 'sr3453sdfsfe33', 'srgte54y6rdgtrg', 'ssdfsdhsdfh', 'startmenu_star', 'Stats', 'stop', 'SuperAdmin_MENU', 'surrmenu', 'survcam', 'swaf', 'swmb', 'sxy_list_stored', 'T', 't0ggl3', 'T0ol_it3ms', 't123nt3SP', 'T3le', 'TAG_onKeyDown', 'take1', 'tangrowth27', 'targetnig3', 'TargetPlayer', 'teepee', 'telep', 'telet', 'teletoplr', 'tell_me_more_infiSTAR', 'TempDialogSelected', 'TentS', 'terrainchangintime', 'testIndex', 'theKeyControl', 'thermal', 'TheTargetedFuckingPlayerDude', 'thfile', 'thingtoattachto', 'thuytshujsr65uy', 'time', 'timebypass', 'timeday', 'title_dialog', 'Tit_Choppertimer', 'tlm', 'tlmadminrq', 'tMenu', 'tmmenu', 'togESP4', 'toggle', 'toggle_1', 'toggle_keyEH', 'toLower_new', 'Tonic_has_a_gaping_vagina', 'TPCOUNTER', 'tpTarget', 'tr3nHudCp', 'tr3nHudCv', 'tr3nHudDist', 'tr3ntHudSize', 'tr3ntitudsize', 'Tractor_Time', 'trap', 'trentesp', 'trentview', 'TTT5OptionNR', 'tw4etgetControl', 'tw4etinitMenu', 'typeVec', 'T_o_g_g_l_e_3B', 'T_o_g_g_l_e_BB', 'Ug8YtyGyvguGF', 'unitList', 'unitList_vec', 'unitsmenu', 'upAndDown', 'v', 'v3hA10', 'v3hAh1z', 'v3hAH64D', 'v3hAmbuBMP', 'v3hArmedLittleBird', 'v3hARMEDSUV', 'v3hATV', 'v3hAV8B2', 'v3hBlackhawk', 'v3hBRDM', 'v3hBTR60', 'v3hCamel', 'v3hChinook', 'v3hcrows', 'v3hF35B', 'v3hGMGJACKAL', 'v3hGPK', 'v3hGRAD', 'v3hHuey', 'v3hka52', 'v3hKA60', 'v3hLAV25', 'v3hM1A1', 'v3hMLRS', 'v3hStryker', 'v3hSUV', 'v3hT34', 'v3hT55', 'v3hT72', 'v3hT90', 'v3hVenom', 'v3hWildcat', 'v3hZU23', 'vars', 'veh', 'vehC', 'vehD', 'vehiclebro', 'vehicleg0dv3_BushWookie', 'vehiclegooov3ood_BushWookie', 'VehicleMarkers', 'VehicleMenue', 'vehicles1', 'vehiList', 'Veh_Spawn_Shitt', 'Veh_S_P_A_W_N_Shitt', 'vhnlist', 'ViLayer', 'viname', 'VL', 'vm', 'VMmenu_stored', 'vspeed', 'v_bowen', 'W00kieMenu_hax_toggled', 'W00kie_Init_Menu', 'W00kie_Pro_RE', 'W34p0ns', 'wadgrfgzrd', 'walkloc', 'walrein820', 'Wannahaveexplosivesforbullets', 'weapFun', 'weaponBoxeriino', 'weapons_spawn', 'wepmenu', 'whatisthis4', 'whippyhtmlz', 'whippyhtmlzV4', 'WhippyV4MAPESP_MA', 'WhippyV4_PPAdd', 'whitelist', 'wierdo', 'wiglegsuckscock', 'wl', 'Wookie', 'wookiewuat', 'Wookie_Car_RE', 'Wookie_Debug_Mon', 'Wookie_Exec', 'Wookie_Init_Menu', 'Wookie_List', 'Wookie_Pro_RE', 'work', 'wormBomb', 'wormBomb2', 'wormPos', 'wormRound', 'wpnbox', 'wtfyisthisshithere', 'wuat_fpsMonitor', 'W_0_0_K_I_E_Pro_RE', 'W_O_O_K_I_E_ANTI_ANTI_HAX', 'W_O_O_K_I_E_Car_RE', 'W_O_O_K_I_E_Debug_1337', 'W_O_O_K_I_E_Debug_Mon', 'W_O_O_K_I_E_FuckUp_GunStore_a', 'W_O_O_K_I_E_FUD_Car_RE', 'W_O_O_K_I_E_FUD_FuckUp_GunStore', 'W_O_O_K_I_E_FUD_M_E_N_U_initMenu', 'W_O_O_K_I_E_FUD_Pro_RE', 'W_O_O_K_I_E_M_E_N_U_funcs_inited', 'W_O_O_K_I_E_Pro_RE', 'W_O_O_K_I_E_RE', 'xdistance', 'xtags', 'xtags_star_xx', 'xyzaa', 'xZombieBait', 'y6sretysrt', 'yanma', 'yer652374rfd', 'ygurv1f2', 'yiukfligzsgargfrae', 'yo2', 'yo3', 'yo4', 'YOLO', 'yothefuckingplayerishere', 'youwantgodmodebro', 'zany', 'ZedProtect', 'ZeenatorrrClick', 'ZeenatorrrEclick', 'zeloBomb', 'zeloFpos', 'Zen4ddammo', 'Zenbandit', 'ZendoRepair', 'Zenheal', 'Zenhero', 'zeus', 'zeusmode', 'zeus_star', 'ZobieDistanceStat', 'zombieDistanceScreen', 'zombies', 'ZoombiesCar', '_Gashhey114'

     

  12. 3 minutes ago, th3c0re said:

    Why do u even try to talk this right just stop.......
    U making it only more shitty then u already do by allowing this....

    I am not trying to make anything right. I don't care if you think it is wrong. It is how I prevent hackers on my server :) I have literally, in that post, mentioned how to stop a majority of hackers. If you can't fix it, it's not my problem, it's yours.

  13. 5 minutes ago, th3c0re said:

    wtf ur the most retarded person to allow them test script to fuck up other servers... wtf is wrong u suppose to help other server and be a good guy not a crazy person...

    Good to know u allow it.....
    I think it's kinda weird u say u allow them to use and then they go to other server to fuck and cheat what a good exemple is your server....

    We as server owner suppose to stop them and help this community to STOP this kinda behavior not support.....

     

    And btw i don't see u post any filter to help the other servers to stop this......



     

    Pretty sure I have :) Just because I am not filtering your entire server for you, doesn't mean I am not helping. Filtering these can stop 99% of all hackers you will receive. The information is out there, including some very nice filters from the Epoch team in the default server files. Not hard to prevent, just takes a little reading :)

  14. Just now, LunatikCH said:

    Sure C: Same as it was with another server owner when there was the squad xml bug that crashed every server arma 2 and 3, suddenly all servers went to low pop, beside the one sending them dudes out went to highpop from nowhere

    - Pretty effective^^

    Like I said, if that happens, it isn't my problem. Think what you wish, it doesn't really matter to me - my server, I'll do with it as I please.

  15. 40 minutes ago, MrEnzO said:

    So I am getting this error when I trying to repack my server pbo. I can repack my mission pbo without any problem but not the server pbo.

     

     4:04:27 "dayz_preloadFinished reset"
     4:04:28 Warning Message: Script z\addons\dayz_server\init\server_functions.sqf not found
     4:04:28 Warning Message: Script z\addons\dayz_server\compile\server_spawnTraders.sqf not found
     4:04:28 BIKE: loading version 2.8.2 ...
     4:04:28 BIKE: adding bike to safe vehicle list...
     4:04:29 Error in expression <;
    _recompile = (count _this) > 0;


    if (BIS_fnc_init && !_recompile) exitwith {t>
     4:04:29   Error position: <BIS_fnc_init && !_recompile) exitwith {t>
     4:04:29   Error Undefined variable in expression: bis_fnc_init
     4:04:29 File ca\Modules\Functions\init.sqf, line 28
     4:04:31 Warning Message: Script z\addons\dayz_server\system\dynamic_vehicle.sqf not found
     4:04:31 Warning Message: Script z\addons\dayz_server\system\server_monitor.sqf not found
     4:04:31 Warning Message: Script z\addons\dayz_server\traders\chernarus11.sqf not found

     

    And the only thing I am doing is changing two true to false and how many mission WAI should spawn at the same time. All the changes is made in the WAI files.

    I have tried to repack it with PBO Manager, pbo viewer and the one thats comes with arma tools. with the same results.

     

    Has anybody run in to this problem and what did you do to overcome it?

    You need to make sure that you have the $PREFIX$ file in your server file before you pbo it - without it, all file paths wont work.

  16. 53 minutes ago, theduke said:

    yes i agree its too low.. Something is causing it and im not sure.  If going to try a few things from the research i've done, and if nothing ill create another post about that... dont want to mix up posts...

    Thanks for the advice

    The virtual garage script does not use server_publishVehicle2, it uses server_spawnVehicle. However, it appears that the server_spawnVehicle file has the correct line, so this shouldn't be happening. Have you made any recent changes? Because I feel that your thread would have blown up if this was happening to everyone else....

×
×
  • Create New...