Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.32 KB | None | 0 0
  1. -----------------------------------------------------------------
  2. -- @package Dozi
  3. -- @author Richard
  4. -- @build v1.4.0
  5. -- @release 07.28.2016
  6. -- @owner 76561198035732232
  7. -----------------------------------------------------------------
  8. -- BY MODIFYING THIS FILE -- YOU UNDERSTAND THAT THE ABOVE
  9. -- MENTIONED AUTHORS CANNOT BE HELD RESPONSIBLE FOR ANY ISSUES
  10. -- THAT ARISE. AS A CUSTOMER TO THE ORIGINAL PURCHASED COPY OF
  11. -- THIS SCRIPT, YOU ARE ENTITLED TO STANDARD SUPPORT WHICH CAN
  12. -- BE PROVIDED USING [SCRIPTFODDER.COM].
  13. -- ONLY THE ORIGINAL PURCHASER OF THIS SCRIPT CAN RECEIVE SUPPORT.
  14. -----------------------------------------------------------------
  15.  
  16. Dozi = Dozi or {}
  17. Dozi.Settings = Settings or {}
  18. Dozi.Language = Language or {}
  19.  
  20. -----------------------------------------------------------------
  21. -- [ FASTDL / WORKSHOP RESOURCES ]
  22. -----------------------------------------------------------------
  23. -- Set to false if you do not wish for the server to force
  24. -- players to download the resources/materials.
  25. -----------------------------------------------------------------
  26.  
  27. Dozi.Settings.WorkshopEnabled = true
  28. Dozi.Settings.WorkshopMountGMAEnabled = false
  29. Dozi.Settings.ResourcesEnabled = true
  30.  
  31. -----------------------------------------------------------------
  32. -- [ DEBUG MODE ]
  33. -----------------------------------------------------------------
  34. -- Enabling this will display special prints during
  35. -- particular processes which include resource / workshop
  36. -- mounting, special actions and more. Should really only enable
  37. -- this if you need it.
  38. -----------------------------------------------------------------
  39.  
  40. Dozi.Settings.DebugEnabled = false
  41.  
  42. -----------------------------------------------------------------
  43. -- Styles
  44. -----------------------------------------------------------------
  45.  
  46. -----------------------------------------------------------------
  47. -- Make sure you are NOT using more than one style at a time. Only
  48. -- mark one as TRUE and the rest should be FALSE of the three
  49. -----------------------------------------------------------------
  50.  
  51. Dozi.Settings.StyleDozi = false
  52. Dozi.Settings.StyleGTA = true
  53. Dozi.Settings.StyleResidentEvil = false
  54.  
  55. -----------------------------------------------------------------
  56. -- Timer
  57. -----------------------------------------------------------------
  58.  
  59. Dozi.TimerEnable = true -- Enable Timer?
  60. Dozi.Timer = 60 -- How long timer will be
  61.  
  62. -----------------------------------------------------------------
  63. -- Misc
  64. -----------------------------------------------------------------
  65.  
  66. Dozi.RespawnForce = false -- Force respawn?
  67. Dozi.KillCamKiller = true -- Show who killed you?
  68.  
  69. -----------------------------------------------------------------
  70. -- Fading
  71. --
  72. -- Dozi.Fadeout
  73. -- true = will enable fading out deathscreen after
  74. -- certain amount of time.
  75. --
  76. -- false = deathscreen will stay visable until player
  77. -- respawns.
  78. --
  79. -- Dozi.FadeoutTimer
  80. -- num = seconds that will pass before deathscreen starts
  81. -- to fade out.
  82. --
  83. -- If Dozi.TimerEnable = true
  84. -- screen will not start to fade until timer has
  85. -- counted down to zero and Dozi-FadeoutTimer is
  86. -- reached.
  87. --
  88. -- Example: Dozi.Timer = 10 + Dozi.FadeoutTimer = 5
  89. -- Screen will not start fading out until 15 seconds
  90. -- After the screen first appeared (or 5 seconds after
  91. -- the respawn timer counts to zero)
  92. --
  93. -- If Dozi.TimerEnable = false
  94. -- screen will not start to fade until screen has
  95. -- completely appeared and is done fading in.
  96. --
  97. --
  98. -----------------------------------------------------------------
  99.  
  100. Dozi.Fadeout = false -- Fade out screen after X amount of time?
  101. Dozi.FadeoutTimer = 5 -- How long of a pause Dozi will take before fading the screen out once it is fully faded in.
  102.  
  103. -----------------------------------------------------------------
  104. -- Style Sounds
  105. -----------------------------------------------------------------
  106.  
  107. Dozi.Settings.SoundDoziEnabled = true
  108. Dozi.Settings.SoundREEnabled = false
  109. Dozi.Settings.SoundGTAEnabled = true
  110.  
  111. Dozi.Settings.SoundDoziPath = "dozi/dozi_dozi_death.mp3"
  112. Dozi.Settings.SoundREPath = "dozi/dozi_re_death.mp3"
  113. Dozi.Settings.SoundGTAPath = "dozi/dozi_gta_death.mp3"
  114.  
  115. -----------------------------------------------------------------
  116. -- Resident Evil Style Settings
  117. -----------------------------------------------------------------
  118.  
  119. Dozi.Settings.RETextPrenoteColorR = 255
  120. Dozi.Settings.RETextPrenoteColorG = 255
  121. Dozi.Settings.RETextPrenoteColorB = 255
  122.  
  123. Dozi.Settings.RETextCauseColorR = 255
  124. Dozi.Settings.RETextCauseColorG = 255
  125. Dozi.Settings.RETextCauseColorB = 255
  126.  
  127. Dozi.Settings.RETextDiedColorR = 255
  128. Dozi.Settings.RETextDiedColorG = 0
  129. Dozi.Settings.RETextDiedColorB = 0
  130.  
  131. Dozi.Settings.RETextContinueColorR = 255
  132. Dozi.Settings.RETextContinueColorG = 50
  133. Dozi.Settings.RETextContinueColorB = 0
  134.  
  135. Dozi.Settings.RETextTimerColorR = 255
  136. Dozi.Settings.RETextTimerColorG = 50
  137. Dozi.Settings.RETextTimerColorB = 0
  138.  
  139. -----------------------------------------------------------------
  140. -- Dozy Style Settings
  141. -----------------------------------------------------------------
  142.  
  143. Dozi.Settings.DoziFXFade = false
  144. Dozi.Settings.DoziFXSobel = false
  145. Dozi.Settings.DoziFXGreyscale = true
  146. Dozi.Settings.DoziFXSharpen = false
  147.  
  148. Dozi.Settings.DoziIconKilledColorR = 255
  149. Dozi.Settings.DoziIconKilledColorG = 0
  150. Dozi.Settings.DoziIconKilledColorB = 0
  151.  
  152. Dozi.Settings.DoziIconKDColorR = 22
  153. Dozi.Settings.DoziIconKDColorG = 102
  154. Dozi.Settings.DoziIconKDColorB = 255
  155.  
  156. Dozi.Settings.DoziTextKDColorR = 255
  157. Dozi.Settings.DoziTextKDColorG = 255
  158. Dozi.Settings.DoziTextKDColorB = 255
  159.  
  160. Dozi.Settings.DoziTextRespawnColorR = 255
  161. Dozi.Settings.DoziTextRespawnColorG = 255
  162. Dozi.Settings.DoziTextRespawnColorB = 255
  163.  
  164. Dozi.Settings.DoziTextRespawnInColorR = 255
  165. Dozi.Settings.DoziTextRespawnInColorG = 255
  166. Dozi.Settings.DoziTextRespawnInColorB = 255
  167.  
  168. Dozi.Settings.DoziTextTimerColorR = 22
  169. Dozi.Settings.DoziTextTimerColorG = 102
  170. Dozi.Settings.DoziTextTimerColorB = 255
  171.  
  172. Dozi.Settings.DoziTextPrenoteColorR = 200
  173. Dozi.Settings.DoziTextPrenoteColorG = 200
  174. Dozi.Settings.DoziTextPrenoteColorB = 200
  175.  
  176. Dozi.Settings.DoziTextCauseColorR = 255
  177. Dozi.Settings.DoziTextCauseColorG = 50
  178. Dozi.Settings.DoziTextCauseColorB = 0
  179.  
  180. -----------------------------------------------------------------
  181. -- GTA Style Settings
  182. -----------------------------------------------------------------
  183.  
  184. Dozi.Settings.GTASeparatorShow = true
  185.  
  186. Dozi.Settings.GTASeperatorColorR = 255
  187. Dozi.Settings.GTASeperatorColorG = 255
  188. Dozi.Settings.GTASeperatorColorB = 255
  189.  
  190. Dozi.Settings.GTATextWastedColorR = 255
  191. Dozi.Settings.GTATextWastedColorG = 255
  192. Dozi.Settings.GTATextWastedColorB = 255
  193.  
  194. Dozi.Settings.GTATextRespawnColorR = 66
  195. Dozi.Settings.GTATextRespawnColorG = 170
  196. Dozi.Settings.GTATextRespawnColorB = 255
  197.  
  198. Dozi.Settings.GTATextTimerColorR = 255
  199. Dozi.Settings.GTATextTimerColorG = 255
  200. Dozi.Settings.GTATextTimerColorB = 255
  201.  
  202. Dozi.Settings.GTATextCauseColorR = 255
  203. Dozi.Settings.GTATextCauseColorG = 255
  204. Dozi.Settings.GTATextCauseColorB = 0
  205.  
  206. -----------------------------------------------------------------
  207. -- Resident Evil Style Settings
  208. -----------------------------------------------------------------
  209.  
  210. Dozi.Settings.RECustomFont = true
  211.  
  212. -----------------------------------------------------------------
  213. -- Graphical Effects
  214. -- --
  215. -- Can be used with or without styles
  216. -- The higher the # on BloodAmount and GlassAmount, the more
  217. -- of that effect there will be.
  218. -----------------------------------------------------------------
  219.  
  220. Dozi.Settings.BloodEnable = false
  221. Dozi.Settings.BloodAmount = 2
  222.  
  223. Dozi.Settings.GlassEnable = false
  224. Dozi.Settings.GlassAmount = 4
  225.  
  226. -----------------------------------------------------------------
  227. -- GUI Languages
  228. -----------------------------------------------------------------
  229.  
  230. Dozi.Language = {}
  231. Dozi.Language["you_were_killed_by"] = "You were killed by"
  232. Dozi.Language["you_are_dead"] = "You are dead."
  233. Dozi.Language["respawn"] = "Respawn!"
  234. Dozi.Language["continue"] = "Continue..."
  235. Dozi.Language["respawn_in"] = "Respawn in"
  236. Dozi.Language["gta_wasted"] = "Wasted"
  237. Dozi.Language["spectator"] = "Spectator"
  238.  
  239. -----------------------------------------------------------------
  240. -- Entity Languages
  241. -----------------------------------------------------------------
  242.  
  243. DoziListNPC = {}
  244. DoziListNPC["npc_combine_s"] = "Combine Soldier"
  245. DoziListNPC["npc_turret_ceiling"] = "Ceiling Turret"
  246. DoziListNPC["npc_turret_floor"] = "Floor Turret"
  247. DoziListNPC["npc_helicopter"] = "Combine Helicopter"
  248. DoziListNPC["npc_manhack"] = "Manhack"
  249. DoziListNPC["npc_rollermine"] = "Rollermine"
  250. DoziListNPC["npc_combinegunship"] = "Combine Gunship"
  251. DoziListNPC["npc_strider"] = "Strider"
  252. DoziListNPC["npc_antlion"] = "Antlion"
  253. DoziListNPC["npc_antlionguard"] = "Antlion Guard"
  254. DoziListNPC["npc_barnacle"] = "Barnacle"
  255. DoziListNPC["npc_zombie"] = "Zombie"
  256. DoziListNPC["npc_fastzombie"] = "Fast Zombie"
  257. DoziListNPC["npc_poisonzombie"] = "Poison Zombie"
  258. DoziListNPC["npc_fastheadcrab"] = "Fast Headcrab"
  259. DoziListNPC["npc_headcrab"] = "Headcrab"
  260. DoziListNPC["npc_poisonheadcrab"] = "Poison Headcrab"
  261. DoziListNPC["npc_alyx"] = "Alyx Vance"
  262. DoziListNPC["npc_barney"] = "Barney Calhoun"
  263. DoziListNPC["npc_breen"] = "Wallace Breen"
  264. DoziListNPC["npc_gman"] = "G-Man"
  265. DoziListNPC["npc_citizen"] = "Citizen"
  266. DoziListNPC["npc_dog"] = "Dog"
  267. DoziListNPC["npc_kleiner"] = "Kleiner"
  268. DoziListNPC["npc_eli"] = "Eli Vance"
  269. DoziListNPC["npc_odessa"] = "Odessa"
  270. DoziListNPC["npc_metropolice"] = "Metro Police"
  271. DoziListNPC["npc_mossman"] = "Judith Mossman"
  272. DoziListNPC["npc_vortigaunt"] = "Vortigaunt"
  273. DoziListNPC["npc_monk"] = "Father Grigori"
  274.  
  275. DoziListVehicle = {}
  276. DoziListVehicle["prop_vehicle_jeep"] = "A Run-Away vehicle"
  277. DoziListVehicle["prop_vehicle_airboat"] = "An Airboat"
  278.  
  279. DoziListWorld = {}
  280. DoziListWorld["prop_physics"] = "Prop"
  281. DoziListWorld["world"] = "Mean Mother Nature"
  282. DoziListWorld["gravity"] = "Weightless Force Called Gravity"
  283. DoziListWorld["worldspawn"] = "Weightless Force Called Gravity"
  284.  
  285. DoziListOther = {}
  286. DoziListOther["other"] = "kys fag"
  287. DoziListOther["trigger_hurt"] = "A Mysterious Cause - Maybe A Ghost?"
  288. DoziListOther["prop_vehicle_prisoner_pod"] = "A Prisoner Pod"
  289. DoziListOther["sent_streamradio"] = "An Unsellable Music Album by Justin Bieber"
  290. DoziListOther["dual_ammocrate"] = "A Box-O-Ammo"
  291. DoziListOther["gmt_instrument_piano"] = "A Poorly Tuned Piano"
  292. DoziListOther["edit_fog"] = "California Pollution"
  293. DoziListOther["edit_sky"] = "A Bad Episode of Global Warming"
  294. DoziListOther["edit_sun"] = "A Severe Wave of Solar Radiation"
  295. DoziListOther["sent_popcorn_thrown"] = "A Bucket of Buttery Goodness"
  296. DoziListOther["entityflame"] = "A Really Hot Fire"
  297. DoziListOther["grenade_helicopter"] = "A Helicopter Bomb"
  298. DoziListOther["combine_mine"] = "A Combine Mine"
  299. DoziListOther["player"] = "An Unrecognized Player"
  300. DoziListOther["fas2_40mm_frag"] = "40mm Frag"
  301.  
  302. -----------------------------------------------------------------
  303. -- Broadcasting System - Dont really need to touch
  304. -----------------------------------------------------------------
  305.  
  306. Dozi.BCColorServer = Color( 255, 255, 0 )
  307. Dozi.BCColorName = Color( 77, 145, 255 )
  308. Dozi.BCColorMsg = Color( 255, 255, 255 )
  309. Dozi.BCColorValue = Color( 255, 0, 0 )
  310. Dozi.BCColorValue2 = Color( 255, 166, 0 )
  311. Dozi.BCColorBind = Color( 255, 255, 0 )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement