function ClientCmdMoveForward(%client)
{
moveforward(1);
}
function ClientCmdstopmoveforward(%client)
{
moveforward(0);
}
function servercmdtravel(%client)
{
commandToClient(%client,'moveForward',1);
}
function servercmdarrived(%client)
{
commandToClient(%client,'stopmoveForward',0);
}
Now that'll make the person who calls the cmd do it, right? Methinks yes.