mirror of
https://bitbucket.org/seefoe/dsrc.git
synced 2026-07-31 01:15:55 -04:00
9 lines
277 B
Plaintext
9 lines
277 B
Plaintext
trigger OnHearSpeech(obj_id speaker, string text)
|
|
{
|
|
if (text.equals("report"))
|
|
{
|
|
debugSpeakMsg(self, "Posture is " + Integer.toString(getPosture(self)) +
|
|
"Locomotion is " + Integer.toString(getLocomotion(self)));
|
|
}
|
|
return SCRIPT_CONTINUE;
|
|
} |