OK so I hacked away at the file and this is what I came up with. Please don't laugh if it is horribly wrong, I don't do vbscipt.

Does this look like it might work?
[CODE]
function doCommand(command,client)
Dim vol,vola,volb
'This receives commands from MLServer for processing
'command = everything after | in the command
'client = name of the client that issued the command
'Use the incoming command to change variables, perform system actions, etc.
'This is how to set/change a variable in MLServer
'mlServer.setVariable "myPlugin","hello"
'This is how to send an MLServeCmd
'mlServer.cmdReceive "MLServeCmd.MLCommand|MLCmd~test"
vol = CInt(command) 'is this what comes in from the command line???
' if the hex of volz is less than 2 characters, add a leading zero
if len(vol) = 1 then : vol = "0" & CStr(vol)
'convert the values to digital from hex to set display variable
vola = Cint(left(vol,1))
volb = Cint(right(vol,1))
mlServer.setVariable "IntegraVol", CStr(vola) & CStr(volb)
'Uncomment the following line if you just want to control the main directly from here...
'mlServer.cmdReceive "MLServeCmd.MLGenericSerial|Send~02323330" & vola & volb & "03"
end function