Said

bool Said(said saidString)

Checks to see if the specified saidString matches the last line parsed. If is does, it returns TRUE, otherwise, it returns FALSE.

Example
(var hEvent)

= hEvent (Event:new())
(
if(Parse(hEvent "open door"))
    (
if(Said('open/door')
        Display("The door is now open")
    )
)