Local sounds functions in C Program

How to write a Local sounds functions in C Programming Language ?


Solution:
  1. // Local sounds functions
  2. void(entity player, string thesound) PlayClientSound =
  3. {
  4.     stuffcmd(player, "play ");
  5.     stuffcmd(player, thesound);
  6.     stuffcmd(player,"\n");
  7. };


Learn More :