Advertisement
_Sebastian_

MBAC constants

Jan 4th, 2018
1,521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.00 KB | None | 0 0
  1. #MBAC begin
  2. mbac_v_maj = 0
  3. mbac_v_min = 8
  4. mbac_v_rev = 5
  5.  
  6. msg_log_only = -1
  7. msg_players = 0
  8. msg_admins = 1
  9.  
  10. hack_unblockable = 0
  11. hack_autoblock = 1
  12. hack_aimbot = 2
  13. num_hacks = 3
  14.  
  15. con_message = -1
  16. con_perma_ban = 0
  17. con_temp_ban = 1
  18. con_kick = 2
  19.  
  20. hack_detection = []#set default hack detection, 0 or 1
  21. hack_detection.append(1)#unblockable
  22. hack_detection.append(1)#autoblock
  23. hack_detection.append(1)#aimbot
  24.  
  25. hack_percentage = []
  26. hack_percentage.append(13)#percentage of ignored blocks to trigger a warning
  27. hack_percentage.append(75)#percentage of down blocks to trigger a warning
  28. hack_percentage.append(75)#percentage of head shots to trigger a warning
  29.  
  30. hack_consequence = []#set default consequence per hack
  31. hack_consequence.append(con_temp_ban)#unblockable
  32. hack_consequence.append(con_message)#autoblock
  33. hack_consequence.append(con_message)#aimbot
  34.  
  35. hack_warn_threshold = []#set default number of hack incidents to trigger a warning
  36. hack_warn_threshold.append(2)#unblockable
  37. hack_warn_threshold.append(4)#autoblock
  38. hack_warn_threshold.append(3)#aimbot
  39.  
  40. cmd_advanced_logging = 0
  41. cmd_player_join_message = 1
  42. cmd_broadcast_hack_warnings = 2
  43. cmd_broadcast_hack_consequences = 3
  44. cmd_hacks_option = 4
  45. cmd_hacks_consequence = cmd_hacks_option + num_hacks
  46. cmd_end = cmd_hacks_consequence + num_hacks
  47.  
  48. slot_troop_enable_anti_cheat = 1000
  49. slot_troop_hack_percentage = 1001
  50. slot_troop_hack_consequence = 1002
  51. slot_troop_hack_warn_threshold = 1003
  52. slot_troop_item_attack_dir_caps = 1004
  53.  
  54. slot_player_unblockable_warnings = 1000
  55. slot_player_autoblock_warnings = 1001
  56. slot_player_aimbot_warnings = 1002
  57.  
  58. slot_item_num_attacks = 1000
  59.  
  60. slot_agent_tick_check_time = 1000
  61. slot_agent_defend_dir = 1001
  62. slot_agent_defend_ticks = 1002
  63.  
  64. slot_agent_period_reset_time = 1003
  65.  
  66. slot_agent_period_melee_hits = 1004
  67. slot_agent_period_blocks = 1005
  68. slot_agent_period_ranged_hits = 1006
  69.  
  70. slot_agent_period_unblocks = 1007
  71. slot_agent_period_down_blocks = 1008
  72. slot_agent_period_head_shots = 1009
  73. #MBAC end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement