+=
Say you wanted to increase %client.hunger by 10.
Normally you would do this :
%client.hunger = %client.hunger + 10;
But instead you can do this :
%client.hunger += 10;
Both do the same thing, but option 2 is short and quick.
Same for variables, for example if you wanted to increase %client.hunger BY %foodInPack :
%client.hunger = %client.hunger + %foodInPack;
or
%client.hunger += %foodInPack;
+=