So you want the /bla command to show the value of the VCE variable named bla?
VCE variables are handled completely differently that normal variables, I can dig it up for you
function serverCmdbla(%client)
{
messageclient(%client,'',"Bla: " @ %client.brickgroup.vargroup.getVariable("Client","bla",%client));
}
Don't use VCE vars unless you absolutely need it to also be accessible by VCE. If you don't, do something like this
function serverCmdSetbla(%client,%bla)
{
%client.bla = %bla;
}
function serverCmdBla(%client)
{
messageclient(%client,'',"Bla: " @ %client.bla);
}