Skip to content

Instantly share code, notes, and snippets.

@commy2
Created August 9, 2017 19:34
Show Gist options
  • Save commy2/bf74c199070be8877de94c58fb6cbe8c to your computer and use it in GitHub Desktop.
Save commy2/bf74c199070be8877de94c58fb6cbe8c to your computer and use it in GitHub Desktop.
_this = 0;
systemChat str ["A", _this];
_this call {
_this = 1;
};
systemChat str ["B", _this];
call {
_this = 2;
};
systemChat str ["C", _this];
call {
private _this = 3;
};
systemChat str ["D", _this];
//0 0 2 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment