mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-31 00:15:54 -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;
|
|
}
|
|
|