diff options
author | Pokeglitch <pokeglitchx@gmail.com> | 2018-06-15 11:37:36 -0400 |
---|---|---|
committer | Pokeglitch <pokeglitchx@gmail.com> | 2018-06-15 11:37:36 -0400 |
commit | d0ef40a60044d4dc69656de670c74b46973aaff7 (patch) | |
tree | 59b941cf183c5840887d87acab7418e74af5c9a6 /constants/script_constants.asm | |
parent | 3c8aef07353f90298aab7f40a92903b050d36a1b (diff) |
Added constants
Diffstat (limited to 'constants/script_constants.asm')
-rwxr-xr-x | constants/script_constants.asm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/constants/script_constants.asm b/constants/script_constants.asm new file mode 100755 index 0000000..1736d36 --- /dev/null +++ b/constants/script_constants.asm @@ -0,0 +1,15 @@ +
+; Teleport Scripts
+ const_def
+ const SCRIPT_TRY_TELEPORT ; 00
+ const SCRIPT_DO_TELEPORT ; 01
+ const SCRIPT_FAIL_TELEPORT ; 02
+ const SCRIPT_CHECK_SPAWN_TELEPORT ; 03
+
+; Flags
+SCRIPT_FINISHED_FLAG EQU 7
+
+; Masks/Return Values
+SCRIPT_SUCCESS EQU $f
+SCRIPT_FAIL EQU 0
+SCRIPT_FINISHED EQU 1 << SCRIPT_FINISHED_FLAG
\ No newline at end of file |