Jump to content

ultranoob

Lifetime Donator
  • Content count

    18
  • Joined

  • Last visited

  • Days Won

    2

Report Comments posted by ultranoob


  1. When an error like 13:39:46 Scripting function 'bis_fnc_arsenal' is not allowed to be remotely executed occurs, it's because the CfgRemoteExec is set incorrectly.

     It needs to have something like this

           // List of script commands allowed to be sent from client via remoteExec
           class Commands
           {
                  /*your commands here*/
                  class YourCommand1 { allowedTargets=0; jip=0; } // can target anyone, sending jip is turned off (overrides settings in the Commands class)
                  class bis_fnc_arsenal { allowedTargets=0; jip=0; }
           };

    https://community.bistudio.com/wiki/Arma_3_CfgRemoteExec

     

    @Fitz

×