Files
LSL-Scripts/Script Tests/Script tests/Object/llSay.lsl

17 lines
276 B
Plaintext
Raw Normal View History

2019-03-17 23:20:45 -05:00
// :CATEGORY:Scripting
// :AUTHOR:Justin Clark-Casey (justincc)
// :KEYWORDS:Opensim
// :REV:1
// :WORLD:Opensim
// :DESCRIPTION:
// One of many tests for Opensim
// :CODE:
default
{
state_entry()
{
llSay(0,"This is an incredibly useless program." );
}
}