Advertisement
_Sebastian_

MBAC scripts (b example)

Jan 7th, 2018
1,295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.51 KB | None | 0 0
  1.   ("game_get_console_command",
  2.    [
  3.      (store_script_param, ":input", 1),
  4.      (store_script_param, ":val1", 2),
  5.      (try_begin),
  6.        #getting val2 for some commands
  7.        (eq, ":input", 2),
  8.        (store_script_param, ":val2", 3),
  9.      (end_try),
  10.      (try_begin),
  11. #MBAC begin
  12.       (call_script, "script_cf_mbac_console_command", ":input", ":val1"),
  13.     (else_try),
  14. #MBAC end
  15.        (eq, ":input", 1),
  16.        (assign, reg0, ":val1"),
  17.        (try_begin),
  18.          (eq, ":val1", 1),
  19. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement