Advertisement
szymski

Untitled

Mar 18th, 2015
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.92 KB | None | 0 0
  1. /*-----------------------------------------------------------
  2.     Nice DeathScreen
  3.    
  4.     Copyright © 2015 Szymon (Szymekk) Jankowski
  5.     All Rights Reserved
  6.     Steam: https://steamcommunity.com/id/szymski
  7. -------------------------------------------------------------*/
  8.  
  9. NDSConfig = { }
  10. local Config = NDSConfig
  11.  
  12. /*----------------------------------------------
  13.     Nice DeathScreen Configuration
  14. ------------------------------------------------*/
  15.  
  16. Config.DeathScreenStyle                     = 1                 // Type of DeathScreen
  17. // 0 - Gradient
  18. // 1 - Sleek styled boxes
  19.  
  20. Config.SleekBoxColor                        = Color(30, 30, 30) // Color of boxes if style is set to 1
  21.  
  22. Config.HideHUD                              = true              // Hides HUD when true
  23.  
  24. Config.RespawnDelay                         = 8                 // Time the player have to wait until respawn (in seconds)
  25.  
  26. Config.SmoothAnim                           = true              // When enabled, everything has smooth animations
  27.  
  28. Config.KillerCamera                         = true              // Moves camera to killer when true
  29.  
  30. /*--------------------------------
  31.     Player info
  32. ----------------------------------*/
  33.  
  34. Config.ShowKillerInfo                       = true              // Shows a box with informations about killer
  35. Config.ShowJob                              = true              // Shows killer's job (DarkRP only)
  36. Config.ShowHP                               = true              // Shows killer's health
  37. Config.ShowArmor                            = true              // Shows killer's armor
  38.  
  39. /*--------------------------------
  40.     Effects
  41. ----------------------------------*/
  42.  
  43. Config.BlackAndWhite                        = true              // When true, screen goes black and white
  44. Config.BlackScreen                          = false             // When true, screen goes black when you die and slowly comes visible
  45. Config.ScreenBlur                           = false             // Blurs screen
  46.  
  47. /*--------------------------------
  48.     Sounds
  49. ----------------------------------*/
  50.  
  51. Config.DefaultSound                         = false             // Determines if default death sound is played
  52. Config.StopSounds                           = false             // Stops all sounds when you die
  53. Config.SoundEffect                          = 25                // DSP sound effect. Set to 0 to disable
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement