<P>			DeusExRootWindow(rootWindow).hud.msgLog.PlayLogSound(Sound'tnmLogNoteAdded');
<P>		}
<P>
<P>		return newNote;
<P>	}
<P>
<P>	function SkillPointsAdd(int numPoints)
<P>	{
<P>		if (numPoints %GT% 0)
<P>		{
<P>			SkillPointsAvail += numPoints;
<P>			SkillPointsTotal += numPoints;
<P>
<P>			if ((DeusExRootWindow(rootWindow) != None) &&
<P>			    (DeusExRootWindow(rootWindow).hud != None) &&
<P>				(DeusExRootWindow(rootWindow).hud.msgLog != None))
<P>			{
<P>				ClientMessage(Sprintf(SkillPointsAward, numPoints));
<P>				DeusExRootWindow(rootWindow).hud.msgLog.PlayLogSound(Sound'tnmLogSkillPoints');
<P>			}
<P>		}
<P>	}
