mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
27 lines
473 B
Plaintext
27 lines
473 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Gundy
|
|
*
|
|
* Description:
|
|
* Resets interface when player character has changed (Zeus / remote control of AI units)
|
|
*
|
|
* Arguments:
|
|
* NONE
|
|
*
|
|
* Return Value:
|
|
* TRUE <BOOL>
|
|
*
|
|
* Example:
|
|
* [] call ace_bft_devices_fnc_onPlayerChanged;
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
|
|
// close any interface that might still be open
|
|
[] call FUNC(ifclose);
|
|
|
|
// remove msg notification
|
|
GVAR(rscLayerMailNotification) cutText ["", "PLAIN"];
|
|
|
|
true |