group.play(soundName, 0, mAudibleArea, new Time(), false, true);
}
protected void playRandomSoundFromCategory(String groupName, String categoryName) {
SoundGroup group = ClientSingletonRepository.getSound().getGroup(groupName);
group.play(getRandomSoundFromCategory(categoryName), 0, mAudibleArea, new Time(), false, true);
}
protected void playRandomSoundFromGroup(String groupName, String categoryName, long waitTimeInMilliSec) {
if (mWaitTime < System.currentTimeMillis() && Rand.rand(100) < 5) {
playRandomSoundFromCategory(groupName, categoryName);