Advertisement
_Sebastian_

MBAC mission templates (a)

Jan 4th, 2018
1,529
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.59 KB | None | 0 0
  1. #MBAC begin
  2. mb_anti_cheat = [
  3.   (ti_server_player_joined, 0, 0, [], [
  4.     (call_script, "script_cf_mbac_ti_player_joined"),
  5.   ]),
  6.  
  7.   (ti_on_multiplayer_mission_end, 0, 0, [], [
  8.     (call_script, "script_cf_mbac_ti_mission_end"),
  9.   ]),
  10.  
  11.   (ti_on_agent_spawn, 0, 0, [], [
  12.     (call_script, "script_cf_mbac_ti_agent_spawn"),
  13.   ]),
  14.  
  15.   (ti_on_agent_hit, 0, 0, [], [
  16.     (call_script, "script_cf_mbac_ti_agent_hit"),
  17.   ]),
  18.  
  19.   (0, 0, ti_once, [], [
  20.     (call_script, "script_cf_mbac_ti_once"),
  21.   ]),
  22.  
  23.   (0, 0, 0, [], [
  24.     (call_script, "script_cf_mbac_ti_each_frame"),
  25.   ]),
  26. ]
  27. #MBAC end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement