@@ -636,6 +636,8 @@ void sqf::operators::ops_dummy_binary(sqf::runtime::runtime& runtime)
636636 runtime.register_sqfop (binary (4 , " setparticlecircle" , t_any (), t_any (), " " , [](sqf::runtime::runtime& runtime, value::cref l, value::cref r) -> value { runtime.__logmsg (logmessage::runtime::ErrorMessage (runtime.context_active ().current_frame ().diag_info_from_position (), " NOT IMPLEMENTED" , " setparticlecircle" )); return {}; }));
637637 runtime.register_sqfop (binary (4 , " foreachmember" , t_any (), t_any (), " " , [](sqf::runtime::runtime& runtime, value::cref l, value::cref r) -> value { runtime.__logmsg (logmessage::runtime::ErrorMessage (runtime.context_active ().current_frame ().diag_info_from_position (), " NOT IMPLEMENTED" , " foreachmember" )); return {}; }));
638638 runtime.register_sqfop (binary (4 , " setvelocitymodelspace" , t_any (), t_any (), " " , [](sqf::runtime::runtime& runtime, value::cref l, value::cref r) -> value { runtime.__logmsg (logmessage::runtime::ErrorMessage (runtime.context_active ().current_frame ().diag_info_from_position (), " NOT IMPLEMENTED" , " setvelocitymodelspace" )); return {}; }));
639+ runtime.register_sqfop (binary (4 , " setangularvelocitymodelspace" , t_any (), t_any (), " " , [](sqf::runtime::runtime& runtime, value::cref l, value::cref r) -> value { runtime.__logmsg (logmessage::runtime::ErrorMessage (runtime.context_active ().current_frame ().diag_info_from_position (), " NOT IMPLEMENTED" , " setangularvelocitymodelspace" )); return {}; }));
640+ runtime.register_sqfop (binary (4 , " setangularvelocity" , t_any (), t_any (), " " , [](sqf::runtime::runtime& runtime, value::cref l, value::cref r) -> value { runtime.__logmsg (logmessage::runtime::ErrorMessage (runtime.context_active ().current_frame ().diag_info_from_position (), " NOT IMPLEMENTED" , " setangularvelocity" )); return {}; }));
639641 runtime.register_sqfop (binary (4 , " animatebay" , t_any (), t_any (), " " , [](sqf::runtime::runtime& runtime, value::cref l, value::cref r) -> value { runtime.__logmsg (logmessage::runtime::ErrorMessage (runtime.context_active ().current_frame ().diag_info_from_position (), " NOT IMPLEMENTED" , " animatebay" )); return {}; }));
640642 runtime.register_sqfop (binary (4 , " findcover" , t_any (), t_any (), " " , [](sqf::runtime::runtime& runtime, value::cref l, value::cref r) -> value { runtime.__logmsg (logmessage::runtime::ErrorMessage (runtime.context_active ().current_frame ().diag_info_from_position (), " NOT IMPLEMENTED" , " findcover" )); return {}; }));
641643 runtime.register_sqfop (binary (4 , " vectorfromto" , t_any (), t_any (), " " , [](sqf::runtime::runtime& runtime, value::cref l, value::cref r) -> value { runtime.__logmsg (logmessage::runtime::ErrorMessage (runtime.context_active ().current_frame ().diag_info_from_position (), " NOT IMPLEMENTED" , " vectorfromto" )); return {}; }));
@@ -1070,4 +1072,4 @@ void sqf::operators::ops_dummy_binary(sqf::runtime::runtime& runtime)
10701072 runtime.register_sqfop (binary (4 , " enableaudiofeature" , t_any (), t_any (), " " ,[](sqf::runtime::runtime& runtime, value::cref l, value::cref r) -> value{ runtime.__logmsg (logmessage::runtime::ErrorMessage (runtime.context_active ().current_frame ().diag_info_from_position (), " NOT IMPLEMENTED" , " enableaudiofeature" )); return {}; }));
10711073 runtime.register_sqfop (binary (4 , " namedproperties" , t_any (), t_any (), " " ,[](sqf::runtime::runtime& runtime, value::cref l, value::cref r) -> value{ runtime.__logmsg (logmessage::runtime::ErrorMessage (runtime.context_active ().current_frame ().diag_info_from_position (), " NOT IMPLEMENTED" , " namedproperties" )); return {}; }));
10721074 runtime.register_sqfop (binary (4 , " createvehiclecrew" , t_any (), t_any (), " " ,[](sqf::runtime::runtime& runtime, value::cref l, value::cref r) -> value{ runtime.__logmsg (logmessage::runtime::ErrorMessage (runtime.context_active ().current_frame ().diag_info_from_position (), " NOT IMPLEMENTED" , " createvehiclecrew" )); return {}; }));
1073- }
1075+ }
0 commit comments