Jump to content

Blakedahlia

Member
  • Posts

    12
  • Joined

  • Last visited

Posts posted by Blakedahlia

  1. Okay, so I'm fairly new to this forum and I really wish someone had made a post like this before even though its really simple.

     

      has some of the stuff I'm going over, and also has some things that I don't so i suggest looking at that because it is necessary. FULLY READ BOTH POSTS

     

    Also, make sure you actually update your game!

     

    1. Backup your ENTIRE server folder, mine is named "Dayz Server (E)", and name the backup whatever you want as long as you are able to tell the difference "DAYZBACKUP" "EPOCHSTUFF" "ILYKEBOYZ" etc

        This includes everything that you use to maintain your server.

        Make sure you keep the original!

     

    2. Download both the Server AND Client files from DayzEpoch.com

     

    3. Unpack both of these and copy them to your original this will update your server.

     

     

        3a. DayZ_Epoch_Server_1.0.4_Release

     

        Copy straight over these folders;

        -@DayZ_Epoch_Server

        -Battleye

        -MPMissions

        -SQL

        -Tools

     

        Open these and copy contents

        -Binaries

        -Configs (The type of server you're running) MAKE SURE YOU GO IN HERE AND CHANGE WHAT YOU NEED TO

        -Keys

        

     

        3b. DayZ_Epoch_Client_1.0.4_Release_a1

     

        Copy "@DayZ_Epoch" straight over

     

     

    4. Now what I did was I ran the server like that, joined, and then backed out and shut it down.

        I dont know if you have to do this or not.

     

    5. Delete your old Database.dll (Epoch is now using new .Dll's instead.

     

    6. Add back in your mods one at a time and make changes if they don't work!

        

     

     

    This process seemed to be a lot faster than trying to go through every file and see what changed

     

     

     

    I should say again that I am new to this and I am not really experienced in this at all.

    If you see anything that is wrong PLEASE comment so people know what to do instead or what not to do.

    Also, I know this is a newbie thing so you don't have to tell me, just trying to help people so they have a more enjoyable experience.

     

     

    With the update some stuff has changed (clearly) so here are a few links that helped me find what I needed when I was adding back in my mods

     

    Plot pole radius 

     

    Killed a hacker moved (spawned vehicles exploding)

    EbayN00B's post in

     

    If you have any links that helped you please post those also!

     

     

     

     

     

     

     

     

  2. Just look athe official instructions, why do you need some video on how to edit text files that is stupid (sorry but I hate youtube videos to explain stuff like this, takes 5 times longer to follow them then just a list of text instructions haha):

    https://github.com/BluePhoenix175/DayZ-Admin-Tools-

     

    I'M MISSING LINES THAT IT SAYS I SHOULD HAVE

    It's hard to follow steps when they say i should have things that i don't.

    its like putting on new brakes and you're missing the pads.

  3. THIS IS FOR BLUEPHOENIX ADMIN TOOLS
     
     
    I'm assuming this is what is messing with what i posted about yesterday
     
     
    PLEASE help. This is the most frustrating thing ever.
    If you have any questions to me about my situation they are probably addressed in the post above
     
     
     
     
     
     
    The line you are looking for is either:
     
       "    if  (!(vehicle _x in _safety) && ((typeOf vehicle _x) != ""ParachuteWest"") ) then {" \n
     
    Change to / add as shown:
     
       "    if  (!(vehicle _x in _safety) && ((typeOf vehicle _x) != ""ParachuteWest"") && (vehicle _x getVariable ["Sarge",0] != 1) ) then {" \n
     
    Or the line looks like
     
       if(vehicle _x != _x  && !(vehicle _x in _safety) && (typeOf vehicle _x) != ""ParachuteWest"") then {" \n
     
    Change that to
     
       if(vehicle _x != _x && (vehicle _x getVariable ["Sarge",0] != 1) && !(vehicle _x in _safety) && (typeOf vehicle _x) != 
     
     
    in your server_objectUpdate.sqf (or however it's called in your server package) locate this:  (thanks sarge)
     
     
    if (!_parachuteWest) then {
        if (_objectID == "0" && _uid == "0") then {
            _object_position = getPosATL _object;
            diag_log format ["DEBUG: Deleting object %1 with invalid ID at [%2,%3,%4]", typeOf _object, _object_position select 0, _object_position select 1, _object_position select 2];
            _isNotOk = true;
        };
    };
     
    and change to
     
     
    if (!_parachuteWest) then {
        if (_objectID == "0" && _uid == "0" && (vehicle _object getVariable ["Sarge",0] != 1)) then {
            _object_position = getPosATL _object;
            diag_log format ["DEBUG: Deleting object %1 with invalid ID at [%2,%3,%4]", typeOf _object, _object_position select 0, _object_position select 1, _object_position select 2];
            _isNotOk = true;
        };
    };
     
     
     
     
     
     
    none of this is there for me??????
  4. So i have my server running fine, at least it was up until I installed the Blue Phoenix Admin Tools. 

    That is literally the only thing that I can see messing with the database.

    The problem is exactly as the topic title reads. I server restart and everything is back to how it was.

    I installed the admin tools, got them working (besides the vehicles blowing up when i get in them and the ESP/Tele not working)

    The problem might be that I didnt change the correct lines of code when installing it.

    http://doom56.com/dayz/admin-tool-1-7-7-1

    This link shows that I'm supposed to change certain lines that i can't seem to find!

    https://www.youtube.com/watch?v=Mil0hgZzvJo

    This is the video that I tried to follow in order to install it.

     

     

    This is the method i used to make my server if that helps at all 

    https://www.youtube.com/watch?v=O3vgAWLF-8M

     

    PLEASE don't let this get buried with no answers.

    Not getting vehicles or stuff in safes to save is literally driving me crazy 

     

    And also;

    Buildings that ive made within the game save (concrete walls, floors, basic epoch crafting)

    And vehicles bought from traders save but when i move them they go right back to the trader on restart.

    So, STUFF IS SAVING TO THE DB.(navicat) but certain things arent.

     

     

     

     

    thank you!

  5. Why doesn't the server download on Dayzepoch.com have an update for any of the instances (instance_11_Chernarus.. etc)?

    Mine has "DayZ Epoch Chernarus Server (1.0.2.4/103718)" as the default name. Will this affect anything or should i just carry on?

     

    In the config.cfg file under the instance****

    sorry, forgot to add that

×
×
  • Create New...