Advertisement
infiSTAR23

IMPORTANT TO BLOCK REMOTEEXEC

Sep 4th, 2015
2,070
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. /*
  2. You have to add this block in your description.ext of your Arma3 Server to block remoteExec!
  3.  
  4. NOT JUST EXILE MOD - EVERY ARMA3 SERVER NEEDS THIS!!!!
  5.  
  6. or hackers can use all these
  7.  
  8. https://community.bistudio.com/wiki/CfgRemoteExecCommands
  9. */
  10.  
  11. /*
  12. [16:42:29 | Edited 16:42:34] David Foltyn - Dwarden:
  13. White-lists defined in
  14. CfgRemoteExecCommands
  15. CfgRemoteExecFunctions
  16. are no longer supported !
  17. */
  18. //class CfgRemoteExecFunctions {mode=0;};
  19. //class CfgRemoteExecCommands {mode=0;};
  20.  
  21. // so have your CfgRemoteExec just like this:
  22. class CfgRemoteExec
  23. {
  24. class Functions
  25. {
  26. mode = 0;
  27. jip = 0;
  28. };
  29. class Commands
  30. {
  31. mode=0;
  32. };
  33. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement