-
Notifications
You must be signed in to change notification settings - Fork 149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Debug watching for statements that run on a remote machine #658
Conversation
Any reason why |
Allows you to copy the text |
Ah! Nice. |
Debug watching for any client
Works great! Tested in local hosted MP. Amazing feature! |
Just need another remoteExec button to execute code on a specific client |
I agree, could replace the "Server Exec" with "Target Exec" as well, since server can be selected in the drop-down as well. |
This line is the gem of this PR: _this = ([nil] apply compile _this) select 0; It solves this annoying problem: _blub = {_blah = 1};
_blob = call _blub; // generic error in expression
systemChat str [_blob]; _blub = {_blah = 1};
_blob = [nil] apply _blub select 0;
systemChat str [_blob]; // [<null>] |
replace SERVER EXEC button with TARGET EXEC button
Adds addition statement watchers to the debug menu that run on the server
They exec on the server and return the results back to the client.
Requires
EnableTargetDebug= 1;
in description.ext or 3den