Jump to content

vbawol

Administrator
  • Posts

    2853
  • Joined

  • Last visited

  • Days Won

    244

Posts posted by vbawol

  1. also, Dwarden posted this 1.68 hotfix yesterday it may help:

    1.68.140925 new PROFILING branch with PERFORMANCE binaries, v00, server and client, windows/linux only 32-bit binaries
    + sync with 1.68.main branch
    1.68.140940 new PROFILING branch with PERFORMANCE binaries, v01, server and client, windows/linux only 32-bit binaries
    + fixed linux issues and some crashes
    note: 64-bit binaries in near future (not this week(end))
    details: https://forums.bistudio.com/forums/topic/160288-arma-3-stable-server-166-performance-binary-feedback/?do=findComment&comment=3164769

     

  2. These are the older epochserver.so files just in case the newer ones have issues:  https://github.com/EpochModTeam/Epoch/tree/experimental/Server_Install_Pack/@epochhive/legacy

    Also to use these you need to have this line in your startup script so that I can load the dependencies. https://github.com/EpochModTeam/Epoch/blob/experimental/Server_Install_Pack/epoch_linux_startscript.sh#L18

    I am working on a new static lib that should have less external dependencies, I must note that these newer extensions may not work currently.

  3. @phm if you are you still running a Linux Epoch server. I have some new extensions to test out. These are built using holy build box and should be compatible with a wider range of distros.

    32bit Linux:
    https://github.com/EpochModTeam/Epoch/blob/experimental/Server_Install_Pack/@epochhive/epochserver.so?raw=true
    64bit Linux:
    https://github.com/EpochModTeam/Epoch/blob/experimental/Server_Install_Pack/@epochhive/epochserver_x64.so?raw=true

    These binaries should hopefully work on pretty much any glibc-based x86 and x86-64 Linux distribution released in the last ten years.

    Debian >= 6
    Ubuntu >= 10.04
    Red Hat Enterprise Linux >= 5
    CentOS >= 5

    32bit ldd

    linux-gate.so.1 => (0xf7790000)
    libm.so.6 => /lib/libm.so.6 (0xf75ca000)
    libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xf75ba000)
    libc.so.6 => /lib/libc.so.6 (0xf745a000)
    /lib/ld-linux.so.2 (0x565d4000)

    64bit ldd

    linux-vdso.so.1 => (0x00007fffcd204000)
    libm.so.6 => /lib64/libm.so.6 (0x00007fa2b24f2000)
    libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00007fa2b22e2000)
    libc.so.6 => /lib64/libc.so.6 (0x00007fa2b1f82000)
    /lib64/ld-linux-x86-64.so.2 (0x000055796a4e5000)

     


  4. Run this server side to add 100 Crypto to all connected players:

    {[_x,100] call EPOCH_server_effectCrypto;} forEach allPlayers;


    Run this server side to remove 100 Crypto from all connected players:

    {[_x,-100] call EPOCH_server_effectCrypto;} forEach allPlayers;




    If you are looking to do something like this every X minutes you can use the Epoch Events scheduler by adding your own.

    1 . Make a folder called "custom" in your mission folder and inside that folder make new .sqf file with the name "customEvent.sqf" and place your desired code to run server side inside.
    2. Add the line below to your @EpochHive/epochconfig.hpp events[] array, just below this line: https://github.com/EpochModTeam/Epoch/blob/release/Server_Install_Pack/%40epochhive/epochconfig.hpp#L15

    { 1800, "custom\customEvent.sqf", 0 , 0},

    This will execVM your script every 1800 seconds (30 minutes).

     

  5.  

    20 hours ago, 82ndAB_Bravo17 said:

    The latest change in Experimental ( replacing the ; with the ||)  seems to have broken right-clicking to move things back into your inventory from eg the ground. You can still right-click to move things out of your inventory, but can't move them back in again except by dragging them in.

     
     
     
     

    UPDATE: b684 should fix this issue 

  6. This is usually caused by the players rating, By default, we hook the HandleRating event and set it to 0 while using the rating to test changes via the Karma var. This mainly to prevent the player being marked as an enemy that would cause this exact issue.
    https://community.bistudio.com/wiki/addRating
    https://community.bistudio.com/wiki/Arma_3:_Event_Handlers#HandleRating
    https://github.com/EpochModTeam/Epoch/blob/ae9d5fd6cd9cf884cc436a2ac5900a20b232e3f2/Sources/epoch_config/Configs/CfgEpochClient.hpp#L60

×
×
  • Create New...