Yes its a very nice tutorial indeed, but the idea behind it does not only apply to distributing score values. It can also be used to trigger any sort of event across the network. The "trick" to make this work is to have a script run on all machines which listens for a certain publicVariable. When it receives a value/command it resets the variable, *but only locally*! That is, it resets it only on the local machine, and not in the entire network (as it'd do if the value was PV'ed after the reset). After the reset, only a PV from another client will change the value of the variable, so that the next value/command can be received. Using this trick one can replicate local events on all network nodes with very little scripting effort.
I hope this makes sense; its the core of this tutorial really.