Jump to content
ka0s_

Blocked BIS_fnc_MP - Alternative?

Recommended Posts

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
[_var1, _var2] remoteExecCall ["SomeFunctionCall", -2, false];

 

Thanks, will try with this approach  ;)

Share this post


Link to post
Share on other sites

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

 

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

[[_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

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×