mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-31 00:15:54 -04:00
14 lines
148 B
Plaintext
14 lines
148 B
Plaintext
/*
|
|
test.script
|
|
*/
|
|
|
|
trigger OnSpeaking(string text)
|
|
{
|
|
if ( text == "test" )
|
|
{
|
|
debugSpeakMsg(self, "TopScript");
|
|
}
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|