Jump to content

Endriex

Member
  • Posts

    38
  • Joined

  • Last visited

Posts posted by Endriex

  1. Hello everyone. I need help. I installed some scripts on my server and now i can't repair vehicles with toolbox. Further the gunner seats in helicopters doesn't work properly too :(

    I installed following scripts:

    - Custom Debug Monitor

    - Service Point

    - Custom Loading screen

    - DZAI, WAI, AI Missions/bots

    - Dayz Group Management

    - House, Street & Tower Lights

    - Vehicle Tow/ Helicopter lifting

    - WPD's Action Menu

    - Parts remover

     

    The next problem is too high frequency of spawning AI bots. When I spawn in Chernagorsk or Elektrozaworsk I can't do anything without gun and ammo. Bots are everywhere (10-15 bots). Anyone know how to reduce it ?

     


    I have next problem. 
    Traders in safe zones didn't work. I have clean RPT about traders but in game, when i will trade, the buttom is not showing and working. Zoom option with right mouse buttom didn't work too. 
    and the "repair vehicle" with toolbox is working but the buttom is hidden.
     
    I don't know what's going on :blink:
     

    Ehh... Again next problem :(

    Nobody can join my server. When I try to join the game i have downloading screen... and after that I hear environment but I still have downloading screen. 

    My RPT Again:

    http://pastebin.com/SSmytMRp

     

     

  2. Refresh.

     

    I have the same problem but different logs.

    When I'm running server in the middle of loading i get error like in topic and when i'm joining to lobby i get black screen and title "Wait for host" and my nickname in the upper right of corner... nothing more.

    I tried to do things above but nothing helps.

     

    Here is my RPT (I can't paste it to pastebin)

    http://speedy.sh/mCfjn/ArmA2OAServer.RPT

     

    Scan

    https://www.virustotal.com/pl/file/f96d1d3b926b9f92f8621ad0ced96ab4d152cc8aff29ef2f8ba92183012facaf/analysis/1424112907/

  3. Dude this is not the place for this ...this is clearly the wrong thread since you are missing the basic skills to load an external file...but i'll bite...you probably forgot a ' ; ' or something in your code...but without proper log file errors i cant be sure.

    Check your logs, located here:

    Server Log file: \arma 2 operation arrowhead\instance_11_Chernarus\arma2oaserver.RPT

    Client Log file: C:\Users\xxxxxxxx\AppData\Local\ArmA 2 OA\arma2oa.RPT

     

    First check your server log file when you get this error.....actually....delete both files first, (server file is located at the server, client file is in YOUR computer), then restart the server, join, get the error, close the server and then check the error in the server log...at the bottom of the file...there should be the error you are looking for...if you dont see anything there..then check your client log file...and report back.

     

    At the end i get this errors:

    21:04:24 "Res3tting B!S effects..."
    21:04:24 "HIVE: Starting"
    21:04:24 Cannot create non-ai vehicle usm_m998_w_4dr,
    21:04:24 Cannot create non-ai vehicle usm_case_mre,
    21:04:24 *** Player identity cannot be applied on person 2:16309 (Endriex) - player 2 not found 

    And I can't resolve this problem  :unsure:

     

    If it will be useful. There is BotInit.sqf:

    private ["_myGuy"];
    _myGuy = _this select 0;
    _myGuy setIdentity "Endriex";  // Check description.ext
    _myGuy setVariable ["USEC_BloodQty",5000,true];
    _myGuy setVariable ["CharacterID", "1", true];
    _myGuy setVariable ["playerUID", "13732553", true];
    _myGuy setVariable ["friendlies", ["111111"], true];  //friend to me
    
     
    /*
    while {alive _myGuy} do {	
    
    	
    	sleep 1;
    };
    */
    
  4. you only need the .sqf file not the .beidi for the server.

    You also need to 'run' the file from the dayz_server to be loaded on map.

     

    Open your dayz_server/init/server_functions.sqf and at the bottom of the file put your map file like this :

    [] execVM "\z\addons\dayz_server\custom_buildings\mymap.sqf";
    

    (Assuming inside the dayz_server folder you have a sub folder called custom_buildings and in there is your map .sqf  called mymap.sqf)

    Recombile the dayz_server into a pbo....and restart your server...

     

    All right. I did all what you wrote above but now when i try join my server i can't get in the game. All the time write "Requesting Authentication" and then "Retrying to Authenticate" and at the end "You must be close to a rock to mine ore". That's all  :blink:

  5.  

    Its not my map editor :P Its Arma's. I couldnt possibly be able to make that map look like this even if i wanted to :P

    The landscape is not flat. After you save the mission and grab the the .sqf file you have to (i think) add the vector up command to 'attach' them on the ground.

    On every road object add this to it:

    _this setVectorUp [0, 0, 1];

    so for example if you had:

    
    _vehicle_4614 = objNull;
    if (true) then
    {
      _this = createVehicle ["EntranceGate_EP1", [13395.145, 5733.0786, 2.1457672e-005], [], 0, "CAN_COLLIDE"];
      _vehicle_4614 = _this;
      _this setDir -178.35524;
      _this setPos [13395.145, 5733.0786, 2.1457672e-005];
    };
    

    Do it:

    
    _vehicle_4614 = objNull;
    if (true) then
    {
      _this = createVehicle ["EntranceGate_EP1", [13395.145, 5733.0786, 2.1457672e-005], [], 0, "CAN_COLLIDE"];
      _vehicle_4614 = _this;
      _this setDir -178.35524;
      _this setPos [13395.145, 5733.0786, 2.1457672e-005];
      _this setVectorUp [0, 0, 1];
    };
    

     

    Ok. It works. Thanks ;)

    But is there easy way ?

  6. Hi, i have difficult problem.

    3 days earlier I was adding following script:

    http://epochmod.com/forum/index.php?/topic/9366-howto-release-keep-your-plot-pole-after-you-die/?hl=%2Bplot+%2Bpole
    

    This script does not work, so I remowed it. 

    Next day I join the server and greater part of my house disappear :(

    And it is all the time when I reboot the server.

    Anyone know how to help?

     

     

×
×
  • Create New...