Files
LSL-Scripts/TourCopter/Tour Copter/Root Prim/Voice.lsl
Fred Beckhusen 5a21e18d9e Fred Beckhusen
2019-03-17 23:41:07 -05:00

28 lines
446 B
Plaintext

// :CATEGORY:Tour
// :NAME:TourCopter
// :AUTHOR:Fred Beckhusen (Ferd Frederix)
// :CREATED:2013-09-06
// :EDITED:2013-09-18 15:39:08
// :ID:909
// :NUM:1306
// :REV:1
// :WORLD:Second Life
// :DESCRIPTION:
// Tour
// :CODE:
// useless, delete this crap
// Voice - whispers the ID number on channel 0 !!!
default
{
link_message(integer sender, integer num, string str, key id)
{
if (str == "llWhisper") {
llWhisper(0, id);
}
}
}