Death ManualTable of Contents
Death System
2.5
In order to receive the latest updates and other important information, be sure that you join
the Alpha-Fox User Group. You can also access the forums at
http://www.alpha-fox.com/community/.
Section 1 - Introduction
Death is a free system developed by Alpha-Fox. It allows for a method of instantly killing people on group /
individually owned land without having damage.
Back to Top
Section 2 - API Usage
The API is quite simple to use. llMessageLinked calls are used to activate it. However, you must have a Death server
in the region and activated in order for this to work.
Here is a simple script example that can be used as a button that will kill anybody who touches it. Please note that the
death.api.lsl script must be in the same prim this script is in.
default
{
state_entry()
{
llSay(0, "The Big Red Button");
}
touch_start(integer detected_num)
{
llMessageLinked(LINK_SET, 0, llDetectedName(0) + "|" + (string)llDetectedKey(0) + "|" + "touching the Big Red Button.", "kill");
}
}
|