Jump to content

tehtrk

Member
  • Posts

    14
  • Joined

  • Last visited

Reputation Activity

  1. Like
    tehtrk reacted to insertcoins in Overpoch Lag   
    no lag that I know off, but the some of the cars (police mainly) lag the shit out of a server
  2. Like
    tehtrk reacted to Zupa in [DEVS] Universal remove/add Coins function   
    Bump updated:
     
    Both systems. Always succes when removing 0 coins.
  3. Like
    tehtrk reacted to Face in "Error in expression <ivate.sqf" error out of nowhere?   
    The most important hint is the variable name that is being called "undefined" (AdminList). If you examine your files to see where AdminList defined and used, you will see that it is defined in AdminList.sqf and used in Activate.sqf.
     
    You have AdminList.sqf inside an if (!isDedicated) block, and that is a good thing, because you only want to run client-sided admin tools on the client. The problem is that you have your other admin tool file (Activate.sqf) outside of the !isDedicated block, meaning that Activate.sqf is read by both the client and the server. Since the server never read AdminList.sqf due to the !isDedicated block, the server has no idea what the variable AdminList means and gives you the undefined variable message.
     
    TL;DR solution: You need to move the line:
    [] execVM "admintools\Activate.sqf"; right under the line where you call AdminList.sqf. This will prevent the server from ever reading Activate.sqf while the client continues to read it as normal.
  4. Like
    tehtrk got a reaction from crckdns in Plea for DevD   
    Thanks for all of your work on this project. I certainly don't want to add to your workload a lot by this request, and if I do, just ignore it. Could you add the unpacked dayz_server.pbo and mission pbo's to the project on GitHub as well? This would allow us to see the changes between commit and submit pull requests for changes made to the files contained in the pbo's. Thanks again.
  5. Like
    tehtrk reacted to nightmare in Web Based Tools ( PrivateHiveTools )   
    hi,
     
    a little update is out for epoch.., please visit the download section  ( update pack is not needed for new installation )
     
    ps. the trader editor is working correct with new epoch version.
×
×
  • Create New...