Guest User

Untitled

a guest
Jan 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. //Put this on the MOBSPAWNERS OnSpawn
  2.  
  3. //Variable for ent
  4. for (var i = 0; i < spawnedEntities.length; i++) {
  5. var ent = spawnedEntities[i];
  6. }
  7.  
  8.  
  9. //Wolves higher health setting
  10. ent.setMaxHealth(60)
  11.  
  12. //Sounds Variables
  13. attention = "sound.dog_attention"
  14. playerbreath = "sound.player_heavybreath"
  15.  
  16.  
  17. //Play Sounds
  18. sound.playSound3D(attention, x1, y1, z1)
  19. sound.playSoundUI(playerbreath)
Add Comment
Please, Sign In to add comment