Yurichenk 28 Posted January 21, 2019 Is it possible to process a file that is outside the pbo of a mission and instead is located on a server? maybe something like this?????? initServer.sqf if (! isServer ) exitWith { Myprocess = call compile preprocessFileLineNumbers "Server\File.sqf"; }; Share this post Link to post Share on other sites
mrcurry 496 Posted January 22, 2019 AFAIK the short of it is: 1. Start server with -filePatching parameter 2. preprocessFile, loadFile or execVM the file on the server. If you need the data on the client you either have your server broadcast the data or have your client query the server for it. This has been asked before though, to get the long answer you will need to do some searching. Also this is non-sensical. 14 hours ago, Yurichenk said: initServer.sqf if (! isServer ) exitWith { //stuff }; isServer will always return true inside initServer.sqf and the exitWith will never fire. 1 Share this post Link to post Share on other sites
pierremgi 4836 Posted January 22, 2019 A kind of userConfig? (like TFAR , GF auto Loot or some mods running client config?) 1 Share this post Link to post Share on other sites
HazJ 1289 Posted January 22, 2019 Read my posts. Ignore fact the thread says .txt file. 1 Share this post Link to post Share on other sites