mirror of
https://bitbucket.org/seefoe/dsrc.git
synced 2026-08-01 02:16:04 -04:00
16 lines
206 B
Plaintext
16 lines
206 B
Plaintext
/**
|
|
* test.script
|
|
*/
|
|
//include steve.mylib;
|
|
//include libs.stevelibs.mylib;
|
|
|
|
trigger OnSpeaking(string text)
|
|
{
|
|
if ( text == "test" )
|
|
{
|
|
debugSpeakMsg(self, "TopScript");
|
|
}
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|