home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 56 / CDPowerplay56Disc2.iso / demos / blade / data1.cab / Program_Executable_Files / Lib / NetSounds.py < prev    next >
Encoding:
Text File  |  2000-10-27  |  205 b   |  10 lines

  1. import netgame
  2.  
  3. def AddAnimSound(per,aniname, sonido, time):
  4.     if netgame.GetNetState() == 2:
  5.         netgame.AddSoundToClient(per.Name,aniname,sonido)
  6.     else:
  7.         per.AddAnimSound(aniname, sonido, time)
  8.  
  9.  
  10.