Files
jak-project/test/decompiler/reference/jak3/engine/ambient/ambient-h_REF.gc
T
water111 2a4d3d7a4a [decompiler] More inline vector functions (#3861)
This adds more recognition for inlined vector functions to the
decompiler, which can clean up a bunch of ugly looking code/`rlet`s.


![image](https://github.com/user-attachments/assets/1f7b4627-81bd-481b-b828-76b9f7ba13b3)

Unfortunately, this changes the numbering of ops in the decomp, since
all the vector instructions get combined in a single "operation" by the
decompiler. I really tried to avoid having this ever happen in the
decompiler and this is one of the few cases where it has. So I had to
update a bunch of type casts.

For that reason I haven't turned this on in Jak 2 yet, although I am
planning to do that at some point. (probably at the same time as porting
back a bunch of jak 3 improvements to jak 2)

---------

Co-authored-by: water111 <awaterford1111445@gmail.com>
2025-02-16 15:59:17 -05:00

3426 lines
153 KiB
Common Lisp
Vendored
Generated

;;-*-Lisp-*-
(in-package goal)
;; definition of type talker-speech-class
(deftype talker-speech-class (structure)
"Contains metadata about a voice line or hint text being played/displayed.
In the talker state, there's a pos-state and neg-state.
Calling yes-play! adjusts the pos-state and no-play! adjusts the neg-state.
Playback is only allowed if the pos-state is less than or equal to pos
and neg-state is greater than or equal to neg.
"
((name string)
(channel gui-channel)
(flags talker-flags)
(speech uint16)
(text-duration uint16)
(delay uint16)
(pos uint16)
(neg uint16)
(text-message text-id)
(on-close pair)
(camera string)
)
:pack-me
(:methods
(should-play? (_type_) symbol)
(mark-played! (_type_) none)
(reset-state! (_type_) none)
(yes-play! (_type_ int) none)
(no-play! (_type_ int) none)
)
)
;; definition for method 3 of type talker-speech-class
(defmethod inspect ((this talker-speech-class))
(when (not this)
(set! this this)
(goto cfg-4)
)
(format #t "[~8x] ~A~%" this 'talker-speech-class)
(format #t "~1Tname: ~A~%" (-> this name))
(format #t "~1Tchannel: ~D~%" (-> this channel))
(format #t "~1Tflags: ~D~%" (-> this flags))
(format #t "~1Tspeech: ~D~%" (-> this speech))
(format #t "~1Ttext-duration: ~D~%" (-> this text-duration))
(format #t "~1Tdelay: ~D~%" (-> this delay))
(format #t "~1Tpos: ~D~%" (-> this pos))
(format #t "~1Tneg: ~D~%" (-> this neg))
(format #t "~1Ttext-message: ~D~%" (-> this text-message))
(format #t "~1Ton-close: ~A~%" (-> this on-close))
(format #t "~1Tcamera: ~A~%" (-> this camera))
(label cfg-4)
this
)
;; definition of type talker
(deftype talker (process)
((trans vector :inline)
(message talker-speech-class)
(total-time time-frame)
(total-off-time time-frame)
(start-time time-frame)
(state-time time-frame)
(voicebox handle)
(voice-id sound-id)
(message-id sound-id)
(region region)
(interp float)
(save? symbol)
(grab? symbol)
)
(:state-methods
idle
active
exit
)
(:methods
(draw-text (_type_) none)
)
)
;; definition for method 3 of type talker
(defmethod inspect ((this talker))
(when (not this)
(set! this this)
(goto cfg-4)
)
(let ((t9-0 (method-of-type process inspect)))
(t9-0 this)
)
(format #t "~2Ttrans: ~`vector`P~%" (-> this trans))
(format #t "~2Tmessage: #<talker-speech-class @ #x~X>~%" (-> this message))
(format #t "~2Ttotal-time: ~D~%" (-> this total-time))
(format #t "~2Ttotal-off-time: ~D~%" (-> this total-off-time))
(format #t "~2Tstart-time: ~D~%" (-> this start-time))
(format #t "~2Tstate-time: ~D~%" (-> this state-time))
(format #t "~2Tvoicebox: ~D~%" (-> this voicebox))
(format #t "~2Tvoice-id: ~D~%" (-> this voice-id))
(format #t "~2Tmessage-id: ~D~%" (-> this message-id))
(format #t "~2Tregion: #<region @ #x~X>~%" (-> this region))
(format #t "~2Tinterp: ~f~%" (-> this interp))
(format #t "~2Tsave?: ~A~%" (-> this save?))
(format #t "~2Tgrab?: ~A~%" (-> this grab?))
(label cfg-4)
this
)
;; definition for symbol *talker-speech*, type (inline-array talker-speech-class)
(define *talker-speech* (new 'static 'inline-array talker-speech-class 365
(new 'static 'talker-speech-class :name "none")
(new 'static 'talker-speech-class
:name "DSbop002"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x1
:text-duration (seconds 5)
:neg #x1
:text-message (text-id press-to-jump)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "DSbop004"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x2
:text-duration (seconds 5)
:neg #x1
:text-message (text-id double-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "DSbop008"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x3
:text-duration (seconds 5)
:neg #x1
:text-message (text-id press-or-to-attack)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "DSbop010"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x4
:text-duration (seconds 5)
:neg #x1
:text-message (text-id press-or-to-attack)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "DSbop011"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x5
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "DSbop016"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x6
:text-duration (seconds 5)
:neg #x1
:text-message (text-id ground-pound-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "DSbop017"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x7
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ds020"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x8
:text-duration (seconds 5)
:neg #x1
:text-message (text-id roll-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ds043"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x9
:text-duration (seconds 1)
:neg #x1
:text-message (text-id roll-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ds043m"
:channel (gui-channel message)
:flags (talker-flags only-play-in-region)
:speech #xa
:text-duration (seconds 1)
:neg #x1
:text-message (text-id roll-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ds046"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once only-play-in-region)
:speech #xb
:text-duration (seconds 1)
:neg #x1
:text-message (text-id high-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ds046m"
:channel (gui-channel message)
:flags (talker-flags only-play-in-region)
:speech #xc
:text-duration (seconds 1)
:neg #x1
:text-message (text-id high-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax101"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #xd
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax102"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #xe
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax103"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once only-play-in-region)
:speech #xf
:text-duration (seconds 1)
:neg #x1
:text-message (text-id press-to-jump)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax104"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x10
:text-duration (seconds 1)
:neg #x1
:text-message (text-id double-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax105"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x11
:text-duration (seconds 1)
:neg #x1
:text-message (text-id double-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax106"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x12
:text-duration (seconds 1)
:neg #x1
:text-message (text-id roll-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax107"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x13
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax108"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x14
:text-duration (seconds 1)
:neg #x1
:text-message (text-id roll-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax109"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x15
:text-duration (seconds 1)
:neg #x1
:text-message (text-id text-0450)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax110"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x16
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax111"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x17
:text-duration (seconds 1)
:neg #x1
:text-message (text-id text-0451)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax112"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x18
:text-duration (seconds 1)
:neg #x1
:text-message (text-id ground-pound-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "mess005"
:channel (gui-channel message)
:speech #x19
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-0452)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "cityv063"
:channel (gui-channel voicebox)
:speech #x1a
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "cityv068"
:channel (gui-channel voicebox)
:speech #x1b
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "cityv069"
:channel (gui-channel voicebox)
:speech #x1c
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-0147)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "cityv070"
:channel (gui-channel voicebox)
:speech #x1d
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "cityv077"
:channel (gui-channel voicebox)
:speech #x1e
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "demo001"
:channel (gui-channel message)
:flags (talker-flags only-play-in-region)
:speech #x1f
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-013e)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "demo002"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #x20
:text-duration (seconds 5)
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "demo003"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #x21
:text-duration (seconds 8)
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "demo004"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #x22
:text-duration (seconds 8)
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "demo005"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #x23
:text-duration (seconds 8)
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sam001"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once)
:speech #x24
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ds162"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x25
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sksp0002"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x26
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sksp0005"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x27
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sksp0004"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x28
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sksp009b"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x29
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sksp0006"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x2a
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sksp009c"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x2b
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sksp0035"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x2c
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sksp009d"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x2d
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sksp009e"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x2e
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sksp0072"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x2f
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ds164"
:channel (gui-channel daxter)
:speech #x30
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ds129"
:channel (gui-channel daxter)
:speech #x31
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "racehint"
:channel (gui-channel message)
:speech #x32
:text-duration (seconds 4)
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "cityv179"
:channel (gui-channel alert)
:speech #x33
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "cityv180"
:channel (gui-channel alert)
:speech #x34
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "cityv181"
:channel (gui-channel alert)
:speech #x35
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "str001"
:channel (gui-channel message)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x36
:text-duration (seconds 3)
:neg #x1
:text-message (text-id text-013a)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "str002"
:channel (gui-channel message)
:speech #x37
:text-duration (seconds 3)
:neg #x1
:text-message (text-id text-013a)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "note001"
:channel (gui-channel notice)
:speech #x38
:text-duration (seconds 8)
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "intro01"
:channel (gui-channel notice)
:flags (talker-flags fade-in)
:speech #x39
:text-duration (seconds 3.5)
:neg #x1
:text-message (text-id text-0155)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "intro01e"
:channel (gui-channel notice)
:flags (talker-flags fade-in)
:speech #x3a
:text-duration (seconds 3.5)
:neg #x1
:text-message (text-id text-0156)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "intro01j"
:channel (gui-channel notice)
:flags (talker-flags fade-in)
:speech #x3b
:text-duration (seconds 3.5)
:neg #x1
:text-message (text-id text-0158)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "intro01k"
:channel (gui-channel notice)
:flags (talker-flags fade-in)
:speech #x3c
:text-duration (seconds 3.5)
:neg #x1
:text-message (text-id text-0157)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "intro03"
:channel (gui-channel notice-low)
:speech #x3d
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-020a)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "peck002"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once)
:speech #x3e
:delay (seconds 2)
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "peck004"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once auto-save-once-on-exit)
:speech #x3f
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sam007"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once auto-save-once-on-exit long-timeout)
:speech #x40
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "klev001"
:channel (gui-channel voicebox)
:flags (talker-flags auto-save-once-on-exit)
:speech #x41
:delay (seconds 2)
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax118"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x42
:text-duration (seconds 1)
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "peck135"
:channel (gui-channel pecker)
:flags (talker-flags play-only-once)
:speech #x43
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "peck114"
:channel (gui-channel pecker)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x44
:text-duration (seconds 1)
:neg #x1
:text-message (text-id press-to-jump)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "peck115"
:channel (gui-channel pecker)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x45
:text-duration (seconds 1)
:neg #x1
:text-message (text-id press-to-jump)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "peck129"
:channel (gui-channel pecker)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x46
:text-duration (seconds 1)
:neg #x1
:text-message (text-id roll-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "peck122"
:channel (gui-channel pecker)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x47
:text-duration (seconds 1)
:neg #x1
:text-message (text-id text-0450)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "peck119"
:channel (gui-channel pecker)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x48
:text-duration (seconds 1)
:neg #x1
:text-message (text-id double-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "peck124"
:channel (gui-channel pecker)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x49
:text-duration (seconds 1)
:neg #x1
:text-message (text-id text-0451)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "peck141"
:channel (gui-channel pecker)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x4a
:text-duration (seconds 1)
:neg #x1
:text-message (text-id high-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "peck141m"
:channel (gui-channel message)
:flags (talker-flags only-play-in-region)
:speech #x4b
:text-duration (seconds 1)
:neg #x1
:text-message (text-id high-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "peck131"
:channel (gui-channel pecker)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x4c
:text-duration (seconds 1)
:neg #x1
:text-message (text-id roll-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "peck131m"
:channel (gui-channel message)
:flags (talker-flags only-play-in-region)
:speech #x4d
:text-duration (seconds 1)
:neg #x1
:text-message (text-id roll-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "peck126"
:channel (gui-channel pecker)
:flags (talker-flags play-only-once only-play-in-region)
:speech #x4e
:text-duration (seconds 1)
:neg #x1
:text-message (text-id ground-pound-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "peck126m"
:channel (gui-channel message)
:flags (talker-flags only-play-in-region)
:speech #x4f
:text-duration (seconds 1)
:neg #x1
:text-message (text-id ground-pound-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax126"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x50
:text-duration (seconds 1)
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "gun-fire"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #x51
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-012c)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "klev002"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once auto-save-once-on-exit)
:speech #x52
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ash001"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once)
:speech #x53
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "pregame1"
:channel (gui-channel message)
:speech #x54
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-0465)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "leaper01"
:channel (gui-channel message)
:speech #x55
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-0466)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "leaper02"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #x56
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-0467)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "vehic01"
:channel (gui-channel message)
:speech #x57
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-0468)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "vehic02"
:channel (gui-channel message)
:speech #x58
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-0469)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "vehic03"
:channel (gui-channel message)
:speech #x59
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-046a)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "vehic04"
:channel (gui-channel message)
:speech #x5a
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-058d)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "vehic05"
:channel (gui-channel message)
:speech #x5b
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-0571)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "vehic06"
:channel (gui-channel message)
:speech #x5c
:text-duration (seconds 5)
:neg #x1
:text-message (text-id use-turbo-to-break-obstacles)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sig001"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once long-timeout)
:speech #x5d
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn002"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once auto-save-once-on-exit)
:speech #x5e
:delay (seconds 2)
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax133"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #x5f
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-046b)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "mine001"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #x60
:text-duration (seconds 3)
:neg #x1
:text-message (text-id text-053d)
:on-close #f
:camera "camera-348"
)
(new 'static 'talker-speech-class
:name "klev004"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once auto-save-once-on-exit)
:speech #x61
:neg #x1
:on-close '(kiosk-complete)
:camera #f
)
(new 'static 'talker-speech-class
:name "gun001"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #x62
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-053e)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dam003"
:channel (gui-channel voicebox)
:flags (talker-flags auto-save-once-on-exit)
:speech #x63
:neg #x1
:on-close '(kiosk-complete)
:camera #f
)
(new 'static 'talker-speech-class
:name "dax234"
:channel (gui-channel daxter)
:speech #x64
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "fac001"
:channel (gui-channel message)
:speech #x65
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-0547)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sam003"
:channel (gui-channel voicebox)
:flags (talker-flags auto-save-once-on-exit)
:speech #x66
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "keir002"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once long-timeout)
:speech #x67
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sam002"
:channel (gui-channel voicebox)
:flags (talker-flags auto-save-once-on-exit)
:speech #x68
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "for001"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #x69
:text-duration (seconds 5)
:neg #x1
:text-message (text-id activate-statue-by-punching-kicking-nose)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "keir004"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once long-timeout)
:speech #x6a
:delay (seconds 8)
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sam006"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once)
:speech #x6b
:delay (seconds 5)
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup001"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x6c
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-056b)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup002"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x6d
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-056c)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup003"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x6e
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-056d)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup004"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x6f
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-0579)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup005"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x70
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-057a)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup006"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x71
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-0576)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup007"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x72
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-057b)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup008"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x73
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-0577)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup009"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x74
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-057c)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup010"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x75
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-057d)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup011"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x76
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-0578)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup012"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x77
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-057e)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup013"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x78
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-057f)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup014"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x79
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-0580)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup015"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x7a
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-0581)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup016"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x7b
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-0582)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup017"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x7c
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-05f2)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup018"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x7d
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-05f3)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup019"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x7e
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-0614)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup020"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x7f
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-05f5)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup021"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x80
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-0615)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup022"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x81
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-0616)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup023"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume auto-save-once-on-exit slide-in)
:speech #x82
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-0617)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup024"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x83
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-0618)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup025"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x84
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-0619)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup026"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x85
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-061a)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup099"
:channel (gui-channel alert)
:speech #x86
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-061b)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup028"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x87
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id you-can-now-afford-to-purchase-new-secrets)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup029"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x88
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id new-secrets-available)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup030"
:channel (gui-channel alert)
:flags (talker-flags reduce-volume slide-in)
:speech #x89
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id secrets-still-available)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "powup031"
:channel (gui-channel alert)
:flags (talker-flags play-only-once reduce-volume slide-in)
:speech #x8a
:text-duration (seconds 10)
:delay (seconds 1)
:neg #x1
:text-message (text-id congrats-600-orbs-new-duds)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "hang001"
:channel (gui-channel message)
:speech #x8b
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-056e)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn001"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once auto-save-on-each-start)
:speech #x8c
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "jak112"
:channel (gui-channel jak)
:flags (talker-flags play-only-once)
:speech #x8d
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn008"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once auto-save-once-on-exit)
:speech #x8e
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn136"
:channel (gui-channel voicebox)
:speech #x8f
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn137"
:channel (gui-channel voicebox)
:speech #x90
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn138"
:channel (gui-channel voicebox)
:speech #x91
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn139"
:channel (gui-channel voicebox)
:speech #x92
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn140"
:channel (gui-channel voicebox)
:speech #x93
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn141"
:channel (gui-channel voicebox)
:speech #x94
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn142"
:channel (gui-channel voicebox)
:speech #x95
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn143"
:channel (gui-channel voicebox)
:speech #x96
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn144"
:channel (gui-channel voicebox)
:speech #x97
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn145"
:channel (gui-channel voicebox)
:speech #x98
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn146"
:channel (gui-channel voicebox)
:speech #x99
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn147"
:channel (gui-channel voicebox)
:speech #x9a
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn148"
:channel (gui-channel voicebox)
:speech #x9b
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax779"
:channel (gui-channel voicebox)
:speech #x9c
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax780"
:channel (gui-channel voicebox)
:speech #x9d
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "volmes01"
:channel (gui-channel message)
:speech #x9e
:text-duration (seconds 5)
:pos #x3
:neg #x1
:text-message (text-id roll-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "volmes02"
:channel (gui-channel message)
:speech #x9f
:text-duration (seconds 5)
:pos #x3
:neg #x1
:text-message (text-id high-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "volmes03"
:channel (gui-channel message)
:speech #xa0
:text-duration (seconds 5)
:pos #x3
:neg #x1
:text-message (text-id roll-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "tplmes01"
:channel (gui-channel message)
:speech #xa1
:text-duration (seconds 5)
:pos #x3
:neg #x1
:text-message (text-id roll-jump-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ash004"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once)
:speech #xa2
:delay (seconds 2)
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "sam005"
:channel (gui-channel voicebox)
:speech #xa3
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "forest-turn-on-mach-res"
:channel (gui-channel voicebox)
:speech #xa4
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dam004"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once)
:speech #xa5
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ds704"
:channel (gui-channel daxter)
:speech #xa6
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ds705"
:channel (gui-channel daxter)
:speech #xa7
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ds256"
:channel (gui-channel daxter)
:speech #xa8
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ds257"
:channel (gui-channel daxter)
:speech #xa9
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax123"
:channel (gui-channel daxter)
:speech #xaa
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax586"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once)
:speech #xab
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax585"
:channel (gui-channel daxter)
:speech #xac
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "seem003"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once auto-save-once-on-exit long-timeout)
:speech #xad
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax724"
:channel (gui-channel daxter)
:speech #xae
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax725"
:channel (gui-channel daxter)
:speech #xaf
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax726"
:channel (gui-channel daxter)
:speech #xb0
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax727"
:channel (gui-channel daxter)
:speech #xb1
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax728"
:channel (gui-channel daxter)
:speech #xb2
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax729"
:channel (gui-channel daxter)
:speech #xb3
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax730"
:channel (gui-channel daxter)
:speech #xb4
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax731"
:channel (gui-channel daxter)
:speech #xb5
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "seem002"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once auto-save-once-on-exit long-timeout)
:speech #xb6
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "darkjak1"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #xb7
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-0600)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "bb10win"
:channel (gui-channel voicebox)
:flags (talker-flags auto-save-once-on-exit)
:speech #xb8
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "bb21fail"
:channel (gui-channel voicebox)
:speech #xb9
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb01w"
:channel (gui-channel alert)
:speech #xba
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb01f"
:channel (gui-channel alert)
:speech #xbb
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb02w"
:channel (gui-channel alert)
:speech #xbc
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb02f"
:channel (gui-channel alert)
:speech #xbd
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb03w"
:channel (gui-channel alert)
:speech #xbe
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb03f"
:channel (gui-channel alert)
:speech #xbf
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb04w"
:channel (gui-channel alert)
:speech #xc0
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb04f"
:channel (gui-channel alert)
:speech #xc1
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb05w"
:channel (gui-channel alert)
:speech #xc2
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb05f"
:channel (gui-channel alert)
:speech #xc3
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb06w"
:channel (gui-channel alert)
:speech #xc4
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb06f"
:channel (gui-channel alert)
:speech #xc5
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb07w"
:channel (gui-channel alert)
:speech #xc6
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb07f"
:channel (gui-channel alert)
:speech #xc7
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb08w"
:channel (gui-channel alert)
:speech #xc8
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb08f"
:channel (gui-channel alert)
:speech #xc9
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb09w"
:channel (gui-channel alert)
:speech #xca
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb09f"
:channel (gui-channel alert)
:speech #xcb
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb10w"
:channel (gui-channel alert)
:speech #xcc
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb10f"
:channel (gui-channel alert)
:speech #xcd
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb11w"
:channel (gui-channel alert)
:speech #xce
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb11f"
:channel (gui-channel alert)
:speech #xcf
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb12w"
:channel (gui-channel alert)
:speech #xd0
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb12f"
:channel (gui-channel alert)
:speech #xd1
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb13w"
:channel (gui-channel alert)
:speech #xd2
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb13f"
:channel (gui-channel alert)
:speech #xd3
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb14w"
:channel (gui-channel alert)
:speech #xd4
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb14f"
:channel (gui-channel alert)
:speech #xd5
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb15w"
:channel (gui-channel alert)
:speech #xd6
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb15f"
:channel (gui-channel alert)
:speech #xd7
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb16w"
:channel (gui-channel alert)
:speech #xd8
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb16f"
:channel (gui-channel alert)
:speech #xd9
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb17w"
:channel (gui-channel alert)
:speech #xda
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb17f"
:channel (gui-channel alert)
:speech #xdb
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb18w"
:channel (gui-channel alert)
:speech #xdc
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb18f"
:channel (gui-channel alert)
:speech #xdd
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb19w"
:channel (gui-channel alert)
:speech #xde
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb19f"
:channel (gui-channel alert)
:speech #xdf
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb20w"
:channel (gui-channel alert)
:speech #xe0
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb20f"
:channel (gui-channel alert)
:speech #xe1
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb21w"
:channel (gui-channel alert)
:speech #xe2
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb21f"
:channel (gui-channel alert)
:speech #xe3
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb22w"
:channel (gui-channel alert)
:speech #xe4
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb22f"
:channel (gui-channel alert)
:speech #xe5
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb23w"
:channel (gui-channel alert)
:speech #xe6
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "o-bb23f"
:channel (gui-channel alert)
:speech #xe7
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "light001"
:channel (gui-channel alert)
:flags (talker-flags play-only-once slide-in)
:speech #xe8
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-05f6)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "light002"
:channel (gui-channel alert)
:flags (talker-flags play-only-once slide-in)
:speech #xe9
:text-duration (seconds 5)
:delay (seconds 1)
:neg #x1
:text-message (text-id text-05f7)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "keir003"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once auto-save-once-on-exit)
:speech #xea
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ash002"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once)
:speech #xeb
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb01w"
:channel (gui-channel alert)
:speech #xec
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb01f"
:channel (gui-channel alert)
:speech #xed
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb02w"
:channel (gui-channel alert)
:speech #xee
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb02f"
:channel (gui-channel alert)
:speech #xef
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb03w"
:channel (gui-channel alert)
:speech #xf0
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb03f"
:channel (gui-channel alert)
:speech #xf1
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb04w"
:channel (gui-channel alert)
:speech #xf2
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb04f"
:channel (gui-channel alert)
:speech #xf3
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb05w"
:channel (gui-channel alert)
:speech #xf4
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb05f"
:channel (gui-channel alert)
:speech #xf5
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb06w"
:channel (gui-channel alert)
:speech #xf6
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb06f"
:channel (gui-channel alert)
:speech #xf7
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb07w"
:channel (gui-channel alert)
:speech #xf8
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb07f"
:channel (gui-channel alert)
:speech #xf9
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb08w"
:channel (gui-channel alert)
:speech #xfa
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb08f"
:channel (gui-channel alert)
:speech #xfb
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb09w"
:channel (gui-channel alert)
:speech #xfc
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb09f"
:channel (gui-channel alert)
:speech #xfd
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb10w"
:channel (gui-channel alert)
:speech #xfe
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb10f"
:channel (gui-channel alert)
:speech #xff
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb11w"
:channel (gui-channel alert)
:speech #x100
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb11f"
:channel (gui-channel alert)
:speech #x101
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb12w"
:channel (gui-channel alert)
:speech #x102
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb12f"
:channel (gui-channel alert)
:speech #x103
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb13w"
:channel (gui-channel alert)
:speech #x104
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb13f"
:channel (gui-channel alert)
:speech #x105
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb14w"
:channel (gui-channel alert)
:speech #x106
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb14f"
:channel (gui-channel alert)
:speech #x107
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb15w"
:channel (gui-channel alert)
:speech #x108
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb15f"
:channel (gui-channel alert)
:speech #x109
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb16w"
:channel (gui-channel alert)
:speech #x10a
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb16f"
:channel (gui-channel alert)
:speech #x10b
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb17w"
:channel (gui-channel alert)
:speech #x10c
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb17f"
:channel (gui-channel alert)
:speech #x10d
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb18w"
:channel (gui-channel alert)
:speech #x10e
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb18f"
:channel (gui-channel alert)
:speech #x10f
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb19w"
:channel (gui-channel alert)
:speech #x110
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb19f"
:channel (gui-channel alert)
:speech #x111
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb20w"
:channel (gui-channel alert)
:speech #x112
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb20f"
:channel (gui-channel alert)
:speech #x113
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb21w"
:channel (gui-channel alert)
:speech #x114
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb21f"
:channel (gui-channel alert)
:speech #x115
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb22w"
:channel (gui-channel alert)
:speech #x116
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb22f"
:channel (gui-channel alert)
:speech #x117
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb23w"
:channel (gui-channel alert)
:speech #x118
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb23f"
:channel (gui-channel alert)
:speech #x119
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb24w"
:channel (gui-channel alert)
:speech #x11a
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb24f"
:channel (gui-channel alert)
:speech #x11b
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb25w"
:channel (gui-channel alert)
:speech #x11c
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb25f"
:channel (gui-channel alert)
:speech #x11d
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb26w"
:channel (gui-channel alert)
:speech #x11e
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "t-bb26f"
:channel (gui-channel alert)
:speech #x11f
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "bb17win"
:channel (gui-channel alert)
:speech #x120
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "bb18fail"
:channel (gui-channel alert)
:speech #x121
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "bb13win"
:channel (gui-channel alert)
:speech #x122
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "bb03fail"
:channel (gui-channel alert)
:speech #x123
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb01w"
:channel (gui-channel alert)
:speech #x124
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb01f"
:channel (gui-channel alert)
:speech #x125
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb02w"
:channel (gui-channel alert)
:speech #x126
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb02f"
:channel (gui-channel alert)
:speech #x127
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb03w"
:channel (gui-channel alert)
:speech #x128
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb03f"
:channel (gui-channel alert)
:speech #x129
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb04w"
:channel (gui-channel alert)
:speech #x12a
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb04f"
:channel (gui-channel alert)
:speech #x12b
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb05w"
:channel (gui-channel alert)
:speech #x12c
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb05f"
:channel (gui-channel alert)
:speech #x12d
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb06w"
:channel (gui-channel alert)
:speech #x12e
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb06f"
:channel (gui-channel alert)
:speech #x12f
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb07w"
:channel (gui-channel alert)
:speech #x130
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb07f"
:channel (gui-channel alert)
:speech #x131
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb08w"
:channel (gui-channel alert)
:speech #x132
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb08f"
:channel (gui-channel alert)
:speech #x133
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb09w"
:channel (gui-channel alert)
:speech #x134
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb09f"
:channel (gui-channel alert)
:speech #x135
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb10w"
:channel (gui-channel alert)
:speech #x136
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb10f"
:channel (gui-channel alert)
:speech #x137
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb11w"
:channel (gui-channel alert)
:speech #x138
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb11f"
:channel (gui-channel alert)
:speech #x139
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb12w"
:channel (gui-channel alert)
:speech #x13a
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb12f"
:channel (gui-channel alert)
:speech #x13b
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb13w"
:channel (gui-channel alert)
:speech #x13c
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "k-bb13f"
:channel (gui-channel alert)
:speech #x13d
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn123"
:channel (gui-channel rider)
:speech #x13e
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn124"
:channel (gui-channel voicebox)
:speech #x13f
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn131"
:channel (gui-channel rider)
:speech #x140
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn128"
:channel (gui-channel voicebox)
:speech #x141
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn199"
:channel (gui-channel rider)
:speech #x142
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "torn200"
:channel (gui-channel rider)
:speech #x143
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "guards125a"
:channel (gui-channel rider)
:speech #x144
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "tor062"
:channel (gui-channel voicebox)
:flags (talker-flags auto-save-once-on-exit)
:speech #x145
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax137"
:channel (gui-channel daxter)
:speech #x146
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax141"
:channel (gui-channel daxter)
:speech #x147
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax142"
:channel (gui-channel daxter)
:speech #x148
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax143"
:channel (gui-channel daxter)
:speech #x149
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax675"
:channel (gui-channel daxter)
:speech #x14a
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax676"
:channel (gui-channel daxter)
:speech #x14b
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax678"
:channel (gui-channel daxter)
:speech #x14c
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax680"
:channel (gui-channel daxter)
:speech #x14d
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "tor033"
:channel (gui-channel voicebox)
:speech #x14e
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ash119"
:channel (gui-channel voicebox)
:speech #x14f
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ash132"
:channel (gui-channel voicebox)
:flags (talker-flags auto-save-once-on-exit)
:speech #x150
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ash119a"
:channel (gui-channel voicebox)
:speech #x151
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ash101"
:channel (gui-channel ashelin)
:speech #x152
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "ash109"
:channel (gui-channel ashelin)
:speech #x153
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dam102"
:channel (gui-channel rider)
:speech #x154
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dam116"
:channel (gui-channel rider)
:speech #x155
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dam117"
:channel (gui-channel rider)
:speech #x156
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dam105"
:channel (gui-channel rider)
:speech #x157
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dam109"
:channel (gui-channel rider)
:speech #x158
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dam115"
:channel (gui-channel rider)
:speech #x159
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dam121"
:channel (gui-channel rider)
:speech #x15a
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dam129"
:channel (gui-channel rider)
:speech #x15b
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "teach-pickup"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #x15c
:text-duration (seconds 5)
:neg #x1
:text-message (text-id press-to-grab-objects)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "teach-place"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #x15d
:text-duration (seconds 5)
:neg #x1
:text-message (text-id press-to-place-held-objects)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "teach-shield"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #x15e
:text-duration (seconds 5)
:neg #x1
:text-message (text-id hold-to-use-shield)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "formess1"
:channel (gui-channel message)
:speech #x15f
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-05ff)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "darkp001"
:channel (gui-channel message)
:speech #x160
:text-duration (seconds 5)
:neg #x1
:text-message (text-id text-05e7)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "darkp002"
:channel (gui-channel message)
:speech #x161
:text-duration (seconds 5)
:neg #x1
:text-message (text-id dark-strike-how-to)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "redhint1"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #x162
:text-duration (seconds 5)
:neg #x1
:text-message (text-id use-the-wave-concussor)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "redhint2"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #x163
:text-duration (seconds 5)
:neg #x1
:text-message (text-id hold-to-charge-and-then-release-to-fire-bigger-blast)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax619"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once auto-save-once-on-exit)
:speech #x164
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax613"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once auto-save-once-on-exit)
:speech #x165
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax615"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once auto-save-once-on-exit)
:speech #x166
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax624"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once auto-save-once-on-exit)
:speech #x167
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax623"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once auto-save-once-on-exit)
:speech #x168
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "dax622"
:channel (gui-channel daxter)
:flags (talker-flags play-only-once auto-save-once-on-exit)
:speech #x169
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "hellcat-fire"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #x16a
:text-duration (seconds 5)
:neg #x1
:text-message (text-id hold-to-auto-fire)
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "seem005"
:channel (gui-channel voicebox)
:flags (talker-flags play-only-once auto-save-once-on-exit long-timeout)
:speech #x16b
:neg #x1
:on-close #f
:camera #f
)
(new 'static 'talker-speech-class
:name "yellow3hint"
:channel (gui-channel message)
:flags (talker-flags play-only-once)
:speech #x16c
:text-duration (seconds 5)
:neg #x1
:text-message (text-id press-again-to-make-gyro-burster-hover-in-place)
:on-close #f
:camera #f
)
)
)