2017-12-28 13:23:44 +01:00
|
|
|
specialcall: MACRO
|
2017-12-11 13:47:58 -05:00
|
|
|
; condition, contact, script
|
|
|
|
dw \1
|
|
|
|
db \2
|
|
|
|
dba \3
|
2017-12-28 22:31:16 +01:00
|
|
|
ENDM
|
2017-12-11 13:47:58 -05:00
|
|
|
|
2018-06-24 16:09:41 +02:00
|
|
|
SpecialPhoneCallList:
|
2017-12-11 13:47:58 -05:00
|
|
|
; entries correspond to SPECIALCALL_* constants
|
2021-03-03 22:22:41 -05:00
|
|
|
table_width SPECIALCALL_SIZE, SpecialPhoneCallList
|
2018-12-31 16:32:04 -05:00
|
|
|
specialcall SpecialCallOnlyWhenOutside, PHONECONTACT_ELM, ElmPhoneCallerScript
|
|
|
|
specialcall SpecialCallOnlyWhenOutside, PHONECONTACT_ELM, ElmPhoneCallerScript
|
|
|
|
specialcall SpecialCallOnlyWhenOutside, PHONECONTACT_ELM, ElmPhoneCallerScript
|
|
|
|
specialcall SpecialCallOnlyWhenOutside, PHONECONTACT_ELM, ElmPhoneCallerScript
|
|
|
|
specialcall SpecialCallWhereverYouAre, PHONECONTACT_ELM, ElmPhoneCallerScript
|
|
|
|
specialcall SpecialCallWhereverYouAre, PHONECONTACT_BIKESHOP, BikeShopPhoneCallerScript
|
2018-01-25 22:19:24 -05:00
|
|
|
specialcall SpecialCallWhereverYouAre, PHONECONTACT_MOM, MomPhoneLectureScript
|
2018-12-31 16:32:04 -05:00
|
|
|
specialcall SpecialCallOnlyWhenOutside, PHONECONTACT_ELM, ElmPhoneCallerScript
|
2021-03-03 22:22:41 -05:00
|
|
|
assert_table_length NUM_SPECIALCALLS
|