Blockland Forums > Suggestions & Requests
VCE is missing. Fetch All Command.
Nibble:
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.
Mister Cheese:
--- Quote from: Nibble on November 15, 2013, 05:59:27 PM ---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.
--- End quote ---
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.
Swollow:
http://forum.returntoblockland.com/dlm/viewFile.php?id=4011
https://dl.dropboxusercontent.com/u/50959273/Blockland%20Private/Old-Addons/Event_Variables.zip
Lugnut:
note that the fetchall is client side
Swollow:
--- Quote from: Lugnut on November 15, 2013, 10:30:02 PM ---note that the fetchall is client side
--- End quote ---
--- Code: ---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);
}
}
--- End code ---