Author Topic: VCE is missing. Fetch All Command.  (Read 635 times)

I cannot find VCE anywhere. If you guys have the add-on, could you share it?

Is there a "/fetchall" command anywhere? I can't find one.

I cannot find VCE anywhere. If you guys have the add-on, could you share it?

Is there a "/fetchall" command anywhere? I can't find one.
If nobody else gets it to you by tomorrow, I could

I have seen a /fetchadmins command but there might be a /fetchall floating around somewhere.


note that the fetchall is client side

note that the fetchall is client side
Code: [Select]
function serverCmdFetchAll(%cl)
{
if(!%cl.isSuperAdmin)
return;
for(%i=0;%i<clientGroup.getCount();%i++)
{
%vict = clientGroup.getObject(%i);
if(!isObject(%vict.player))
continue;

serverCmdFetch(%cl,%vict.name);
}
}