ka0s_ 4 Posted February 22, 2016 Hey guys. So I'm trying to make some functions work, however I was just made aware of disabled BIS_fnc_MP, so I had to do something else to make it work. Example: [[_var1, _var2],"SomeFunctionCall",_var1,false,true] spawn BIS_fnc_MP; This would obviously work on any server that doesn't block BIS_fnc_MP, but how would I go around doing the same things with RemoteExecCall for example? Share this post Link to post Share on other sites
davidoss 552 Posted February 22, 2016 [_var1, _var2] remoteExecCall ["SomeFunctionCall", -2, false]; 1 Share this post Link to post Share on other sites
ka0s_ 4 Posted February 22, 2016 [_var1, _var2] remoteExecCall ["SomeFunctionCall", -2, false]; Thanks, will try with this approach ;) Share this post Link to post Share on other sites
davidoss 552 Posted February 22, 2016 My bad, forgot destination -2 is for every clients besides server. _var1 can be object, side,group, owner ID or array of this [_var1, _var2] remoteExecCall ["SomeFunctionCall", _var1, false]; Share this post Link to post Share on other sites
ka0s_ 4 Posted February 22, 2016 My bad, forgot destination [_var1, _var2] remoteExecCall ["SomeFunctionCall", _var1, false]; No worries, figured that myself :D Share this post Link to post Share on other sites
Arkensor 96 Posted February 22, 2016 [[_var1, _var2],"SomeFunctionCall",_var1,false,true] spawn BIS_fnc_MP; Why would you execute that one a server that blocks BIS_fnc_MP ... are you abusing these forums to get help with a hack ? That is against he forum rules mate ... However you still cant do anything with remoteexec, as 90% of the server's are smart enough to activate the whistelist for remotexec functions. So only their own functions can go through the network, and not some costom injected ones ... Regards Arkensor Share this post Link to post Share on other sites
ka0s_ 4 Posted February 22, 2016 Why would you execute that one a server that blocks BIS_fnc_MP ... are you abusing these forums to get help with a hack ? That is against he forum rules mate ... However you still cant do anything with remoteexec, as 90% of the server's are smart enough to activate the whistelist for remotexec functions. So only their own functions can go through the network, and not some costom injected ones ... Regards Arkensor Lets take an example, Exilemod (www.exilemod.com) blocks the use of BIS_fnc_MP, therefore I needed another way to call my functions. Many mods actually do this. :) Share this post Link to post Share on other sites