diff options
author | Justin Clarke Casey | 2009-01-12 18:00:46 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-01-12 18:00:46 +0000 |
commit | fb8faa8336ddb795ccd6840259b06a2608350a57 (patch) | |
tree | 1f4977b9918d416602af88709e15aecf9499b969 /bin/assets/ScriptsAssetSet/KanEd-Test13.lsl | |
parent | * Remove FunSLUDP code since this has moved to http://forge.opensimulator.org... (diff) | |
download | opensim-SC_OLD-fb8faa8336ddb795ccd6840259b06a2608350a57.zip opensim-SC_OLD-fb8faa8336ddb795ccd6840259b06a2608350a57.tar.gz opensim-SC_OLD-fb8faa8336ddb795ccd6840259b06a2608350a57.tar.bz2 opensim-SC_OLD-fb8faa8336ddb795ccd6840259b06a2608350a57.tar.xz |
* Apply http://opensimulator.org/mantis/view.php?id=2913
* Add the KanEd scripts to the standard library
* Thanks Fly-Man-
Diffstat (limited to 'bin/assets/ScriptsAssetSet/KanEd-Test13.lsl')
-rw-r--r-- | bin/assets/ScriptsAssetSet/KanEd-Test13.lsl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bin/assets/ScriptsAssetSet/KanEd-Test13.lsl b/bin/assets/ScriptsAssetSet/KanEd-Test13.lsl new file mode 100644 index 0000000..7238a9b --- /dev/null +++ b/bin/assets/ScriptsAssetSet/KanEd-Test13.lsl | |||
@@ -0,0 +1,16 @@ | |||
1 | default | ||
2 | { | ||
3 | state_entry() | ||
4 | { | ||
5 | llSay( 0, "Hello, Avatar!"); | ||
6 | } | ||
7 | |||
8 | touch_start(integer total_number) | ||
9 | { | ||
10 | llSay( 0, "Touched."); | ||
11 | |||
12 | llRezObject("Object1", llGetPos() + < 0, 0, 2 >, ZERO_VECTOR, | ||
13 | ZERO_ROTATION, 42); | ||
14 | } | ||
15 | } | ||
16 | |||