Advertisement
Guest User

Game sounds For Sa-mp By faff

a guest
May 28th, 2012
797
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.22 KB | None | 0 0
  1. /*Game Sounds By Faff */
  2. /*All sounds hosted by Faff (forever)  */
  3.  
  4. #include <a_samp>
  5.  
  6. /* Game sound effects */
  7. monsterkillsound(playerid) //Play sound: Monsterkill
  8. {
  9. PlayAudioStreamForPlayer(playerid, "http://www.ph-rp.webege.com/monsterkill.wav");
  10. }
  11. megakillsound(playerid)//Play sound: Megakill
  12. {
  13. PlayAudioStreamForPlayer(playerid, "http://www.ph-rp.webege.com/megakill.wav");
  14. }
  15. deathsound(playerid)//Play sound: *Screaming human*
  16. {
  17. PlayAudioStreamForPlayer(playerid, "http://www.ph-rp.webege.com/death.mp3");
  18. }
  19. godlikesound(playerid)//Play sound: Godlike
  20. {
  21. PlayAudioStreamForPlayer(playerid, "http://www.ph-rp.webege.com/godlike.wav");
  22. }
  23. holyshitsound(playerid)//Play sound: Holyshit
  24. {
  25. PlayAudioStreamForPlayer(playerid, "http://www.ph-rp.webege.com/holyshit.wav");
  26. }
  27. ownagesound(playerid)//Play sound: ownage
  28. {
  29. PlayAudioStreamForPlayer(playerid, "http://www.ph-rp.webege.com/ownage.wav");
  30. }
  31. firstbloodsound(playerid)//Play sound: First blood
  32. {
  33. PlayAudioStreamForPlayer(playerid, "http://www.ph-rp.webege.com/firstblood.wav");
  34. }
  35. scaryscreamsound(playerid)//Play sound: *scary screaming human*
  36. {
  37. PlayAudioStreamForPlayer(playerid, "http://www.ph-rp.webege.com/scaryscream.wav");
  38. }
  39. /* Game Sound Effects */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement