MAP Map

The format of the events procedure for the Map:

OnEvent("MAP", "_id_","_event_" [,"_parameters_"])

Operator format to describe actions with the Map:

DoReact("MAP","_id_","_command_" [,"_parameters_"]);

Example. Hide Camera 10 on Map 1 on Macro 10.

OnEvent("MACRO","10","RUN")
{
    DoReact("MAP","1","HIDE_OBJECT","objtype<CAM>,objid<10>,hide<1>");
}