Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.51 KB | None | 0 0
  1. // Config of JumpStats by BorJomi
  2. // Version 2.42
  3.  
  4. // Players commands
  5.  
  6. // say /strafes - on/off statistics Strafes
  7. // say /showpre - on/off display prestrafe
  8. // say /ducks - on/off statistics ducks for multi cj
  9. // say /ljstats - on/off the main statistics
  10. // say /uqversion - show version
  11. // say /beam - on/off showing the trajectory of the jump
  12. // say /speed - on/off display of speed player
  13. // say /colorchat - on/off display of color in the chat messages from other players
  14. // say /ljsmenu - open the configuration menu
  15. // say /ljtop - open TOP10 menu
  16. // say /bhopwarn - on/off show message when you bhop prestrafe is fail
  17. // say /multibhop - on/off show multi bhop pre
  18. // say /duckspre - on/off display prestrafe after each duck
  19. // say /ljpre - on/off display prestrafe for LJ
  20. // say /failedge - on/off display jumpoff wehn failed without bolock
  21. // say /edge - on/off display jumpoff,block,landing
  22. // say /heigh - on/off display heigh
  23. // say /mylj - on/off myljtop menu
  24. // say /wpnlj - on/off weapon top menu
  25. // say /jof - on/off showing Jumpoff when press jump button
  26. // say /joftr - on/off Jumpoff trainer
  27. // say /blocktop - on/off block tops menu
  28. // say /jheigh - on/off showing jump heigh
  29. // say /istrafe - on/off InGame strafe stats
  30. // say /speedt - Big/Small Speed Type
  31.  
  32. // Admin command
  33.  
  34. // amx_reset_uqtops – reset all tops
  35.  
  36. // Cvars
  37.  
  38. // What should work when players connect to the server:
  39. // 0 = none
  40. // a = colorchat
  41. // b = stats
  42. // c = speed
  43. // d = showpre
  44. // e = strafe stats
  45. // f = beam
  46. // g = duck stats for mcj
  47. // h = shows message when your bhop prestrafe is failed
  48. // i = show multibhop pre
  49. // j = show prestrafe after duck
  50. // k = show lj prestrafe
  51. // l = show edge
  52. // m = show edge when fail (without block)
  53. // n = enable sounds
  54. // o = enable InGame strafe stats
  55. kz_uq_connect "bcdekln"
  56.  
  57. // Min distance
  58. kz_uq_min_dist 215
  59.  
  60. // Min distance (Ups bhop, MultiBhop, Real Ladder Bhop, Ducks Bhop, Ladder Jump)
  61. kz_uq_min_dist_other 120
  62.  
  63. // Max distance
  64. kz_uq_max_dist 290
  65.  
  66. // Showing info about block in ColorChat messages
  67. kz_uq_block_chat_show 1
  68. kz_uq_block_chat_min 1 - minimum block to show (block more then 0=good,1=pro,2=holy,3=leet,4=god distance cvars)
  69.  
  70. // Enable stats for admins only
  71. kz_uq_only_admins 0
  72.  
  73. // Enable stats for team (0=all,1=T,2=CT)
  74. kz_uq_team 0
  75.  
  76. // Enable cmd /speed for all team
  77. kz_uq_speed_allteam 1
  78.  
  79. // Allow highlighting after landing (1 = on, 0 = off; works for holy, leet and god distances)
  80. kz_uq_light 0
  81.  
  82. // Allow sounds (1 = on, 0 = off)
  83. kz_uq_sounds 1
  84.  
  85. // Allow doing ScreenShot if Player going in Top (not work with kz_uq_sql <1> and for map top)
  86. kz_uq_screenshoot 0
  87.  
  88. // Allow showing info about stats when you record demo
  89. kz_uq_demo_info 1
  90.  
  91. // How work Sql Module (1=SQL module enable, 0=disable)
  92. kz_uq_sql 0
  93.  
  94. // Enable/Disable Web Top (1=Enable,0=Disable) - if you want standart tops with sql module, turn of web mod
  95. kz_uq_web 0
  96.  
  97. // Options for Sql Module
  98. kz_uq_host "127.0.0.1"
  99. kz_uq_user "root"
  100. kz_uq_pass ""
  101. kz_uq_db "uq_jumpstats"
  102. // This Option used only in Showing Top(sql), change this if you use another url on you web server
  103. kz_uq_url "http://localhost/uq_jumpstats/index.php?type=lj&from_game=true"
  104. kz_uq_update_auth 1 - Update in DB Steam and Ip
  105.  
  106. // How to save Top10 (2 = steamid, 1 = Ip, 0 = name)
  107. kz_uq_top_by 0
  108.  
  109. kz_uq_save_top 1 - On/Off TOP10 (1 = on, 0 = off)
  110. kz_uq_maptop 1 - On/Off MapTop (1 = on, 0 = off)
  111. kz_uq_save_extras_top 1 - On/Off Extra Tops (1 = on, 0 = off)
  112. kz_uq_weapons_top 1 - On/Off Weapon Tops (1 = on, 0 = off)
  113. kz_uq_block_top 1 - On/Off Block Tops (1 = on, 0 = off)
  114. kz_uq_block_weapons 1 - On/Off Block Tops for other weapons (1 = on, 0 = off)
  115.  
  116. // Allow check to legal settings (1 = on, 0 = off)
  117. kz_uq_legal_settings 1
  118. kz_uq_fps 1 - (1=more than 100 FPS jump does not count, 0=count)
  119. kz_uq_bug_check 1 - Allow checking for bug distance
  120.  
  121. // Anti script(Beta)
  122. kz_uq_script_detection 1
  123. kz_uq_script_work 2 - antiscript works if player distance more then (0=good,1=pro,2=holy,3=leet,4=god distance)
  124. kz_uq_script_notify 1 - print messages to all people on server with scripter name
  125. kz_uq_script_punishment 1 - (0=nothing,1=kick,2=ban)
  126. kz_uq_ban_type 0 - (0=standart bans, 1=amxbans)
  127. kz_uq_ban_minutes 45 - ban time in minutes
  128. kz_uq_ban_authid 0 - (ban by 0=name,1=ip,2=steam)
  129.  
  130. // The prefix for all messages in chat
  131. kz_uq_prefix "UGC"
  132.  
  133. // How to set up a server by value sv_airaccelerate (Varible=xx, but var=0 reserved for 10aa, var=1 for 100aa)
  134. kz_uq_airaccelerate 10
  135.  
  136. // On/Off Showing stats with noslowdown
  137. kz_uq_noslowdown 0
  138.  
  139. // Max strafes (if players strafes>Max, stats doesnt shows)
  140. kz_uq_max_strafes 14
  141.  
  142. // Allow InGame Strafe Stats (laggy feature)
  143. kz_uq_istrafes 0
  144.  
  145. // Color Hud message statistics when you jump, in the RGB
  146. kz_uq_stats_red 0
  147. kz_uq_stats_green 255
  148. kz_uq_stats_blue 159
  149.  
  150. // Color Hud messages Fail statistics when you jump, in the RGB
  151. kz_uq_failstats_red 255
  152. kz_uq_failstats_green 0
  153. kz_uq_failstats_blue 109
  154.  
  155. // Color Hud messages prestrafe, in the RGB
  156. kz_uq_prestrafe_red 255
  157. kz_uq_prestrafe_green 255
  158. kz_uq_prestrafe_blue 255
  159.  
  160. // Color of speed, in the RGB
  161. kz_uq_speed_red 255
  162. kz_uq_speed_green 255
  163. kz_uq_speed_blue 255
  164.  
  165. //Coordinates Hud messages
  166.  
  167. //General stats jump
  168. kz_uq_stats_x "-1.0"
  169. kz_uq_stats_y "0.70"
  170.  
  171. //Strafes Stats
  172. kz_uq_strafe_x "0.70"
  173. kz_uq_strafe_y "0.35"
  174.  
  175. //Ducks Stats for Multi dd
  176. kz_uq_duck_x "0.6"
  177. kz_uq_duck_y "0.78"
  178.  
  179. //Speed
  180. kz_uq_speed_x "-1.0"
  181. kz_uq_speed_y "0.83"
  182.  
  183. //Prestrafe
  184. kz_uq_prestrafe_x "-1.0"
  185. kz_uq_prestrafe_y "0.65"
  186.  
  187. // Channel Hud messages of general stats jump
  188. kz_uq_hud_stats 3
  189.  
  190. // Channel Hud messages of strafes Stats
  191. kz_uq_hud_strafe 4
  192.  
  193. // Channel Hud messages of ducks Stats for Multi CountJump
  194. kz_uq_hud_duck 1
  195.  
  196. // Channel Hud messages of speed
  197. kz_uq_hud_speed 2
  198.  
  199. // Channel Hud messages of prestafe
  200. kz_uq_hud_pre 1
  201.  
  202. // For what technique stats enable
  203. kz_uq_lj 1
  204. kz_uq_cj 1
  205. kz_uq_bj 1
  206. kz_uq_sbj 1
  207. kz_uq_wj 1
  208. kz_uq_dcj 1
  209. kz_uq_mcj 1
  210. kz_uq_drbj 1
  211. kz_uq_drcj 1
  212. kz_uq_ladder 1
  213. kz_uq_ldbj 1
  214.  
  215. // Max,Min block to show in edge
  216. kz_uq_max_block 290
  217. kz_uq_min_block 100
  218.  
  219. // Minimum Prestrafe to show
  220. kz_uq_min_pre 60
  221.  
  222. // For what Extra technique stats enable
  223. kz_uq_scj 1
  224. kz_uq_dscj 1
  225. kz_uq_mscj 1
  226. kz_uq_dropscj 1
  227. kz_uq_dropdscj 1
  228. kz_uq_dropmscj 1
  229. kz_uq_duckbhop 0
  230. kz_uq_bhopinduck 0
  231. kz_uq_realldbhop 0
  232. kz_uq_upbj 0
  233. kz_uq_upsbj 0
  234. kz_uq_upbhopinduck 0
  235. kz_uq_multibhop 1
  236. kz_uq_dropdcj 1
  237. kz_uq_dropmcj 1
  238.  
  239. // Color for chat messages of jump distances (good = grey, pro = green, holy = blue, leet = red, god = red (with sound godlike for all players))
  240. // LongJump/HighJump
  241. kz_uq_good_lj 240
  242. kz_uq_pro_lj 245
  243. kz_uq_holy_lj 250
  244. kz_uq_leet_lj 253
  245. kz_uq_god_lj 255
  246.  
  247. // CountJump
  248. kz_uq_good_cj 250
  249. kz_uq_pro_cj 255
  250. kz_uq_holy_cj 260
  251. kz_uq_leet_cj 265
  252. kz_uq_god_cj 267
  253.  
  254. // Double CountJump/Multi CountJump
  255. kz_uq_good_dcj 250
  256. kz_uq_pro_dcj 255
  257. kz_uq_holy_dcj 260
  258. kz_uq_leet_dcj 265
  259. kz_uq_god_dcj 270
  260.  
  261. // LadderJump
  262. kz_uq_good_ladder 150
  263. kz_uq_pro_ladder 160
  264. kz_uq_holy_ladder 170
  265. kz_uq_leet_ladder 180
  266. kz_uq_god_ladder 190
  267.  
  268. // BhopJump/StandUp BhopJump
  269. kz_uq_good_bj 230
  270. kz_uq_pro_bj 235
  271. kz_uq_holy_bj 240
  272. kz_uq_leet_bj 245
  273. kz_uq_god_bj 247
  274.  
  275. // WeirdJump/Drop CountJump(double,multi)/Ladder BhopJump
  276. kz_uq_good_wj 255
  277. kz_uq_pro_wj 260
  278. kz_uq_holy_wj 265
  279. kz_uq_leet_wj 270
  280. kz_uq_god_wj 272
  281.  
  282. // Drop BhopJump
  283. kz_uq_good_dbj 240
  284. kz_uq_pro_dbj 250
  285. kz_uq_holy_dbj 265
  286. kz_uq_leet_dbj 270
  287. kz_uq_god_dbj 272
  288.  
  289. // StandUp CountJump (Double or Multi StandUp CountJump=SCJ+10units)(if 100aa all cvar dist +10 units)
  290. kz_uq_good_scj 245
  291. kz_uq_pro_scj 250
  292. kz_uq_holy_scj 255
  293. kz_uq_leet_scj 260
  294. kz_uq_god_scj 262
  295.  
  296. // Drop StandUp CountJump(double,multi)
  297. kz_uq_good_dropscj 255
  298. kz_uq_pro_dropscj 260
  299. kz_uq_holy_dropscj 265
  300. kz_uq_leet_dropscj 270
  301. kz_uq_god_dropscj 272
  302.  
  303. // Up Bhop
  304. kz_uq_good_upbj 225
  305. kz_uq_pro_upbj 230
  306. kz_uq_holy_upbj 235
  307. kz_uq_leet_upbj 240
  308. kz_uq_god_upbj 245
  309.  
  310. // Up StandBhop
  311. kz_uq_good_upsbj 225
  312. kz_uq_pro_upsbj 230
  313. kz_uq_holy_upsbj 235
  314. kz_uq_leet_upsbj 240
  315. kz_uq_god_upsbj 245
  316.  
  317. // Bhop In Duck(Up Bhop In Duck)
  318. kz_uq_good_bhopinduck 205
  319. kz_uq_pro_bhopinduck 210
  320. kz_uq_holy_bhopinduck 215
  321. kz_uq_leet_bhopinduck 218
  322. kz_uq_god_bhopinduck 220
  323.  
  324. // Duck Bhop
  325. kz_uq_good_duckbhop 120
  326. kz_uq_pro_duckbhop 130
  327. kz_uq_holy_duckbhop 140
  328. kz_uq_leet_duckbhop 150
  329. kz_uq_god_duckbhop 160
  330.  
  331. // Real Ladder Bhop
  332. kz_uq_good_realldbhop 240
  333. kz_uq_pro_realldbhop 250
  334. kz_uq_holy_realldbhop 265
  335. kz_uq_leet_realldbhop 270
  336. kz_uq_god_realldbhop 272
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement