Page MenuHomeFeedback Tracker

Trying to call RemoteExec(Call) with 0 targets for func 'bis_fnc_advhint'. Maximum is 1000
New, NormalPublic

Description

Trying to call RemoteExec(Call) with 0 targets for func 'bis_fnc_advhint'. Maximum is 1000
 ➥ Context:     [] L8 (a3\modules_f_curator\CAS\functions\fn_moduleCAS.sqf)
    [] L110 (a3\modules_f_curator\CAS\functions\fn_moduleCAS.sqf)
    [] L25 (/temp/bin/A3/Functions_F/MP/fn_MP.sqf)
    [] L72 (/temp/bin/A3/Functions_F/MP/fn_MP.sqf)
    [] L78 (/temp/bin/A3/Functions_F/MP/fn_MP.sqf)

by [[["Curator","PlaceOrdnance"],nil,nil,nil,nil,nil,nil,true],"bis_fnc_advHint",objectcurators _logic] call bis_fnc_mp;

https://community.bistudio.com/wiki/objectCurators

would need:

if ((count (objectcurators _logic)) > 0) then {...};

Details

Severity
None
Resolution
Open
Reproducibility
N/A
Operating System
Windows 10 x64
Category
Scripting

Event Timeline

if (objectcurators _logic isNotEqualTo []) then { /* ... */ };

;-)