2018-06-24 14:09:41 +00:00
|
|
|
PlaySlowCry:
|
2018-01-23 22:39:09 +00:00
|
|
|
ld a, [wScriptVar]
|
2018-01-17 04:47:45 +00:00
|
|
|
call LoadCry
|
2017-12-15 22:22:52 +00:00
|
|
|
jr c, .done
|
|
|
|
|
2018-01-23 22:39:09 +00:00
|
|
|
ld hl, wCryPitch
|
2017-12-15 22:22:52 +00:00
|
|
|
ld a, [hli]
|
|
|
|
ld h, [hl]
|
|
|
|
ld l, a
|
|
|
|
ld bc, -$140
|
|
|
|
add hl, bc
|
|
|
|
ld a, l
|
2018-01-23 22:39:09 +00:00
|
|
|
ld [wCryPitch], a
|
2017-12-15 22:22:52 +00:00
|
|
|
ld a, h
|
2018-01-23 22:39:09 +00:00
|
|
|
ld [wCryPitch + 1], a
|
|
|
|
ld hl, wCryLength
|
2017-12-15 22:22:52 +00:00
|
|
|
ld a, [hli]
|
|
|
|
ld h, [hl]
|
|
|
|
ld l, a
|
|
|
|
ld bc, $60
|
|
|
|
add hl, bc
|
|
|
|
ld a, l
|
2018-01-23 22:39:09 +00:00
|
|
|
ld [wCryLength], a
|
2017-12-15 22:22:52 +00:00
|
|
|
ld a, h
|
2018-01-23 22:39:09 +00:00
|
|
|
ld [wCryLength + 1], a
|
2018-01-17 04:47:45 +00:00
|
|
|
farcall _PlayCry
|
2017-12-15 22:22:52 +00:00
|
|
|
call WaitSFX
|
|
|
|
|
|
|
|
.done
|
|
|
|
ret
|