Files
LSL-Scripts/TourCopter/Tour Copter/Root Prim/Cannon.lsl
2015-08-09 16:54:31 -05:00

52 lines
1.2 KiB
Plaintext

// :CATEGORY:Tour
// :NAME:TourCopter
// :AUTHOR:Ferd Frederix
// :CREATED:2013-09-06
// :EDITED:2013-09-18 15:39:08
// :ID:909
// :NUM:1293
// :REV:1
// :WORLD:Second Life
// :DESCRIPTION:
// Tour
// :CODE:
// ______ _ ______ _ _
// | ___| | | | ___| | | (_)
// | |_ ___ _ __ __| | | |_ _ __ ___ __| | ___ _ __ ___ __
// | _/ _ \ '__/ _` | | _| '__/ _ \/ _` |/ _ \ '__| \ \/ /
// | || __/ | | (_| | | | | | | __/ (_| | __/ | | |> <
// \_| \___|_| \__,_| \_| |_| \___|\__,_|\___|_| |_/_/\_\
//
// fred@mitsi.com
// tour copter script
// Bullet rez 1 of 4
//
//Revisions:
// 1/28/2010 initial release
key sound_full = "e6b53731-58b2-9a5a-aafa-9a01ef21c1b8";
key sound_leadout = "05100d06-bf41-785b-1747-6f476f6288b8";
default
{
state_entry()
{
//llSetLocalRot(<0.00000, 0.70711, 0.00000, 0.70711>);
}
link_message(integer sender_num, integer num, string str, key id)
{
if (str == "fire")
{
llTriggerSound(sound_full, 1.0);
}
else
{
llTriggerSound(sound_leadout, 1.0);
}
}
}