Common script for all objects (Default.lsl). ScriptEngine touch_start event now works, but llSay only outputs to server console.

This commit is contained in:
Tedd Hansen
2007-08-13 20:55:07 +00:00
parent a63fb0147b
commit 79dc1a4f7d
11 changed files with 40 additions and 20 deletions

View File

@@ -0,0 +1,11 @@
default {
state_entry()
{
llSay(0, "Hello, Avatar!");
}
touch_start(integer total_number)
{
llSay(0, "Object was touched.");
}
}